
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



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

.ir_c00000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00000;src:url('chunks/assets/font_abb3aa48fe2f7f12e7a16662.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00000;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:0.000000px;}
._2_c00000{margin-left:-7.207200px;}
._0_c00000{margin-left:-3.618000px;}
._1_c00000{margin-left:-1.440000px;}
.fc1_c00000{color:rgb(26,29,31);}
.fc0_c00000{color:rgb(232,86,17);}
.fs1_c00000{font-size:72.000000px;}
.fs0_c00000{font-size:180.000000px;}
.y0_c00000{bottom:0.000000px;}
.y5_c00000{bottom:959.023950px;}
.y4_c00000{bottom:983.017950px;}
.y3_c00000{bottom:1028.618100px;}
.y2_c00000{bottom:1082.618100px;}
.y1_c00000{bottom:1136.618100px;}
.h5_c00000{height:64.800000px;}
.h4_c00000{height:66.456000px;}
.h3_c00000{height:162.000000px;}
.h2_c00000{height:168.300000px;}
.h0_c00000{height:1262.835000px;}
.h1_c00000{height:1263.000000px;}
.w0_c00000{width:892.914000px;}
.w1_c00000{width:893.250000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:90.688650px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
._2_c00000{margin-left:-6.406400pt;}
._0_c00000{margin-left:-3.216000pt;}
._1_c00000{margin-left:-1.280000pt;}
.fs1_c00000{font-size:64.000000pt;}
.fs0_c00000{font-size:160.000000pt;}
.y0_c00000{bottom:0.000000pt;}
.y5_c00000{bottom:852.465733pt;}
.y4_c00000{bottom:873.793733pt;}
.y3_c00000{bottom:914.327200pt;}
.y2_c00000{bottom:962.327200pt;}
.y1_c00000{bottom:1010.327200pt;}
.h5_c00000{height:57.600000pt;}
.h4_c00000{height:59.072000pt;}
.h3_c00000{height:144.000000pt;}
.h2_c00000{height:149.600000pt;}
.h0_c00000{height:1122.520000pt;}
.h1_c00000{height:1122.666667pt;}
.w0_c00000{width:793.701333pt;}
.w1_c00000{width:794.000000pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:80.612133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.160000;font-style:normal;font-weight:normal;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_900efc084d890db981687d67.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.199000;font-style:normal;font-weight:normal;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_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00001{word-spacing:-12.000000px;}
.ws0_c00001{word-spacing:-10.200000px;}
.ws2_c00001{word-spacing:0.000000px;}
._0_c00001{margin-left:-480.336000px;}
._4_c00001{margin-left:-6.480000px;}
._1_c00001{margin-left:-4.200000px;}
._3_c00001{margin-left:-2.400000px;}
._2_c00001{margin-left:-1.200000px;}
.fc3_c00001{color:rgb(112,111,111);}
.fc2_c00001{color:rgb(233,83,14);}
.fc1_c00001{color:rgb(232,86,17);}
.fc0_c00001{color:rgb(60,60,59);}
.fs1_c00001{font-size:42.000000px;}
.fs0_c00001{font-size:60.000000px;}
.fs3_c00001{font-size:72.000000px;}
.fs2_c00001{font-size:120.000000px;}
.y0_c00001{bottom:0.000000px;}
.y1_c00001{bottom:41.250000px;}
.yb_c00001{bottom:603.930750px;}
.ya_c00001{bottom:624.930750px;}
.y9_c00001{bottom:645.930750px;}
.y8_c00001{bottom:687.930750px;}
.y7_c00001{bottom:711.930750px;}
.y6_c00001{bottom:756.936750px;}
.y5_c00001{bottom:780.930750px;}
.y4_c00001{bottom:813.434700px;}
.y3_c00001{bottom:866.834700px;}
.y2_c00001{bottom:902.834700px;}
.h2_c00001{height:54.000000px;}
.h4_c00001{height:56.100000px;}
.h5_c00001{height:64.800000px;}
.h3_c00001{height:112.200000px;}
.h0_c00001{height:1262.835000px;}
.h1_c00001{height:1263.000000px;}
.w0_c00001{width:892.914000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x2_c00001{left:105.956700px;}
.x1_c00001{left:802.988550px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws1_c00001{word-spacing:-10.666667pt;}
.ws0_c00001{word-spacing:-9.066667pt;}
.ws2_c00001{word-spacing:0.000000pt;}
._0_c00001{margin-left:-426.965333pt;}
._4_c00001{margin-left:-5.760000pt;}
._1_c00001{margin-left:-3.733333pt;}
._3_c00001{margin-left:-2.133333pt;}
._2_c00001{margin-left:-1.066667pt;}
.fs1_c00001{font-size:37.333333pt;}
.fs0_c00001{font-size:53.333333pt;}
.fs3_c00001{font-size:64.000000pt;}
.fs2_c00001{font-size:106.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.y1_c00001{bottom:36.666667pt;}
.yb_c00001{bottom:536.827333pt;}
.ya_c00001{bottom:555.494000pt;}
.y9_c00001{bottom:574.160667pt;}
.y8_c00001{bottom:611.494000pt;}
.y7_c00001{bottom:632.827333pt;}
.y6_c00001{bottom:672.832667pt;}
.y5_c00001{bottom:694.160667pt;}
.y4_c00001{bottom:723.053067pt;}
.y3_c00001{bottom:770.519733pt;}
.y2_c00001{bottom:802.519733pt;}
.h2_c00001{height:48.000000pt;}
.h4_c00001{height:49.866667pt;}
.h5_c00001{height:57.600000pt;}
.h3_c00001{height:99.733333pt;}
.h0_c00001{height:1122.520000pt;}
.h1_c00001{height:1122.666667pt;}
.w0_c00001{width:793.701333pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x2_c00001{left:94.183733pt;}
.x1_c00001{left:713.767600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ecae0afd2bf8eb50bd76998f.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_a03d2f80f45c6a6c3bc374c1.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00002;src:url('chunks/assets/font_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00002;src:url('chunks/assets/font_63ffc899acdd56c4aa046aea.woff2')format("woff");}.ff5_c00002{font-family:ff5_c00002;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00002;src:url('chunks/assets/font_87e583af21f8406388627f68.woff2')format("woff");}.ff6_c00002{font-family:ff6_c00002;line-height:1.161000;font-style: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);}
.m1_c00002{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.v2_c00002{vertical-align:65.250000px;}
.v1_c00002{vertical-align:99.000000px;}
.lsa_c00002{letter-spacing:0.000000px;}
.ls1_c00002{letter-spacing:0.300000px;}
.ls2_c00002{letter-spacing:5.400000px;}
.ls0_c00002{letter-spacing:259.810800px;}
.ls5_c00002{letter-spacing:2475.801600px;}
.ls9_c00002{letter-spacing:2477.854200px;}
.ls7_c00002{letter-spacing:2478.765000px;}
.ls3_c00002{letter-spacing:2482.641600px;}
.ls4_c00002{letter-spacing:2485.149000px;}
.ls6_c00002{letter-spacing:2486.403000px;}
.ls8_c00002{letter-spacing:2492.104200px;}
.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;}
}
.ws1_c00002{word-spacing:-14.580000px;}
.ws0_c00002{word-spacing:-12.300000px;}
.ws5_c00002{word-spacing:-10.200000px;}
.ws7_c00002{word-spacing:-1.800000px;}
.ws8_c00002{word-spacing:-0.300000px;}
.ws6_c00002{word-spacing:0.000000px;}
.ws2_c00002{word-spacing:2395.773000px;}
.ws4_c00002{word-spacing:2397.572400px;}
.ws3_c00002{word-spacing:2407.629000px;}
._5_c00002{margin-left:-9.288000px;}
._2_c00002{margin-left:-7.800000px;}
._1_c00002{margin-left:-6.012000px;}
._6_c00002{margin-left:-4.800000px;}
._4_c00002{margin-left:-3.600000px;}
._0_c00002{margin-left:-1.800000px;}
._3_c00002{width:1.800000px;}
.fc1_c00002{color:rgb(218,218,218);}
.fc0_c00002{color:rgb(233,83,14);}
.fs3_c00002{font-size:54.000000px;}
.fs2_c00002{font-size:60.000000px;}
.fs1_c00002{font-size:228.000000px;}
.fs0_c00002{font-size:360.000000px;}
.y0_c00002{bottom:0.000000px;}
.y2a_c00002{bottom:43.345350px;}
.y29_c00002{bottom:94.570800px;}
.y1b_c00002{bottom:101.331600px;}
.y1a_c00002{bottom:119.331600px;}
.y28_c00002{bottom:160.706700px;}
.y19_c00002{bottom:167.466600px;}
.y18_c00002{bottom:185.466600px;}
.y2c_c00002{bottom:226.842600px;}
.y17_c00002{bottom:233.601600px;}
.y27_c00002{bottom:243.155100px;}
.y16_c00002{bottom:251.601600px;}
.y2d_c00002{bottom:292.962600px;}
.y15_c00002{bottom:299.736600px;}
.y26_c00002{bottom:309.290850px;}
.y14_c00002{bottom:317.736600px;}
.y25_c00002{bottom:359.114250px;}
.y13_c00002{bottom:365.871600px;}
.y12_c00002{bottom:383.871600px;}
.y24_c00002{bottom:425.250000px;}
.y11_c00002{bottom:432.006600px;}
.y10_c00002{bottom:450.006600px;}
.y23_c00002{bottom:491.385750px;}
.yf_c00002{bottom:498.141600px;}
.ye_c00002{bottom:516.141600px;}
.y22_c00002{bottom:557.521650px;}
.yd_c00002{bottom:564.276600px;}
.yc_c00002{bottom:582.276600px;}
.y21_c00002{bottom:623.657550px;}
.yb_c00002{bottom:648.411600px;}
.y20_c00002{bottom:689.793300px;}
.ya_c00002{bottom:714.546600px;}
.y1f_c00002{bottom:755.929200px;}
.y9_c00002{bottom:762.681600px;}
.y8_c00002{bottom:780.681600px;}
.y1e_c00002{bottom:822.064950px;}
.y7_c00002{bottom:828.816600px;}
.y6_c00002{bottom:846.816600px;}
.y1d_c00002{bottom:888.200850px;}
.y5_c00002{bottom:894.951600px;}
.y4_c00002{bottom:912.951600px;}
.y2_c00002{bottom:954.336600px;}
.y3_c00002{bottom:961.086600px;}
.y1c_c00002{bottom:970.649100px;}
.y2e_c00002{bottom:1043.201550px;}
.y2b_c00002{bottom:1043.821650px;}
.y1_c00002{bottom:1095.413400px;}
.h5_c00002{height:48.600000px;}
.h6_c00002{height:54.000000px;}
.h4_c00002{height:55.380000px;}
.h3_c00002{height:205.200000px;}
.h2_c00002{height:324.000000px;}
.h0_c00002{height:1262.835000px;}
.h1_c00002{height:1263.000000px;}
.w0_c00002{width:892.914000px;}
.w1_c00002{width:893.250000px;}
.x0_c00002{left:0.000000px;}
.xc_c00002{left:80.787450px;}
.x8_c00002{left:90.405300px;}
.x9_c00002{left:93.369300px;}
.xb_c00002{left:97.815300px;}
.x6_c00002{left:100.722150px;}
.x5_c00002{left:102.432150px;}
.x7_c00002{left:104.797500px;}
.x2_c00002{left:107.505000px;}
.x3_c00002{left:191.837700px;}
.x1_c00002{left:601.324650px;}
.x4_c00002{left:752.618550px;}
.xa_c00002{left:804.551100px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.v2_c00002{vertical-align:58.000000pt;}
.v1_c00002{vertical-align:88.000000pt;}
.lsa_c00002{letter-spacing:0.000000pt;}
.ls1_c00002{letter-spacing:0.266667pt;}
.ls2_c00002{letter-spacing:4.800000pt;}
.ls0_c00002{letter-spacing:230.942933pt;}
.ls5_c00002{letter-spacing:2200.712533pt;}
.ls9_c00002{letter-spacing:2202.537067pt;}
.ls7_c00002{letter-spacing:2203.346667pt;}
.ls3_c00002{letter-spacing:2206.792533pt;}
.ls4_c00002{letter-spacing:2209.021333pt;}
.ls6_c00002{letter-spacing:2210.136000pt;}
.ls8_c00002{letter-spacing:2215.203733pt;}
.ws1_c00002{word-spacing:-12.960000pt;}
.ws0_c00002{word-spacing:-10.933333pt;}
.ws5_c00002{word-spacing:-9.066667pt;}
.ws7_c00002{word-spacing:-1.600000pt;}
.ws8_c00002{word-spacing:-0.266667pt;}
.ws6_c00002{word-spacing:0.000000pt;}
.ws2_c00002{word-spacing:2129.576000pt;}
.ws4_c00002{word-spacing:2131.175467pt;}
.ws3_c00002{word-spacing:2140.114667pt;}
._5_c00002{margin-left:-8.256000pt;}
._2_c00002{margin-left:-6.933333pt;}
._1_c00002{margin-left:-5.344000pt;}
._6_c00002{margin-left:-4.266667pt;}
._4_c00002{margin-left:-3.200000pt;}
._0_c00002{margin-left:-1.600000pt;}
._3_c00002{width:1.600000pt;}
.fs3_c00002{font-size:48.000000pt;}
.fs2_c00002{font-size:53.333333pt;}
.fs1_c00002{font-size:202.666667pt;}
.fs0_c00002{font-size:320.000000pt;}
.y0_c00002{bottom:0.000000pt;}
.y2a_c00002{bottom:38.529200pt;}
.y29_c00002{bottom:84.062933pt;}
.y1b_c00002{bottom:90.072533pt;}
.y1a_c00002{bottom:106.072533pt;}
.y28_c00002{bottom:142.850400pt;}
.y19_c00002{bottom:148.859200pt;}
.y18_c00002{bottom:164.859200pt;}
.y2c_c00002{bottom:201.637867pt;}
.y17_c00002{bottom:207.645867pt;}
.y27_c00002{bottom:216.137867pt;}
.y16_c00002{bottom:223.645867pt;}
.y2d_c00002{bottom:260.411200pt;}
.y15_c00002{bottom:266.432533pt;}
.y26_c00002{bottom:274.925200pt;}
.y14_c00002{bottom:282.432533pt;}
.y25_c00002{bottom:319.212667pt;}
.y13_c00002{bottom:325.219200pt;}
.y12_c00002{bottom:341.219200pt;}
.y24_c00002{bottom:378.000000pt;}
.y11_c00002{bottom:384.005867pt;}
.y10_c00002{bottom:400.005867pt;}
.y23_c00002{bottom:436.787333pt;}
.yf_c00002{bottom:442.792533pt;}
.ye_c00002{bottom:458.792533pt;}
.y22_c00002{bottom:495.574800pt;}
.yd_c00002{bottom:501.579200pt;}
.yc_c00002{bottom:517.579200pt;}
.y21_c00002{bottom:554.362267pt;}
.yb_c00002{bottom:576.365867pt;}
.y20_c00002{bottom:613.149600pt;}
.ya_c00002{bottom:635.152533pt;}
.y1f_c00002{bottom:671.937067pt;}
.y9_c00002{bottom:677.939200pt;}
.y8_c00002{bottom:693.939200pt;}
.y1e_c00002{bottom:730.724400pt;}
.y7_c00002{bottom:736.725867pt;}
.y6_c00002{bottom:752.725867pt;}
.y1d_c00002{bottom:789.511867pt;}
.y5_c00002{bottom:795.512533pt;}
.y4_c00002{bottom:811.512533pt;}
.y2_c00002{bottom:848.299200pt;}
.y3_c00002{bottom:854.299200pt;}
.y1c_c00002{bottom:862.799200pt;}
.y2e_c00002{bottom:927.290267pt;}
.y2b_c00002{bottom:927.841467pt;}
.y1_c00002{bottom:973.700800pt;}
.h5_c00002{height:43.200000pt;}
.h6_c00002{height:48.000000pt;}
.h4_c00002{height:49.226667pt;}
.h3_c00002{height:182.400000pt;}
.h2_c00002{height:288.000000pt;}
.h0_c00002{height:1122.520000pt;}
.h1_c00002{height:1122.666667pt;}
.w0_c00002{width:793.701333pt;}
.w1_c00002{width:794.000000pt;}
.x0_c00002{left:0.000000pt;}
.xc_c00002{left:71.811067pt;}
.x8_c00002{left:80.360267pt;}
.x9_c00002{left:82.994933pt;}
.xb_c00002{left:86.946933pt;}
.x6_c00002{left:89.530800pt;}
.x5_c00002{left:91.050800pt;}
.x7_c00002{left:93.153333pt;}
.x2_c00002{left:95.560000pt;}
.x3_c00002{left:170.522400pt;}
.x1_c00002{left:534.510800pt;}
.x4_c00002{left:668.994267pt;}
.xa_c00002{left:715.156533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a03d2f80f45c6a6c3bc374c1.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.155000;font-style:normal;font-weight:normal;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_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_63ffc899acdd56c4aa046aea.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00003;src:url('chunks/assets/font_87e583af21f8406388627f68.woff2')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:1.161000;font-style: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);}
.m1_c00003{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.v2_c00003{vertical-align:65.250000px;}
.v1_c00003{vertical-align:98.999400px;}
.ls2_c00003{letter-spacing:0.000000px;}
.ls0_c00003{letter-spacing:0.300000px;}
.ls1_c00003{letter-spacing:5.400000px;}
.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;}
}
.ws2_c00003{word-spacing:-14.580000px;}
.ws1_c00003{word-spacing:-12.300000px;}
.wse_c00003{word-spacing:-10.200000px;}
.ws10_c00003{word-spacing:-0.300000px;}
.wsf_c00003{word-spacing:0.000000px;}
.ws0_c00003{word-spacing:165.759000px;}
.ws6_c00003{word-spacing:2375.480400px;}
.wsa_c00003{word-spacing:2377.988400px;}
.wsd_c00003{word-spacing:2379.332400px;}
.wsc_c00003{word-spacing:2380.951800px;}
.ws8_c00003{word-spacing:2384.828400px;}
.ws9_c00003{word-spacing:2387.335800px;}
.wsb_c00003{word-spacing:2394.291600px;}
.ws5_c00003{word-spacing:2400.334200px;}
.ws3_c00003{word-spacing:2401.245000px;}
.ws7_c00003{word-spacing:2405.121000px;}
.ws4_c00003{word-spacing:2414.584200px;}
._4_c00003{margin-left:-8.700000px;}
._3_c00003{margin-left:-6.600000px;}
._0_c00003{margin-left:-4.500000px;}
._2_c00003{margin-left:-3.300000px;}
._1_c00003{margin-left:-1.200000px;}
.fc1_c00003{color:rgb(218,218,218);}
.fc0_c00003{color:rgb(233,83,14);}
.fs2_c00003{font-size:54.000000px;}
.fs1_c00003{font-size:60.000000px;}
.fs0_c00003{font-size:228.000000px;}
.y0_c00003{bottom:0.000000px;}
.y30_c00003{bottom:43.345350px;}
.y2e_c00003{bottom:110.534700px;}
.y2d_c00003{bottom:117.284700px;}
.y2c_c00003{bottom:135.284700px;}
.y2a_c00003{bottom:165.420600px;}
.y2b_c00003{bottom:176.670600px;}
.y29_c00003{bottom:183.420600px;}
.y28_c00003{bottom:201.420600px;}
.y2f_c00003{bottom:242.806350px;}
.y1a_c00003{bottom:249.552000px;}
.y19_c00003{bottom:267.552000px;}
.y18_c00003{bottom:303.372000px;}
.y27_c00003{bottom:308.942250px;}
.y17_c00003{bottom:321.372000px;}
.y16_c00003{bottom:339.372000px;}
.y31_c00003{bottom:375.078000px;}
.y15_c00003{bottom:381.822000px;}
.y26_c00003{bottom:391.389150px;}
.y14_c00003{bottom:399.822000px;}
.y32_c00003{bottom:441.198000px;}
.y13_c00003{bottom:447.957000px;}
.y25_c00003{bottom:457.525650px;}
.y12_c00003{bottom:465.957000px;}
.y24_c00003{bottom:507.349650px;}
.y11_c00003{bottom:514.092000px;}
.y10_c00003{bottom:532.092000px;}
.y23_c00003{bottom:573.485550px;}
.yf_c00003{bottom:580.227000px;}
.ye_c00003{bottom:598.227000px;}
.y22_c00003{bottom:639.621300px;}
.yd_c00003{bottom:646.362000px;}
.yc_c00003{bottom:664.362000px;}
.y21_c00003{bottom:705.757200px;}
.yb_c00003{bottom:721.497000px;}
.y20_c00003{bottom:771.892950px;}
.ya_c00003{bottom:787.077000px;}
.y1f_c00003{bottom:838.028850px;}
.y9_c00003{bottom:844.782000px;}
.y8_c00003{bottom:862.782000px;}
.y1e_c00003{bottom:904.164600px;}
.y7_c00003{bottom:910.917000px;}
.y6_c00003{bottom:928.917000px;}
.y1d_c00003{bottom:970.300350px;}
.y5_c00003{bottom:977.052000px;}
.y4_c00003{bottom:995.052000px;}
.y1c_c00003{bottom:1036.436250px;}
.y3_c00003{bottom:1043.187000px;}
.y2_c00003{bottom:1061.187000px;}
.y1_c00003{bottom:1102.572150px;}
.y1b_c00003{bottom:1118.884650px;}
.y33_c00003{bottom:1192.057050px;}
.h4_c00003{height:48.600000px;}
.h5_c00003{height:54.000000px;}
.h3_c00003{height:55.380000px;}
.h2_c00003{height:205.200000px;}
.h0_c00003{height:1262.835000px;}
.h1_c00003{height:1263.000000px;}
.w0_c00003{width:892.914000px;}
.w1_c00003{width:893.250000px;}
.x0_c00003{left:0.000000px;}
.xb_c00003{left:80.787450px;}
.x6_c00003{left:85.332450px;}
.x9_c00003{left:86.649450px;}
.x7_c00003{left:87.669450px;}
.x8_c00003{left:90.034650px;}
.x4_c00003{left:91.773300px;}
.x1_c00003{left:93.682950px;}
.x5_c00003{left:95.107500px;}
.x2_c00003{left:191.837700px;}
.x3_c00003{left:752.618550px;}
.xa_c00003{left:803.576100px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.v2_c00003{vertical-align:58.000000pt;}
.v1_c00003{vertical-align:87.999467pt;}
.ls2_c00003{letter-spacing:0.000000pt;}
.ls0_c00003{letter-spacing:0.266667pt;}
.ls1_c00003{letter-spacing:4.800000pt;}
.ws2_c00003{word-spacing:-12.960000pt;}
.ws1_c00003{word-spacing:-10.933333pt;}
.wse_c00003{word-spacing:-9.066667pt;}
.ws10_c00003{word-spacing:-0.266667pt;}
.wsf_c00003{word-spacing:0.000000pt;}
.ws0_c00003{word-spacing:147.341333pt;}
.ws6_c00003{word-spacing:2111.538133pt;}
.wsa_c00003{word-spacing:2113.767467pt;}
.wsd_c00003{word-spacing:2114.962133pt;}
.wsc_c00003{word-spacing:2116.401600pt;}
.ws8_c00003{word-spacing:2119.847467pt;}
.ws9_c00003{word-spacing:2122.076267pt;}
.wsb_c00003{word-spacing:2128.259200pt;}
.ws5_c00003{word-spacing:2133.630400pt;}
.ws3_c00003{word-spacing:2134.440000pt;}
.ws7_c00003{word-spacing:2137.885333pt;}
.ws4_c00003{word-spacing:2146.297067pt;}
._4_c00003{margin-left:-7.733333pt;}
._3_c00003{margin-left:-5.866667pt;}
._0_c00003{margin-left:-4.000000pt;}
._2_c00003{margin-left:-2.933333pt;}
._1_c00003{margin-left:-1.066667pt;}
.fs2_c00003{font-size:48.000000pt;}
.fs1_c00003{font-size:53.333333pt;}
.fs0_c00003{font-size:202.666667pt;}
.y0_c00003{bottom:0.000000pt;}
.y30_c00003{bottom:38.529200pt;}
.y2e_c00003{bottom:98.253067pt;}
.y2d_c00003{bottom:104.253067pt;}
.y2c_c00003{bottom:120.253067pt;}
.y2a_c00003{bottom:147.040533pt;}
.y2b_c00003{bottom:157.040533pt;}
.y29_c00003{bottom:163.040533pt;}
.y28_c00003{bottom:179.040533pt;}
.y2f_c00003{bottom:215.827867pt;}
.y1a_c00003{bottom:221.824000pt;}
.y19_c00003{bottom:237.824000pt;}
.y18_c00003{bottom:269.664000pt;}
.y27_c00003{bottom:274.615333pt;}
.y17_c00003{bottom:285.664000pt;}
.y16_c00003{bottom:301.664000pt;}
.y31_c00003{bottom:333.402667pt;}
.y15_c00003{bottom:339.397333pt;}
.y26_c00003{bottom:347.901467pt;}
.y14_c00003{bottom:355.397333pt;}
.y32_c00003{bottom:392.176000pt;}
.y13_c00003{bottom:398.184000pt;}
.y25_c00003{bottom:406.689467pt;}
.y12_c00003{bottom:414.184000pt;}
.y24_c00003{bottom:450.977467pt;}
.y11_c00003{bottom:456.970667pt;}
.y10_c00003{bottom:472.970667pt;}
.y23_c00003{bottom:509.764933pt;}
.yf_c00003{bottom:515.757333pt;}
.ye_c00003{bottom:531.757333pt;}
.y22_c00003{bottom:568.552267pt;}
.yd_c00003{bottom:574.544000pt;}
.yc_c00003{bottom:590.544000pt;}
.y21_c00003{bottom:627.339733pt;}
.yb_c00003{bottom:641.330667pt;}
.y20_c00003{bottom:686.127067pt;}
.ya_c00003{bottom:699.624000pt;}
.y1f_c00003{bottom:744.914533pt;}
.y9_c00003{bottom:750.917333pt;}
.y8_c00003{bottom:766.917333pt;}
.y1e_c00003{bottom:803.701867pt;}
.y7_c00003{bottom:809.704000pt;}
.y6_c00003{bottom:825.704000pt;}
.y1d_c00003{bottom:862.489200pt;}
.y5_c00003{bottom:868.490667pt;}
.y4_c00003{bottom:884.490667pt;}
.y1c_c00003{bottom:921.276667pt;}
.y3_c00003{bottom:927.277333pt;}
.y2_c00003{bottom:943.277333pt;}
.y1_c00003{bottom:980.064133pt;}
.y1b_c00003{bottom:994.564133pt;}
.y33_c00003{bottom:1059.606267pt;}
.h4_c00003{height:43.200000pt;}
.h5_c00003{height:48.000000pt;}
.h3_c00003{height:49.226667pt;}
.h2_c00003{height:182.400000pt;}
.h0_c00003{height:1122.520000pt;}
.h1_c00003{height:1122.666667pt;}
.w0_c00003{width:793.701333pt;}
.w1_c00003{width:794.000000pt;}
.x0_c00003{left:0.000000pt;}
.xb_c00003{left:71.811067pt;}
.x6_c00003{left:75.851067pt;}
.x9_c00003{left:77.021733pt;}
.x7_c00003{left:77.928400pt;}
.x8_c00003{left:80.030800pt;}
.x4_c00003{left:81.576267pt;}
.x1_c00003{left:83.273733pt;}
.x5_c00003{left:84.540000pt;}
.x2_c00003{left:170.522400pt;}
.x3_c00003{left:668.994267pt;}
.xa_c00003{left:714.289867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a03d2f80f45c6a6c3bc374c1.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_63ffc899acdd56c4aa046aea.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00004;src:url('chunks/assets/font_87e583af21f8406388627f68.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00004{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.v2_c00004{vertical-align:65.250000px;}
.v1_c00004{vertical-align:98.999400px;}
.ls2_c00004{letter-spacing:0.000000px;}
.ls0_c00004{letter-spacing:0.300000px;}
.ls1_c00004{letter-spacing:5.400000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00004{word-spacing:-14.580000px;}
.wsd_c00004{word-spacing:-10.200000px;}
.ws10_c00004{word-spacing:-0.300000px;}
.wsf_c00004{word-spacing:-0.120000px;}
.wse_c00004{word-spacing:0.000000px;}
.ws0_c00004{word-spacing:164.505600px;}
.ws9_c00004{word-spacing:2368.640400px;}
.wsc_c00004{word-spacing:2370.439200px;}
.wsb_c00004{word-spacing:2374.111800px;}
.ws4_c00004{word-spacing:2380.495800px;}
.wsa_c00004{word-spacing:2381.749800px;}
.ws8_c00004{word-spacing:2382.549000px;}
.ws6_c00004{word-spacing:2383.459800px;}
.ws2_c00004{word-spacing:2387.336400px;}
.ws3_c00004{word-spacing:2389.843800px;}
.ws5_c00004{word-spacing:2391.097800px;}
.ws7_c00004{word-spacing:2396.799000px;}
._6_c00004{margin-left:-7.800000px;}
._5_c00004{margin-left:-6.588000px;}
._3_c00004{margin-left:-4.794000px;}
._1_c00004{margin-left:-3.600000px;}
._2_c00004{margin-left:-2.406000px;}
._0_c00004{margin-left:-1.200000px;}
._4_c00004{width:1.500000px;}
.fc1_c00004{color:rgb(218,218,218);}
.fc0_c00004{color:rgb(233,83,14);}
.fs2_c00004{font-size:54.000000px;}
.fs1_c00004{font-size:60.000000px;}
.fs0_c00004{font-size:228.000000px;}
.y0_c00004{bottom:0.000000px;}
.y2f_c00004{bottom:43.345350px;}
.y2d_c00004{bottom:110.534700px;}
.y2c_c00004{bottom:117.284700px;}
.y2b_c00004{bottom:135.284700px;}
.y2a_c00004{bottom:176.670600px;}
.y29_c00004{bottom:183.420600px;}
.y28_c00004{bottom:201.420600px;}
.y2e_c00004{bottom:242.806350px;}
.y1a_c00004{bottom:267.567000px;}
.y27_c00004{bottom:308.942250px;}
.y19_c00004{bottom:315.702000px;}
.y18_c00004{bottom:333.702000px;}
.y30_c00004{bottom:375.078000px;}
.y17_c00004{bottom:381.837000px;}
.y26_c00004{bottom:391.390500px;}
.y16_c00004{bottom:399.837000px;}
.y31_c00004{bottom:441.198000px;}
.y15_c00004{bottom:447.972000px;}
.y25_c00004{bottom:457.526400px;}
.y14_c00004{bottom:465.972000px;}
.y24_c00004{bottom:507.349650px;}
.y13_c00004{bottom:514.107000px;}
.y12_c00004{bottom:532.107000px;}
.y23_c00004{bottom:573.485550px;}
.y11_c00004{bottom:580.242000px;}
.y10_c00004{bottom:598.242000px;}
.y22_c00004{bottom:639.621300px;}
.yf_c00004{bottom:646.377000px;}
.ye_c00004{bottom:664.377000px;}
.y21_c00004{bottom:705.757200px;}
.yd_c00004{bottom:712.512000px;}
.yc_c00004{bottom:730.512000px;}
.y20_c00004{bottom:771.892950px;}
.yb_c00004{bottom:778.647000px;}
.ya_c00004{bottom:796.647000px;}
.y1f_c00004{bottom:838.028850px;}
.y9_c00004{bottom:862.782000px;}
.y1e_c00004{bottom:904.164600px;}
.y8_c00004{bottom:910.917000px;}
.y7_c00004{bottom:928.917000px;}
.y1d_c00004{bottom:970.300350px;}
.y6_c00004{bottom:977.052000px;}
.y5_c00004{bottom:995.052000px;}
.y1c_c00004{bottom:1036.436250px;}
.y4_c00004{bottom:1043.187000px;}
.y3_c00004{bottom:1061.187000px;}
.y1_c00004{bottom:1102.572150px;}
.y2_c00004{bottom:1109.322000px;}
.y1b_c00004{bottom:1118.884650px;}
.y32_c00004{bottom:1192.057050px;}
.h4_c00004{height:48.600000px;}
.h5_c00004{height:54.000000px;}
.h3_c00004{height:55.380000px;}
.h2_c00004{height:205.200000px;}
.h0_c00004{height:1262.835000px;}
.h1_c00004{height:1263.000000px;}
.w0_c00004{width:892.914000px;}
.w1_c00004{width:893.250000px;}
.x0_c00004{left:0.000000px;}
.xa_c00004{left:80.787450px;}
.x7_c00004{left:83.622450px;}
.x8_c00004{left:84.990600px;}
.x5_c00004{left:86.586600px;}
.x4_c00004{left:88.296450px;}
.x6_c00004{left:90.661800px;}
.x1_c00004{left:93.369300px;}
.x2_c00004{left:191.837700px;}
.x3_c00004{left:752.618550px;}
.x9_c00004{left:804.625950px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.v2_c00004{vertical-align:58.000000pt;}
.v1_c00004{vertical-align:87.999467pt;}
.ls2_c00004{letter-spacing:0.000000pt;}
.ls0_c00004{letter-spacing:0.266667pt;}
.ls1_c00004{letter-spacing:4.800000pt;}
.ws1_c00004{word-spacing:-12.960000pt;}
.wsd_c00004{word-spacing:-9.066667pt;}
.ws10_c00004{word-spacing:-0.266667pt;}
.wsf_c00004{word-spacing:-0.106667pt;}
.wse_c00004{word-spacing:0.000000pt;}
.ws0_c00004{word-spacing:146.227200pt;}
.ws9_c00004{word-spacing:2105.458133pt;}
.wsc_c00004{word-spacing:2107.057067pt;}
.wsb_c00004{word-spacing:2110.321600pt;}
.ws4_c00004{word-spacing:2115.996267pt;}
.wsa_c00004{word-spacing:2117.110933pt;}
.ws8_c00004{word-spacing:2117.821333pt;}
.ws6_c00004{word-spacing:2118.630933pt;}
.ws2_c00004{word-spacing:2122.076800pt;}
.ws3_c00004{word-spacing:2124.305600pt;}
.ws5_c00004{word-spacing:2125.420267pt;}
.ws7_c00004{word-spacing:2130.488000pt;}
._6_c00004{margin-left:-6.933333pt;}
._5_c00004{margin-left:-5.856000pt;}
._3_c00004{margin-left:-4.261333pt;}
._1_c00004{margin-left:-3.200000pt;}
._2_c00004{margin-left:-2.138667pt;}
._0_c00004{margin-left:-1.066667pt;}
._4_c00004{width:1.333333pt;}
.fs2_c00004{font-size:48.000000pt;}
.fs1_c00004{font-size:53.333333pt;}
.fs0_c00004{font-size:202.666667pt;}
.y0_c00004{bottom:0.000000pt;}
.y2f_c00004{bottom:38.529200pt;}
.y2d_c00004{bottom:98.253067pt;}
.y2c_c00004{bottom:104.253067pt;}
.y2b_c00004{bottom:120.253067pt;}
.y2a_c00004{bottom:157.040533pt;}
.y29_c00004{bottom:163.040533pt;}
.y28_c00004{bottom:179.040533pt;}
.y2e_c00004{bottom:215.827867pt;}
.y1a_c00004{bottom:237.837333pt;}
.y27_c00004{bottom:274.615333pt;}
.y19_c00004{bottom:280.624000pt;}
.y18_c00004{bottom:296.624000pt;}
.y30_c00004{bottom:333.402667pt;}
.y17_c00004{bottom:339.410667pt;}
.y26_c00004{bottom:347.902667pt;}
.y16_c00004{bottom:355.410667pt;}
.y31_c00004{bottom:392.176000pt;}
.y15_c00004{bottom:398.197333pt;}
.y25_c00004{bottom:406.690133pt;}
.y14_c00004{bottom:414.197333pt;}
.y24_c00004{bottom:450.977467pt;}
.y13_c00004{bottom:456.984000pt;}
.y12_c00004{bottom:472.984000pt;}
.y23_c00004{bottom:509.764933pt;}
.y11_c00004{bottom:515.770667pt;}
.y10_c00004{bottom:531.770667pt;}
.y22_c00004{bottom:568.552267pt;}
.yf_c00004{bottom:574.557333pt;}
.ye_c00004{bottom:590.557333pt;}
.y21_c00004{bottom:627.339733pt;}
.yd_c00004{bottom:633.344000pt;}
.yc_c00004{bottom:649.344000pt;}
.y20_c00004{bottom:686.127067pt;}
.yb_c00004{bottom:692.130667pt;}
.ya_c00004{bottom:708.130667pt;}
.y1f_c00004{bottom:744.914533pt;}
.y9_c00004{bottom:766.917333pt;}
.y1e_c00004{bottom:803.701867pt;}
.y8_c00004{bottom:809.704000pt;}
.y7_c00004{bottom:825.704000pt;}
.y1d_c00004{bottom:862.489200pt;}
.y6_c00004{bottom:868.490667pt;}
.y5_c00004{bottom:884.490667pt;}
.y1c_c00004{bottom:921.276667pt;}
.y4_c00004{bottom:927.277333pt;}
.y3_c00004{bottom:943.277333pt;}
.y1_c00004{bottom:980.064133pt;}
.y2_c00004{bottom:986.064000pt;}
.y1b_c00004{bottom:994.564133pt;}
.y32_c00004{bottom:1059.606267pt;}
.h4_c00004{height:43.200000pt;}
.h5_c00004{height:48.000000pt;}
.h3_c00004{height:49.226667pt;}
.h2_c00004{height:182.400000pt;}
.h0_c00004{height:1122.520000pt;}
.h1_c00004{height:1122.666667pt;}
.w0_c00004{width:793.701333pt;}
.w1_c00004{width:794.000000pt;}
.x0_c00004{left:0.000000pt;}
.xa_c00004{left:71.811067pt;}
.x7_c00004{left:74.331067pt;}
.x8_c00004{left:75.547200pt;}
.x5_c00004{left:76.965867pt;}
.x4_c00004{left:78.485733pt;}
.x6_c00004{left:80.588267pt;}
.x1_c00004{left:82.994933pt;}
.x2_c00004{left:170.522400pt;}
.x3_c00004{left:668.994267pt;}
.x9_c00004{left:715.223067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a03d2f80f45c6a6c3bc374c1.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.155000;font-style:normal;font-weight:normal;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_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_63ffc899acdd56c4aa046aea.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00005;src:url('chunks/assets/font_87e583af21f8406388627f68.woff2')format("woff");}.ff4_c00005{font-family:ff4_c00005;line-height:1.161000;font-style: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);}
.m1_c00005{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.v2_c00005{vertical-align:65.250000px;}
.v1_c00005{vertical-align:98.999400px;}
.ls2_c00005{letter-spacing:0.000000px;}
.ls0_c00005{letter-spacing:0.300000px;}
.ls1_c00005{letter-spacing:5.400000px;}
.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;}
}
.ws1_c00005{word-spacing:-14.580000px;}
.wse_c00005{word-spacing:-10.200000px;}
.ws10_c00005{word-spacing:-1.800000px;}
.wsf_c00005{word-spacing:0.000000px;}
.ws0_c00005{word-spacing:144.327600px;}
.wsd_c00005{word-spacing:2370.895200px;}
.ws2_c00005{word-spacing:2373.201000px;}
.ws3_c00005{word-spacing:2374.111800px;}
.ws4_c00005{word-spacing:2379.241800px;}
.wsc_c00005{word-spacing:2380.951800px;}
.ws8_c00005{word-spacing:2381.749800px;}
.wsa_c00005{word-spacing:2384.713800px;}
.ws6_c00005{word-spacing:2388.589800px;}
.ws7_c00005{word-spacing:2391.097800px;}
.ws9_c00005{word-spacing:2392.351200px;}
.wsb_c00005{word-spacing:2401.245000px;}
.ws5_c00005{word-spacing:2408.883000px;}
._5_c00005{margin-left:-8.700000px;}
._2_c00005{margin-left:-5.700000px;}
._3_c00005{margin-left:-4.212000px;}
._4_c00005{margin-left:-3.000000px;}
._0_c00005{margin-left:-1.800000px;}
._1_c00005{width:1.500000px;}
.fc1_c00005{color:rgb(218,218,218);}
.fc0_c00005{color:rgb(233,83,14);}
.fs2_c00005{font-size:54.000000px;}
.fs1_c00005{font-size:60.000000px;}
.fs0_c00005{font-size:228.000000px;}
.y0_c00005{bottom:0.000000px;}
.y2c_c00005{bottom:43.345350px;}
.y2a_c00005{bottom:110.534700px;}
.y29_c00005{bottom:117.284700px;}
.y28_c00005{bottom:135.284700px;}
.y27_c00005{bottom:176.670600px;}
.y26_c00005{bottom:201.420600px;}
.y2b_c00005{bottom:242.806350px;}
.y18_c00005{bottom:267.567000px;}
.y25_c00005{bottom:308.942250px;}
.y17_c00005{bottom:333.702000px;}
.y2d_c00005{bottom:375.078000px;}
.y16_c00005{bottom:381.837000px;}
.y24_c00005{bottom:391.389150px;}
.y15_c00005{bottom:399.837000px;}
.y2e_c00005{bottom:441.198000px;}
.y14_c00005{bottom:447.972000px;}
.y23_c00005{bottom:457.525650px;}
.y13_c00005{bottom:465.972000px;}
.y22_c00005{bottom:507.349650px;}
.y12_c00005{bottom:514.107000px;}
.y11_c00005{bottom:532.107000px;}
.y21_c00005{bottom:573.485550px;}
.y10_c00005{bottom:598.242000px;}
.y20_c00005{bottom:639.621300px;}
.yf_c00005{bottom:646.377000px;}
.ye_c00005{bottom:664.377000px;}
.y1f_c00005{bottom:705.757200px;}
.yd_c00005{bottom:712.512000px;}
.yc_c00005{bottom:730.512000px;}
.y1e_c00005{bottom:771.892950px;}
.yb_c00005{bottom:796.647000px;}
.y1d_c00005{bottom:838.028850px;}
.ya_c00005{bottom:844.782000px;}
.y9_c00005{bottom:862.782000px;}
.y1c_c00005{bottom:904.164600px;}
.y8_c00005{bottom:910.917000px;}
.y7_c00005{bottom:928.917000px;}
.y1b_c00005{bottom:970.300350px;}
.y6_c00005{bottom:977.052000px;}
.y5_c00005{bottom:995.052000px;}
.y1a_c00005{bottom:1036.436250px;}
.y4_c00005{bottom:1043.187000px;}
.y3_c00005{bottom:1061.187000px;}
.y1_c00005{bottom:1102.572150px;}
.y2_c00005{bottom:1109.322000px;}
.y19_c00005{bottom:1118.884650px;}
.y2f_c00005{bottom:1192.057050px;}
.h4_c00005{height:48.600000px;}
.h5_c00005{height:54.000000px;}
.h3_c00005{height:55.380000px;}
.h2_c00005{height:205.200000px;}
.h0_c00005{height:1262.835000px;}
.h1_c00005{height:1263.000000px;}
.w0_c00005{width:892.914000px;}
.w1_c00005{width:893.250000px;}
.x0_c00005{left:0.000000px;}
.xa_c00005{left:80.787450px;}
.x4_c00005{left:84.762300px;}
.x5_c00005{left:86.273100px;}
.x1_c00005{left:88.324800px;}
.x7_c00005{left:89.550750px;}
.x8_c00005{left:91.773300px;}
.x6_c00005{left:93.682800px;}
.x2_c00005{left:191.837700px;}
.x3_c00005{left:752.618550px;}
.x9_c00005{left:803.501100px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.v2_c00005{vertical-align:58.000000pt;}
.v1_c00005{vertical-align:87.999467pt;}
.ls2_c00005{letter-spacing:0.000000pt;}
.ls0_c00005{letter-spacing:0.266667pt;}
.ls1_c00005{letter-spacing:4.800000pt;}
.ws1_c00005{word-spacing:-12.960000pt;}
.wse_c00005{word-spacing:-9.066667pt;}
.ws10_c00005{word-spacing:-1.600000pt;}
.wsf_c00005{word-spacing:0.000000pt;}
.ws0_c00005{word-spacing:128.291200pt;}
.wsd_c00005{word-spacing:2107.462400pt;}
.ws2_c00005{word-spacing:2109.512000pt;}
.ws3_c00005{word-spacing:2110.321600pt;}
.ws4_c00005{word-spacing:2114.881600pt;}
.wsc_c00005{word-spacing:2116.401600pt;}
.ws8_c00005{word-spacing:2117.110933pt;}
.wsa_c00005{word-spacing:2119.745600pt;}
.ws6_c00005{word-spacing:2123.190933pt;}
.ws7_c00005{word-spacing:2125.420267pt;}
.ws9_c00005{word-spacing:2126.534400pt;}
.wsb_c00005{word-spacing:2134.440000pt;}
.ws5_c00005{word-spacing:2141.229333pt;}
._5_c00005{margin-left:-7.733333pt;}
._2_c00005{margin-left:-5.066667pt;}
._3_c00005{margin-left:-3.744000pt;}
._4_c00005{margin-left:-2.666667pt;}
._0_c00005{margin-left:-1.600000pt;}
._1_c00005{width:1.333333pt;}
.fs2_c00005{font-size:48.000000pt;}
.fs1_c00005{font-size:53.333333pt;}
.fs0_c00005{font-size:202.666667pt;}
.y0_c00005{bottom:0.000000pt;}
.y2c_c00005{bottom:38.529200pt;}
.y2a_c00005{bottom:98.253067pt;}
.y29_c00005{bottom:104.253067pt;}
.y28_c00005{bottom:120.253067pt;}
.y27_c00005{bottom:157.040533pt;}
.y26_c00005{bottom:179.040533pt;}
.y2b_c00005{bottom:215.827867pt;}
.y18_c00005{bottom:237.837333pt;}
.y25_c00005{bottom:274.615333pt;}
.y17_c00005{bottom:296.624000pt;}
.y2d_c00005{bottom:333.402667pt;}
.y16_c00005{bottom:339.410667pt;}
.y24_c00005{bottom:347.901467pt;}
.y15_c00005{bottom:355.410667pt;}
.y2e_c00005{bottom:392.176000pt;}
.y14_c00005{bottom:398.197333pt;}
.y23_c00005{bottom:406.689467pt;}
.y13_c00005{bottom:414.197333pt;}
.y22_c00005{bottom:450.977467pt;}
.y12_c00005{bottom:456.984000pt;}
.y11_c00005{bottom:472.984000pt;}
.y21_c00005{bottom:509.764933pt;}
.y10_c00005{bottom:531.770667pt;}
.y20_c00005{bottom:568.552267pt;}
.yf_c00005{bottom:574.557333pt;}
.ye_c00005{bottom:590.557333pt;}
.y1f_c00005{bottom:627.339733pt;}
.yd_c00005{bottom:633.344000pt;}
.yc_c00005{bottom:649.344000pt;}
.y1e_c00005{bottom:686.127067pt;}
.yb_c00005{bottom:708.130667pt;}
.y1d_c00005{bottom:744.914533pt;}
.ya_c00005{bottom:750.917333pt;}
.y9_c00005{bottom:766.917333pt;}
.y1c_c00005{bottom:803.701867pt;}
.y8_c00005{bottom:809.704000pt;}
.y7_c00005{bottom:825.704000pt;}
.y1b_c00005{bottom:862.489200pt;}
.y6_c00005{bottom:868.490667pt;}
.y5_c00005{bottom:884.490667pt;}
.y1a_c00005{bottom:921.276667pt;}
.y4_c00005{bottom:927.277333pt;}
.y3_c00005{bottom:943.277333pt;}
.y1_c00005{bottom:980.064133pt;}
.y2_c00005{bottom:986.064000pt;}
.y19_c00005{bottom:994.564133pt;}
.y2f_c00005{bottom:1059.606267pt;}
.h4_c00005{height:43.200000pt;}
.h5_c00005{height:48.000000pt;}
.h3_c00005{height:49.226667pt;}
.h2_c00005{height:182.400000pt;}
.h0_c00005{height:1122.520000pt;}
.h1_c00005{height:1122.666667pt;}
.w0_c00005{width:793.701333pt;}
.w1_c00005{width:794.000000pt;}
.x0_c00005{left:0.000000pt;}
.xa_c00005{left:71.811067pt;}
.x4_c00005{left:75.344267pt;}
.x5_c00005{left:76.687200pt;}
.x1_c00005{left:78.510933pt;}
.x7_c00005{left:79.600667pt;}
.x8_c00005{left:81.576267pt;}
.x6_c00005{left:83.273600pt;}
.x2_c00005{left:170.522400pt;}
.x3_c00005{left:668.994267pt;}
.x9_c00005{left:714.223200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a03d2f80f45c6a6c3bc374c1.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_63ffc899acdd56c4aa046aea.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00006;src:url('chunks/assets/font_87e583af21f8406388627f68.woff2')format("woff");}.ff4_c00006{font-family:ff4_c00006;line-height:1.161000;font-style: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);}
.m1_c00006{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.v2_c00006{vertical-align:65.250000px;}
.v1_c00006{vertical-align:98.999400px;}
.ls4_c00006{letter-spacing:-13.680000px;}
.ls3_c00006{letter-spacing:-0.600000px;}
.ls2_c00006{letter-spacing:0.000000px;}
.ls0_c00006{letter-spacing:0.300000px;}
.ls1_c00006{letter-spacing:5.400000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00006{word-spacing:-14.580000px;}
.ws1_c00006{word-spacing:-12.300000px;}
.wsf_c00006{word-spacing:-10.200000px;}
.ws11_c00006{word-spacing:-1.800000px;}
.ws10_c00006{word-spacing:0.000000px;}
.ws12_c00006{word-spacing:13.680000px;}
.ws0_c00006{word-spacing:140.336400px;}
.ws3_c00006{word-spacing:2374.111800px;}
.ws7_c00006{word-spacing:2376.165000px;}
.ws5_c00006{word-spacing:2377.075800px;}
.ws4_c00006{word-spacing:2384.713800px;}
.ws8_c00006{word-spacing:2384.943600px;}
.wsd_c00006{word-spacing:2389.504200px;}
.wse_c00006{word-spacing:2389.706400px;}
.ws6_c00006{word-spacing:2390.415000px;}
.wsa_c00006{word-spacing:2394.291600px;}
.wsb_c00006{word-spacing:2398.053000px;}
.wsc_c00006{word-spacing:2403.754200px;}
.ws9_c00006{word-spacing:2414.584200px;}
._1_c00006{margin-left:-7.800000px;}
._2_c00006{margin-left:-6.000000px;}
._3_c00006{margin-left:-4.800000px;}
._4_c00006{margin-left:-3.000000px;}
._0_c00006{margin-left:-1.800000px;}
._5_c00006{width:1.200000px;}
.fc1_c00006{color:rgb(218,218,218);}
.fc0_c00006{color:rgb(233,83,14);}
.fs2_c00006{font-size:54.000000px;}
.fs1_c00006{font-size:60.000000px;}
.fs0_c00006{font-size:228.000000px;}
.y0_c00006{bottom:0.000000px;}
.y30_c00006{bottom:43.345350px;}
.y2e_c00006{bottom:110.534700px;}
.y2d_c00006{bottom:117.284700px;}
.y2c_c00006{bottom:135.284700px;}
.y2b_c00006{bottom:176.670600px;}
.y2a_c00006{bottom:183.420600px;}
.y29_c00006{bottom:201.420600px;}
.y2f_c00006{bottom:242.806350px;}
.y1b_c00006{bottom:249.567000px;}
.y1a_c00006{bottom:267.567000px;}
.y28_c00006{bottom:308.942250px;}
.y19_c00006{bottom:315.702000px;}
.y18_c00006{bottom:333.702000px;}
.y31_c00006{bottom:375.078000px;}
.y17_c00006{bottom:381.837000px;}
.y27_c00006{bottom:391.389150px;}
.y16_c00006{bottom:399.837000px;}
.y32_c00006{bottom:441.198000px;}
.y15_c00006{bottom:447.972000px;}
.y26_c00006{bottom:457.525650px;}
.y14_c00006{bottom:465.972000px;}
.y25_c00006{bottom:507.349650px;}
.y13_c00006{bottom:514.107000px;}
.y12_c00006{bottom:532.107000px;}
.y24_c00006{bottom:573.485550px;}
.y11_c00006{bottom:580.242000px;}
.y10_c00006{bottom:598.242000px;}
.y23_c00006{bottom:639.621300px;}
.yf_c00006{bottom:646.377000px;}
.ye_c00006{bottom:664.377000px;}
.y22_c00006{bottom:705.757200px;}
.yd_c00006{bottom:730.512000px;}
.y21_c00006{bottom:771.892950px;}
.yc_c00006{bottom:778.647000px;}
.yb_c00006{bottom:796.647000px;}
.y20_c00006{bottom:838.028850px;}
.ya_c00006{bottom:844.782000px;}
.y9_c00006{bottom:862.782000px;}
.y1f_c00006{bottom:904.164600px;}
.y8_c00006{bottom:910.917000px;}
.y7_c00006{bottom:928.917000px;}
.y1e_c00006{bottom:970.300350px;}
.y6_c00006{bottom:977.052000px;}
.y5_c00006{bottom:995.052000px;}
.y1d_c00006{bottom:1036.436250px;}
.y4_c00006{bottom:1043.187000px;}
.y3_c00006{bottom:1061.187000px;}
.y1_c00006{bottom:1102.572150px;}
.y2_c00006{bottom:1109.322000px;}
.y1c_c00006{bottom:1118.884650px;}
.y33_c00006{bottom:1192.057050px;}
.h4_c00006{height:48.600000px;}
.h5_c00006{height:54.000000px;}
.h3_c00006{height:55.380000px;}
.h2_c00006{height:205.200000px;}
.h0_c00006{height:1262.835000px;}
.h1_c00006{height:1263.000000px;}
.w0_c00006{width:892.914000px;}
.w1_c00006{width:893.250000px;}
.x0_c00006{left:0.000000px;}
.xa_c00006{left:80.787450px;}
.x4_c00006{left:84.990600px;}
.x1_c00006{left:87.327600px;}
.x5_c00006{left:89.065800px;}
.x7_c00006{left:90.975300px;}
.x8_c00006{left:92.400000px;}
.x6_c00006{left:95.107500px;}
.x2_c00006{left:191.837700px;}
.x3_c00006{left:752.618550px;}
.x9_c00006{left:805.600950px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.v2_c00006{vertical-align:58.000000pt;}
.v1_c00006{vertical-align:87.999467pt;}
.ls4_c00006{letter-spacing:-12.160000pt;}
.ls3_c00006{letter-spacing:-0.533333pt;}
.ls2_c00006{letter-spacing:0.000000pt;}
.ls0_c00006{letter-spacing:0.266667pt;}
.ls1_c00006{letter-spacing:4.800000pt;}
.ws2_c00006{word-spacing:-12.960000pt;}
.ws1_c00006{word-spacing:-10.933333pt;}
.wsf_c00006{word-spacing:-9.066667pt;}
.ws11_c00006{word-spacing:-1.600000pt;}
.ws10_c00006{word-spacing:0.000000pt;}
.ws12_c00006{word-spacing:12.160000pt;}
.ws0_c00006{word-spacing:124.743467pt;}
.ws3_c00006{word-spacing:2110.321600pt;}
.ws7_c00006{word-spacing:2112.146667pt;}
.ws5_c00006{word-spacing:2112.956267pt;}
.ws4_c00006{word-spacing:2119.745600pt;}
.ws8_c00006{word-spacing:2119.949867pt;}
.wsd_c00006{word-spacing:2124.003733pt;}
.wse_c00006{word-spacing:2124.183467pt;}
.ws6_c00006{word-spacing:2124.813333pt;}
.wsa_c00006{word-spacing:2128.259200pt;}
.wsb_c00006{word-spacing:2131.602667pt;}
.wsc_c00006{word-spacing:2136.670400pt;}
.ws9_c00006{word-spacing:2146.297067pt;}
._1_c00006{margin-left:-6.933333pt;}
._2_c00006{margin-left:-5.333333pt;}
._3_c00006{margin-left:-4.266667pt;}
._4_c00006{margin-left:-2.666667pt;}
._0_c00006{margin-left:-1.600000pt;}
._5_c00006{width:1.066667pt;}
.fs2_c00006{font-size:48.000000pt;}
.fs1_c00006{font-size:53.333333pt;}
.fs0_c00006{font-size:202.666667pt;}
.y0_c00006{bottom:0.000000pt;}
.y30_c00006{bottom:38.529200pt;}
.y2e_c00006{bottom:98.253067pt;}
.y2d_c00006{bottom:104.253067pt;}
.y2c_c00006{bottom:120.253067pt;}
.y2b_c00006{bottom:157.040533pt;}
.y2a_c00006{bottom:163.040533pt;}
.y29_c00006{bottom:179.040533pt;}
.y2f_c00006{bottom:215.827867pt;}
.y1b_c00006{bottom:221.837333pt;}
.y1a_c00006{bottom:237.837333pt;}
.y28_c00006{bottom:274.615333pt;}
.y19_c00006{bottom:280.624000pt;}
.y18_c00006{bottom:296.624000pt;}
.y31_c00006{bottom:333.402667pt;}
.y17_c00006{bottom:339.410667pt;}
.y27_c00006{bottom:347.901467pt;}
.y16_c00006{bottom:355.410667pt;}
.y32_c00006{bottom:392.176000pt;}
.y15_c00006{bottom:398.197333pt;}
.y26_c00006{bottom:406.689467pt;}
.y14_c00006{bottom:414.197333pt;}
.y25_c00006{bottom:450.977467pt;}
.y13_c00006{bottom:456.984000pt;}
.y12_c00006{bottom:472.984000pt;}
.y24_c00006{bottom:509.764933pt;}
.y11_c00006{bottom:515.770667pt;}
.y10_c00006{bottom:531.770667pt;}
.y23_c00006{bottom:568.552267pt;}
.yf_c00006{bottom:574.557333pt;}
.ye_c00006{bottom:590.557333pt;}
.y22_c00006{bottom:627.339733pt;}
.yd_c00006{bottom:649.344000pt;}
.y21_c00006{bottom:686.127067pt;}
.yc_c00006{bottom:692.130667pt;}
.yb_c00006{bottom:708.130667pt;}
.y20_c00006{bottom:744.914533pt;}
.ya_c00006{bottom:750.917333pt;}
.y9_c00006{bottom:766.917333pt;}
.y1f_c00006{bottom:803.701867pt;}
.y8_c00006{bottom:809.704000pt;}
.y7_c00006{bottom:825.704000pt;}
.y1e_c00006{bottom:862.489200pt;}
.y6_c00006{bottom:868.490667pt;}
.y5_c00006{bottom:884.490667pt;}
.y1d_c00006{bottom:921.276667pt;}
.y4_c00006{bottom:927.277333pt;}
.y3_c00006{bottom:943.277333pt;}
.y1_c00006{bottom:980.064133pt;}
.y2_c00006{bottom:986.064000pt;}
.y1c_c00006{bottom:994.564133pt;}
.y33_c00006{bottom:1059.606267pt;}
.h4_c00006{height:43.200000pt;}
.h5_c00006{height:48.000000pt;}
.h3_c00006{height:49.226667pt;}
.h2_c00006{height:182.400000pt;}
.h0_c00006{height:1122.520000pt;}
.h1_c00006{height:1122.666667pt;}
.w0_c00006{width:793.701333pt;}
.w1_c00006{width:794.000000pt;}
.x0_c00006{left:0.000000pt;}
.xa_c00006{left:71.811067pt;}
.x4_c00006{left:75.547200pt;}
.x1_c00006{left:77.624533pt;}
.x5_c00006{left:79.169600pt;}
.x7_c00006{left:80.866933pt;}
.x8_c00006{left:82.133333pt;}
.x6_c00006{left:84.540000pt;}
.x2_c00006{left:170.522400pt;}
.x3_c00006{left:668.994267pt;}
.x9_c00006{left:716.089733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a03d2f80f45c6a6c3bc374c1.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.155000;font-style:normal;font-weight:normal;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_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_63ffc899acdd56c4aa046aea.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00007;src:url('chunks/assets/font_87e583af21f8406388627f68.woff2')format("woff");}.ff4_c00007{font-family:ff4_c00007;line-height:1.161000;font-style: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);}
.m1_c00007{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.v2_c00007{vertical-align:65.250000px;}
.v1_c00007{vertical-align:98.999400px;}
.ls3_c00007{letter-spacing:-0.300000px;}
.ls2_c00007{letter-spacing:0.000000px;}
.ls0_c00007{letter-spacing:0.300000px;}
.ls1_c00007{letter-spacing:5.400000px;}
.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;}
}
.ws2_c00007{word-spacing:-14.580000px;}
.ws1_c00007{word-spacing:-12.300000px;}
.ws10_c00007{word-spacing:-10.200000px;}
.ws11_c00007{word-spacing:0.000000px;}
.ws0_c00007{word-spacing:147.291600px;}
.ws3_c00007{word-spacing:2370.693600px;}
.ws7_c00007{word-spacing:2373.201000px;}
.wse_c00007{word-spacing:2374.111800px;}
.wsb_c00007{word-spacing:2375.254200px;}
.ws9_c00007{word-spacing:2376.165000px;}
.ws5_c00007{word-spacing:2380.041600px;}
.wsf_c00007{word-spacing:2380.243200px;}
.ws6_c00007{word-spacing:2382.549000px;}
.wsd_c00007{word-spacing:2383.459800px;}
.ws8_c00007{word-spacing:2383.803000px;}
.wsa_c00007{word-spacing:2389.504200px;}
.ws4_c00007{word-spacing:2400.334200px;}
.wsc_c00007{word-spacing:2401.245000px;}
._1_c00007{margin-left:-9.300000px;}
._4_c00007{margin-left:-8.100000px;}
._5_c00007{margin-left:-6.000000px;}
._2_c00007{margin-left:-4.500000px;}
._3_c00007{margin-left:-2.400000px;}
._0_c00007{margin-left:-1.200000px;}
._6_c00007{width:1.500000px;}
.fc1_c00007{color:rgb(218,218,218);}
.fc0_c00007{color:rgb(233,83,14);}
.fs2_c00007{font-size:54.000000px;}
.fs1_c00007{font-size:60.000000px;}
.fs0_c00007{font-size:228.000000px;}
.y0_c00007{bottom:0.000000px;}
.y2f_c00007{bottom:43.345350px;}
.y2d_c00007{bottom:110.534700px;}
.y2c_c00007{bottom:117.284700px;}
.y2b_c00007{bottom:135.284700px;}
.y2a_c00007{bottom:176.670600px;}
.y29_c00007{bottom:183.420600px;}
.y28_c00007{bottom:201.420600px;}
.y2e_c00007{bottom:242.806350px;}
.y1a_c00007{bottom:267.567000px;}
.y27_c00007{bottom:308.942250px;}
.y19_c00007{bottom:315.702000px;}
.y18_c00007{bottom:333.702000px;}
.y30_c00007{bottom:375.078000px;}
.y17_c00007{bottom:386.607000px;}
.y26_c00007{bottom:391.389150px;}
.y16_c00007{bottom:404.607000px;}
.y31_c00007{bottom:441.198000px;}
.y15_c00007{bottom:447.972000px;}
.y25_c00007{bottom:457.525650px;}
.y14_c00007{bottom:465.972000px;}
.y24_c00007{bottom:507.349650px;}
.y13_c00007{bottom:514.107000px;}
.y12_c00007{bottom:532.107000px;}
.y23_c00007{bottom:573.485550px;}
.y11_c00007{bottom:598.242000px;}
.y22_c00007{bottom:639.621300px;}
.y10_c00007{bottom:646.377000px;}
.yf_c00007{bottom:664.377000px;}
.y21_c00007{bottom:705.757200px;}
.ye_c00007{bottom:712.512000px;}
.yd_c00007{bottom:730.512000px;}
.y20_c00007{bottom:771.892950px;}
.yc_c00007{bottom:778.647000px;}
.yb_c00007{bottom:796.647000px;}
.y1f_c00007{bottom:838.028850px;}
.ya_c00007{bottom:844.782000px;}
.y9_c00007{bottom:862.782000px;}
.y1e_c00007{bottom:904.164600px;}
.y8_c00007{bottom:910.917000px;}
.y7_c00007{bottom:928.917000px;}
.y1d_c00007{bottom:970.300350px;}
.y6_c00007{bottom:977.052000px;}
.y5_c00007{bottom:995.052000px;}
.y1c_c00007{bottom:1036.436250px;}
.y4_c00007{bottom:1043.187000px;}
.y3_c00007{bottom:1061.187000px;}
.y1_c00007{bottom:1102.572150px;}
.y2_c00007{bottom:1109.322000px;}
.y1b_c00007{bottom:1118.884650px;}
.y32_c00007{bottom:1192.057050px;}
.h4_c00007{height:48.600000px;}
.h5_c00007{height:54.000000px;}
.h3_c00007{height:55.380000px;}
.h2_c00007{height:205.200000px;}
.h0_c00007{height:1262.835000px;}
.h1_c00007{height:1263.000000px;}
.w0_c00007{width:892.914000px;}
.w1_c00007{width:893.250000px;}
.x0_c00007{left:0.000000px;}
.x9_c00007{left:80.787450px;}
.x4_c00007{left:84.135150px;}
.x7_c00007{left:85.275000px;}
.x6_c00007{left:86.472150px;}
.x1_c00007{left:89.065800px;}
.x5_c00007{left:91.545000px;}
.x2_c00007{left:191.837700px;}
.x3_c00007{left:752.618550px;}
.x8_c00007{left:803.576100px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.v2_c00007{vertical-align:58.000000pt;}
.v1_c00007{vertical-align:87.999467pt;}
.ls3_c00007{letter-spacing:-0.266667pt;}
.ls2_c00007{letter-spacing:0.000000pt;}
.ls0_c00007{letter-spacing:0.266667pt;}
.ls1_c00007{letter-spacing:4.800000pt;}
.ws2_c00007{word-spacing:-12.960000pt;}
.ws1_c00007{word-spacing:-10.933333pt;}
.ws10_c00007{word-spacing:-9.066667pt;}
.ws11_c00007{word-spacing:0.000000pt;}
.ws0_c00007{word-spacing:130.925867pt;}
.ws3_c00007{word-spacing:2107.283200pt;}
.ws7_c00007{word-spacing:2109.512000pt;}
.wse_c00007{word-spacing:2110.321600pt;}
.wsb_c00007{word-spacing:2111.337067pt;}
.ws9_c00007{word-spacing:2112.146667pt;}
.ws5_c00007{word-spacing:2115.592533pt;}
.wsf_c00007{word-spacing:2115.771733pt;}
.ws6_c00007{word-spacing:2117.821333pt;}
.wsd_c00007{word-spacing:2118.630933pt;}
.ws8_c00007{word-spacing:2118.936000pt;}
.wsa_c00007{word-spacing:2124.003733pt;}
.ws4_c00007{word-spacing:2133.630400pt;}
.wsc_c00007{word-spacing:2134.440000pt;}
._1_c00007{margin-left:-8.266667pt;}
._4_c00007{margin-left:-7.200000pt;}
._5_c00007{margin-left:-5.333333pt;}
._2_c00007{margin-left:-4.000000pt;}
._3_c00007{margin-left:-2.133333pt;}
._0_c00007{margin-left:-1.066667pt;}
._6_c00007{width:1.333333pt;}
.fs2_c00007{font-size:48.000000pt;}
.fs1_c00007{font-size:53.333333pt;}
.fs0_c00007{font-size:202.666667pt;}
.y0_c00007{bottom:0.000000pt;}
.y2f_c00007{bottom:38.529200pt;}
.y2d_c00007{bottom:98.253067pt;}
.y2c_c00007{bottom:104.253067pt;}
.y2b_c00007{bottom:120.253067pt;}
.y2a_c00007{bottom:157.040533pt;}
.y29_c00007{bottom:163.040533pt;}
.y28_c00007{bottom:179.040533pt;}
.y2e_c00007{bottom:215.827867pt;}
.y1a_c00007{bottom:237.837333pt;}
.y27_c00007{bottom:274.615333pt;}
.y19_c00007{bottom:280.624000pt;}
.y18_c00007{bottom:296.624000pt;}
.y30_c00007{bottom:333.402667pt;}
.y17_c00007{bottom:343.650667pt;}
.y26_c00007{bottom:347.901467pt;}
.y16_c00007{bottom:359.650667pt;}
.y31_c00007{bottom:392.176000pt;}
.y15_c00007{bottom:398.197333pt;}
.y25_c00007{bottom:406.689467pt;}
.y14_c00007{bottom:414.197333pt;}
.y24_c00007{bottom:450.977467pt;}
.y13_c00007{bottom:456.984000pt;}
.y12_c00007{bottom:472.984000pt;}
.y23_c00007{bottom:509.764933pt;}
.y11_c00007{bottom:531.770667pt;}
.y22_c00007{bottom:568.552267pt;}
.y10_c00007{bottom:574.557333pt;}
.yf_c00007{bottom:590.557333pt;}
.y21_c00007{bottom:627.339733pt;}
.ye_c00007{bottom:633.344000pt;}
.yd_c00007{bottom:649.344000pt;}
.y20_c00007{bottom:686.127067pt;}
.yc_c00007{bottom:692.130667pt;}
.yb_c00007{bottom:708.130667pt;}
.y1f_c00007{bottom:744.914533pt;}
.ya_c00007{bottom:750.917333pt;}
.y9_c00007{bottom:766.917333pt;}
.y1e_c00007{bottom:803.701867pt;}
.y8_c00007{bottom:809.704000pt;}
.y7_c00007{bottom:825.704000pt;}
.y1d_c00007{bottom:862.489200pt;}
.y6_c00007{bottom:868.490667pt;}
.y5_c00007{bottom:884.490667pt;}
.y1c_c00007{bottom:921.276667pt;}
.y4_c00007{bottom:927.277333pt;}
.y3_c00007{bottom:943.277333pt;}
.y1_c00007{bottom:980.064133pt;}
.y2_c00007{bottom:986.064000pt;}
.y1b_c00007{bottom:994.564133pt;}
.y32_c00007{bottom:1059.606267pt;}
.h4_c00007{height:43.200000pt;}
.h5_c00007{height:48.000000pt;}
.h3_c00007{height:49.226667pt;}
.h2_c00007{height:182.400000pt;}
.h0_c00007{height:1122.520000pt;}
.h1_c00007{height:1122.666667pt;}
.w0_c00007{width:793.701333pt;}
.w1_c00007{width:794.000000pt;}
.x0_c00007{left:0.000000pt;}
.x9_c00007{left:71.811067pt;}
.x4_c00007{left:74.786800pt;}
.x7_c00007{left:75.800000pt;}
.x6_c00007{left:76.864133pt;}
.x1_c00007{left:79.169600pt;}
.x5_c00007{left:81.373333pt;}
.x2_c00007{left:170.522400pt;}
.x3_c00007{left:668.994267pt;}
.x8_c00007{left:714.289867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a03d2f80f45c6a6c3bc374c1.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00008;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_63ffc899acdd56c4aa046aea.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00008;src:url('chunks/assets/font_87e583af21f8406388627f68.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:1.161000;font-style: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);}
.m1_c00008{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.v2_c00008{vertical-align:65.250000px;}
.v1_c00008{vertical-align:98.999400px;}
.ls3_c00008{letter-spacing:-11.400000px;}
.ls2_c00008{letter-spacing:0.000000px;}
.ls0_c00008{letter-spacing:0.300000px;}
.ls1_c00008{letter-spacing:5.400000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00008{word-spacing:-14.580000px;}
.ws1_c00008{word-spacing:-12.300000px;}
.ws10_c00008{word-spacing:-10.200000px;}
.ws13_c00008{word-spacing:-1.800000px;}
.ws12_c00008{word-spacing:-0.300000px;}
.ws11_c00008{word-spacing:0.000000px;}
.ws14_c00008{word-spacing:11.400000px;}
.ws0_c00008{word-spacing:141.590400px;}
.wse_c00008{word-spacing:2357.013000px;}
.ws7_c00008{word-spacing:2361.572400px;}
.wsb_c00008{word-spacing:2365.116000px;}
.wsf_c00008{word-spacing:2366.262600px;}
.wsd_c00008{word-spacing:2368.080000px;}
.ws9_c00008{word-spacing:2371.956000px;}
.wsa_c00008{word-spacing:2374.464000px;}
.ws5_c00008{word-spacing:2376.165000px;}
.ws3_c00008{word-spacing:2377.075800px;}
.wsc_c00008{word-spacing:2381.419200px;}
.ws8_c00008{word-spacing:2387.504400px;}
.ws4_c00008{word-spacing:2390.415000px;}
.ws6_c00008{word-spacing:2405.575800px;}
._1_c00008{margin-left:-9.300000px;}
._7_c00008{margin-left:-7.800000px;}
._2_c00008{margin-left:-6.300000px;}
._5_c00008{margin-left:-4.794000px;}
._3_c00008{margin-left:-3.606000px;}
._4_c00008{margin-left:-2.406000px;}
._0_c00008{margin-left:-1.200000px;}
._6_c00008{width:1.200000px;}
.fc1_c00008{color:rgb(218,218,218);}
.fc0_c00008{color:rgb(233,83,14);}
.fs2_c00008{font-size:54.000000px;}
.fs1_c00008{font-size:60.000000px;}
.fs0_c00008{font-size:228.000000px;}
.y0_c00008{bottom:0.000000px;}
.y2f_c00008{bottom:43.345350px;}
.y2d_c00008{bottom:110.534700px;}
.y2c_c00008{bottom:117.284700px;}
.y2b_c00008{bottom:135.284700px;}
.y2a_c00008{bottom:176.670600px;}
.y29_c00008{bottom:183.420600px;}
.y28_c00008{bottom:201.420600px;}
.y2e_c00008{bottom:242.806350px;}
.y1a_c00008{bottom:249.567000px;}
.y19_c00008{bottom:267.567000px;}
.y27_c00008{bottom:308.942250px;}
.y18_c00008{bottom:333.702000px;}
.y30_c00008{bottom:375.078000px;}
.y17_c00008{bottom:381.837000px;}
.y26_c00008{bottom:391.389150px;}
.y16_c00008{bottom:399.837000px;}
.y31_c00008{bottom:441.198000px;}
.y15_c00008{bottom:447.972000px;}
.y25_c00008{bottom:457.525650px;}
.y14_c00008{bottom:465.972000px;}
.y24_c00008{bottom:507.349650px;}
.y13_c00008{bottom:514.107000px;}
.y12_c00008{bottom:532.107000px;}
.y23_c00008{bottom:573.485550px;}
.y11_c00008{bottom:580.242000px;}
.y10_c00008{bottom:598.242000px;}
.y22_c00008{bottom:639.621300px;}
.yf_c00008{bottom:646.377000px;}
.ye_c00008{bottom:664.377000px;}
.y21_c00008{bottom:705.757200px;}
.yd_c00008{bottom:712.512000px;}
.yc_c00008{bottom:730.512000px;}
.y20_c00008{bottom:771.892950px;}
.yb_c00008{bottom:796.647000px;}
.y1f_c00008{bottom:838.028850px;}
.ya_c00008{bottom:844.782000px;}
.y9_c00008{bottom:862.782000px;}
.y1e_c00008{bottom:904.164600px;}
.y8_c00008{bottom:910.917000px;}
.y7_c00008{bottom:928.917000px;}
.y1d_c00008{bottom:970.300350px;}
.y6_c00008{bottom:977.052000px;}
.y5_c00008{bottom:995.052000px;}
.y1c_c00008{bottom:1036.436250px;}
.y4_c00008{bottom:1043.187000px;}
.y3_c00008{bottom:1061.187000px;}
.y1_c00008{bottom:1102.572150px;}
.y2_c00008{bottom:1109.322000px;}
.y1b_c00008{bottom:1118.884650px;}
.y32_c00008{bottom:1192.057050px;}
.h4_c00008{height:48.600000px;}
.h5_c00008{height:54.000000px;}
.h3_c00008{height:55.380000px;}
.h2_c00008{height:205.200000px;}
.h0_c00008{height:1262.835000px;}
.h1_c00008{height:1263.000000px;}
.w0_c00008{width:892.914000px;}
.w1_c00008{width:893.250000px;}
.x0_c00008{left:0.000000px;}
.x6_c00008{left:76.155450px;}
.x8_c00008{left:78.233550px;}
.x9_c00008{left:80.598750px;}
.x7_c00008{left:84.492450px;}
.x4_c00008{left:85.731600px;}
.x1_c00008{left:87.641100px;}
.x5_c00008{left:89.065800px;}
.x2_c00008{left:191.837700px;}
.x3_c00008{left:752.618550px;}
.xa_c00008{left:803.501100px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.v2_c00008{vertical-align:58.000000pt;}
.v1_c00008{vertical-align:87.999467pt;}
.ls3_c00008{letter-spacing:-10.133333pt;}
.ls2_c00008{letter-spacing:0.000000pt;}
.ls0_c00008{letter-spacing:0.266667pt;}
.ls1_c00008{letter-spacing:4.800000pt;}
.ws2_c00008{word-spacing:-12.960000pt;}
.ws1_c00008{word-spacing:-10.933333pt;}
.ws10_c00008{word-spacing:-9.066667pt;}
.ws13_c00008{word-spacing:-1.600000pt;}
.ws12_c00008{word-spacing:-0.266667pt;}
.ws11_c00008{word-spacing:0.000000pt;}
.ws14_c00008{word-spacing:10.133333pt;}
.ws0_c00008{word-spacing:125.858133pt;}
.wse_c00008{word-spacing:2095.122667pt;}
.ws7_c00008{word-spacing:2099.175467pt;}
.wsb_c00008{word-spacing:2102.325333pt;}
.wsf_c00008{word-spacing:2103.344533pt;}
.wsd_c00008{word-spacing:2104.960000pt;}
.ws9_c00008{word-spacing:2108.405333pt;}
.wsa_c00008{word-spacing:2110.634667pt;}
.ws5_c00008{word-spacing:2112.146667pt;}
.ws3_c00008{word-spacing:2112.956267pt;}
.wsc_c00008{word-spacing:2116.817067pt;}
.ws8_c00008{word-spacing:2122.226133pt;}
.ws4_c00008{word-spacing:2124.813333pt;}
.ws6_c00008{word-spacing:2138.289600pt;}
._1_c00008{margin-left:-8.266667pt;}
._7_c00008{margin-left:-6.933333pt;}
._2_c00008{margin-left:-5.600000pt;}
._5_c00008{margin-left:-4.261333pt;}
._3_c00008{margin-left:-3.205333pt;}
._4_c00008{margin-left:-2.138667pt;}
._0_c00008{margin-left:-1.066667pt;}
._6_c00008{width:1.066667pt;}
.fs2_c00008{font-size:48.000000pt;}
.fs1_c00008{font-size:53.333333pt;}
.fs0_c00008{font-size:202.666667pt;}
.y0_c00008{bottom:0.000000pt;}
.y2f_c00008{bottom:38.529200pt;}
.y2d_c00008{bottom:98.253067pt;}
.y2c_c00008{bottom:104.253067pt;}
.y2b_c00008{bottom:120.253067pt;}
.y2a_c00008{bottom:157.040533pt;}
.y29_c00008{bottom:163.040533pt;}
.y28_c00008{bottom:179.040533pt;}
.y2e_c00008{bottom:215.827867pt;}
.y1a_c00008{bottom:221.837333pt;}
.y19_c00008{bottom:237.837333pt;}
.y27_c00008{bottom:274.615333pt;}
.y18_c00008{bottom:296.624000pt;}
.y30_c00008{bottom:333.402667pt;}
.y17_c00008{bottom:339.410667pt;}
.y26_c00008{bottom:347.901467pt;}
.y16_c00008{bottom:355.410667pt;}
.y31_c00008{bottom:392.176000pt;}
.y15_c00008{bottom:398.197333pt;}
.y25_c00008{bottom:406.689467pt;}
.y14_c00008{bottom:414.197333pt;}
.y24_c00008{bottom:450.977467pt;}
.y13_c00008{bottom:456.984000pt;}
.y12_c00008{bottom:472.984000pt;}
.y23_c00008{bottom:509.764933pt;}
.y11_c00008{bottom:515.770667pt;}
.y10_c00008{bottom:531.770667pt;}
.y22_c00008{bottom:568.552267pt;}
.yf_c00008{bottom:574.557333pt;}
.ye_c00008{bottom:590.557333pt;}
.y21_c00008{bottom:627.339733pt;}
.yd_c00008{bottom:633.344000pt;}
.yc_c00008{bottom:649.344000pt;}
.y20_c00008{bottom:686.127067pt;}
.yb_c00008{bottom:708.130667pt;}
.y1f_c00008{bottom:744.914533pt;}
.ya_c00008{bottom:750.917333pt;}
.y9_c00008{bottom:766.917333pt;}
.y1e_c00008{bottom:803.701867pt;}
.y8_c00008{bottom:809.704000pt;}
.y7_c00008{bottom:825.704000pt;}
.y1d_c00008{bottom:862.489200pt;}
.y6_c00008{bottom:868.490667pt;}
.y5_c00008{bottom:884.490667pt;}
.y1c_c00008{bottom:921.276667pt;}
.y4_c00008{bottom:927.277333pt;}
.y3_c00008{bottom:943.277333pt;}
.y1_c00008{bottom:980.064133pt;}
.y2_c00008{bottom:986.064000pt;}
.y1b_c00008{bottom:994.564133pt;}
.y32_c00008{bottom:1059.606267pt;}
.h4_c00008{height:43.200000pt;}
.h5_c00008{height:48.000000pt;}
.h3_c00008{height:49.226667pt;}
.h2_c00008{height:182.400000pt;}
.h0_c00008{height:1122.520000pt;}
.h1_c00008{height:1122.666667pt;}
.w0_c00008{width:793.701333pt;}
.w1_c00008{width:794.000000pt;}
.x0_c00008{left:0.000000pt;}
.x6_c00008{left:67.693733pt;}
.x8_c00008{left:69.540933pt;}
.x9_c00008{left:71.643333pt;}
.x7_c00008{left:75.104400pt;}
.x4_c00008{left:76.205867pt;}
.x1_c00008{left:77.903200pt;}
.x5_c00008{left:79.169600pt;}
.x2_c00008{left:170.522400pt;}
.x3_c00008{left:668.994267pt;}
.xa_c00008{left:714.223200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5837081109e748d08613c80.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00009;src:url('chunks/assets/font_1381b2c058717f8a5d9071ec.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00009;src:url('chunks/assets/font_f6170b832f258e606669f185.woff2')format("woff");}.ff5_c00009{font-family:ff5_c00009;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00009;src:url('chunks/assets/font_87e583af21f8406388627f68.woff2')format("woff");}.ff6_c00009{font-family:ff6_c00009;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.v2_c00009{vertical-align:65.250000px;}
.v1_c00009{vertical-align:98.999400px;}
.ls3_c00009{letter-spacing:0.000000px;}
.ls0_c00009{letter-spacing:0.300000px;}
.ls4_c00009{letter-spacing:1.500000px;}
.ls2_c00009{letter-spacing:4.800000px;}
.ls1_c00009{letter-spacing:5.400000px;}
.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;}
}
.ws1_c00009{word-spacing:-14.580000px;}
.ws4_c00009{word-spacing:-12.960000px;}
.ws5_c00009{word-spacing:-10.200000px;}
.ws7_c00009{word-spacing:-1.800000px;}
.ws6_c00009{word-spacing:0.000000px;}
.ws0_c00009{word-spacing:143.530200px;}
.ws3_c00009{word-spacing:2359.520400px;}
.ws2_c00009{word-spacing:2366.361000px;}
._4_c00009{margin-left:-8.700000px;}
._3_c00009{margin-left:-7.500000px;}
._1_c00009{margin-left:-5.700000px;}
._0_c00009{margin-left:-3.600000px;}
._2_c00009{margin-left:-1.500000px;}
._5_c00009{width:1.800000px;}
.fc2_c00009{color:rgb(232,86,17);}
.fc3_c00009{color:rgb(255,255,255);}
.fc1_c00009{color:rgb(218,218,218);}
.fc0_c00009{color:rgb(233,83,14);}
.fs3_c00009{font-size:42.000000px;}
.fs4_c00009{font-size:48.000000px;}
.fs2_c00009{font-size:54.000000px;}
.fs1_c00009{font-size:60.000000px;}
.fs0_c00009{font-size:228.000000px;}
.y0_c00009{bottom:0.000000px;}
.y1b_c00009{bottom:41.250000px;}
.y1a_c00009{bottom:43.345350px;}
.y22_c00009{bottom:276.457050px;}
.y21_c00009{bottom:306.457050px;}
.y20_c00009{bottom:324.457050px;}
.y1f_c00009{bottom:342.457050px;}
.y1e_c00009{bottom:360.457050px;}
.y1d_c00009{bottom:378.457050px;}
.y1c_c00009{bottom:418.057050px;}
.y14_c00009{bottom:703.369350px;}
.yc_c00009{bottom:710.172000px;}
.y18_c00009{bottom:719.731350px;}
.yb_c00009{bottom:728.172000px;}
.y13_c00009{bottom:770.116350px;}
.ya_c00009{bottom:776.892000px;}
.y17_c00009{bottom:786.448350px;}
.y9_c00009{bottom:794.892000px;}
.y12_c00009{bottom:836.863350px;}
.y8_c00009{bottom:843.612000px;}
.y16_c00009{bottom:853.165350px;}
.y7_c00009{bottom:861.612000px;}
.y19_c00009{bottom:904.164600px;}
.ye_c00009{bottom:910.917000px;}
.yd_c00009{bottom:928.917000px;}
.y11_c00009{bottom:970.300350px;}
.y6_c00009{bottom:977.052000px;}
.y15_c00009{bottom:986.612850px;}
.y5_c00009{bottom:995.052000px;}
.y10_c00009{bottom:1036.436250px;}
.y4_c00009{bottom:1043.187000px;}
.y3_c00009{bottom:1061.187000px;}
.y1_c00009{bottom:1102.572150px;}
.y2_c00009{bottom:1109.322000px;}
.yf_c00009{bottom:1118.884650px;}
.y23_c00009{bottom:1192.057050px;}
.h6_c00009{height:39.270000px;}
.h8_c00009{height:43.200000px;}
.h7_c00009{height:45.600000px;}
.h4_c00009{height:48.600000px;}
.h5_c00009{height:54.000000px;}
.h3_c00009{height:55.380000px;}
.h2_c00009{height:205.200000px;}
.h0_c00009{height:1262.835000px;}
.h1_c00009{height:1263.000000px;}
.w0_c00009{width:892.914000px;}
.w1_c00009{width:893.250000px;}
.x0_c00009{left:0.000000px;}
.x6_c00009{left:81.342450px;}
.x4_c00009{left:83.052300px;}
.x5_c00009{left:85.389450px;}
.x1_c00009{left:88.125150px;}
.x2_c00009{left:191.837700px;}
.x9_c00009{left:645.236250px;}
.x8_c00009{left:693.217050px;}
.x3_c00009{left:752.618550px;}
.x7_c00009{left:798.566400px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.v2_c00009{vertical-align:58.000000pt;}
.v1_c00009{vertical-align:87.999467pt;}
.ls3_c00009{letter-spacing:0.000000pt;}
.ls0_c00009{letter-spacing:0.266667pt;}
.ls4_c00009{letter-spacing:1.333333pt;}
.ls2_c00009{letter-spacing:4.266667pt;}
.ls1_c00009{letter-spacing:4.800000pt;}
.ws1_c00009{word-spacing:-12.960000pt;}
.ws4_c00009{word-spacing:-11.520000pt;}
.ws5_c00009{word-spacing:-9.066667pt;}
.ws7_c00009{word-spacing:-1.600000pt;}
.ws6_c00009{word-spacing:0.000000pt;}
.ws0_c00009{word-spacing:127.582400pt;}
.ws3_c00009{word-spacing:2097.351467pt;}
.ws2_c00009{word-spacing:2103.432000pt;}
._4_c00009{margin-left:-7.733333pt;}
._3_c00009{margin-left:-6.666667pt;}
._1_c00009{margin-left:-5.066667pt;}
._0_c00009{margin-left:-3.200000pt;}
._2_c00009{margin-left:-1.333333pt;}
._5_c00009{width:1.600000pt;}
.fs3_c00009{font-size:37.333333pt;}
.fs4_c00009{font-size:42.666667pt;}
.fs2_c00009{font-size:48.000000pt;}
.fs1_c00009{font-size:53.333333pt;}
.fs0_c00009{font-size:202.666667pt;}
.y0_c00009{bottom:0.000000pt;}
.y1b_c00009{bottom:36.666667pt;}
.y1a_c00009{bottom:38.529200pt;}
.y22_c00009{bottom:245.739600pt;}
.y21_c00009{bottom:272.406267pt;}
.y20_c00009{bottom:288.406267pt;}
.y1f_c00009{bottom:304.406267pt;}
.y1e_c00009{bottom:320.406267pt;}
.y1d_c00009{bottom:336.406267pt;}
.y1c_c00009{bottom:371.606267pt;}
.y14_c00009{bottom:625.217200pt;}
.yc_c00009{bottom:631.264000pt;}
.y18_c00009{bottom:639.761200pt;}
.yb_c00009{bottom:647.264000pt;}
.y13_c00009{bottom:684.547867pt;}
.ya_c00009{bottom:690.570667pt;}
.y17_c00009{bottom:699.065200pt;}
.y9_c00009{bottom:706.570667pt;}
.y12_c00009{bottom:743.878533pt;}
.y8_c00009{bottom:749.877333pt;}
.y16_c00009{bottom:758.369200pt;}
.y7_c00009{bottom:765.877333pt;}
.y19_c00009{bottom:803.701867pt;}
.ye_c00009{bottom:809.704000pt;}
.yd_c00009{bottom:825.704000pt;}
.y11_c00009{bottom:862.489200pt;}
.y6_c00009{bottom:868.490667pt;}
.y15_c00009{bottom:876.989200pt;}
.y5_c00009{bottom:884.490667pt;}
.y10_c00009{bottom:921.276667pt;}
.y4_c00009{bottom:927.277333pt;}
.y3_c00009{bottom:943.277333pt;}
.y1_c00009{bottom:980.064133pt;}
.y2_c00009{bottom:986.064000pt;}
.yf_c00009{bottom:994.564133pt;}
.y23_c00009{bottom:1059.606267pt;}
.h6_c00009{height:34.906667pt;}
.h8_c00009{height:38.400000pt;}
.h7_c00009{height:40.533333pt;}
.h4_c00009{height:43.200000pt;}
.h5_c00009{height:48.000000pt;}
.h3_c00009{height:49.226667pt;}
.h2_c00009{height:182.400000pt;}
.h0_c00009{height:1122.520000pt;}
.h1_c00009{height:1122.666667pt;}
.w0_c00009{width:793.701333pt;}
.w1_c00009{width:794.000000pt;}
.x0_c00009{left:0.000000pt;}
.x6_c00009{left:72.304400pt;}
.x4_c00009{left:73.824267pt;}
.x5_c00009{left:75.901733pt;}
.x1_c00009{left:78.333467pt;}
.x2_c00009{left:170.522400pt;}
.x9_c00009{left:573.543333pt;}
.x8_c00009{left:616.192933pt;}
.x3_c00009{left:668.994267pt;}
.x7_c00009{left:709.836800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_d219d4c1976e9292b4fdff88.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00010;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00010;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00010{font-family:ff5_c00010;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls2_c00010{letter-spacing:0.000000px;}
.ls0_c00010{letter-spacing:0.864000px;}
.ls1_c00010{letter-spacing:1.200000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00010{word-spacing:-13.104000px;}
.ws0_c00010{word-spacing:-10.200000px;}
.ws5_c00010{word-spacing:-10.152000px;}
.ws7_c00010{word-spacing:-8.040000px;}
.ws6_c00010{word-spacing:-4.104000px;}
.ws3_c00010{word-spacing:-2.304000px;}
.ws4_c00010{word-spacing:-0.576000px;}
.ws2_c00010{word-spacing:0.000000px;}
._0_c00010{margin-left:-480.337200px;}
._7_c00010{margin-left:-15.600000px;}
._6_c00010{margin-left:-12.000000px;}
._3_c00010{margin-left:-8.784000px;}
._4_c00010{margin-left:-6.480000px;}
._1_c00010{margin-left:-4.200000px;}
._2_c00010{margin-left:-1.440000px;}
._5_c00010{width:10.152000px;}
.fc3_c00010{color:rgb(255,255,255);}
.fc2_c00010{color:rgb(233,83,14);}
.fc1_c00010{color:rgb(232,86,17);}
.fc0_c00010{color:rgb(60,60,59);}
.fs1_c00010{font-size:42.000000px;}
.fs0_c00010{font-size:60.000000px;}
.fs3_c00010{font-size:72.000000px;}
.fs4_c00010{font-size:120.000000px;}
.fs2_c00010{font-size:360.000000px;}
.y0_c00010{bottom:0.000000px;}
.y1_c00010{bottom:41.250000px;}
.yb_c00010{bottom:517.322700px;}
.ya_c00010{bottom:538.328700px;}
.y9_c00010{bottom:580.322700px;}
.y8_c00010{bottom:601.328700px;}
.y7_c00010{bottom:622.334700px;}
.y6_c00010{bottom:643.340700px;}
.y5_c00010{bottom:685.334700px;}
.y4_c00010{bottom:706.340700px;}
.y3_c00010{bottom:752.834700px;}
.yf_c00010{bottom:916.334700px;}
.ye_c00010{bottom:946.334700px;}
.yd_c00010{bottom:976.334700px;}
.yc_c00010{bottom:1006.334700px;}
.y2_c00010{bottom:1093.526700px;}
.h2_c00010{height:54.000000px;}
.h5_c00010{height:64.800000px;}
.h4_c00010{height:66.456000px;}
.h6_c00010{height:112.200000px;}
.h3_c00010{height:324.000000px;}
.h0_c00010{height:1262.835000px;}
.h1_c00010{height:1263.000000px;}
.w0_c00010{width:892.914000px;}
.w1_c00010{width:893.250000px;}
.x0_c00010{left:0.000000px;}
.x2_c00010{left:81.290250px;}
.x3_c00010{left:82.393650px;}
.x5_c00010{left:112.287450px;}
.x4_c00010{left:127.393650px;}
.x1_c00010{left:800.513850px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls2_c00010{letter-spacing:0.000000pt;}
.ls0_c00010{letter-spacing:0.768000pt;}
.ls1_c00010{letter-spacing:1.066667pt;}
.ws1_c00010{word-spacing:-11.648000pt;}
.ws0_c00010{word-spacing:-9.066667pt;}
.ws5_c00010{word-spacing:-9.024000pt;}
.ws7_c00010{word-spacing:-7.146667pt;}
.ws6_c00010{word-spacing:-3.648000pt;}
.ws3_c00010{word-spacing:-2.048000pt;}
.ws4_c00010{word-spacing:-0.512000pt;}
.ws2_c00010{word-spacing:0.000000pt;}
._0_c00010{margin-left:-426.966400pt;}
._7_c00010{margin-left:-13.866667pt;}
._6_c00010{margin-left:-10.666667pt;}
._3_c00010{margin-left:-7.808000pt;}
._4_c00010{margin-left:-5.760000pt;}
._1_c00010{margin-left:-3.733333pt;}
._2_c00010{margin-left:-1.280000pt;}
._5_c00010{width:9.024000pt;}
.fs1_c00010{font-size:37.333333pt;}
.fs0_c00010{font-size:53.333333pt;}
.fs3_c00010{font-size:64.000000pt;}
.fs4_c00010{font-size:106.666667pt;}
.fs2_c00010{font-size:320.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y1_c00010{bottom:36.666667pt;}
.yb_c00010{bottom:459.842400pt;}
.ya_c00010{bottom:478.514400pt;}
.y9_c00010{bottom:515.842400pt;}
.y8_c00010{bottom:534.514400pt;}
.y7_c00010{bottom:553.186400pt;}
.y6_c00010{bottom:571.858400pt;}
.y5_c00010{bottom:609.186400pt;}
.y4_c00010{bottom:627.858400pt;}
.y3_c00010{bottom:669.186400pt;}
.yf_c00010{bottom:814.519733pt;}
.ye_c00010{bottom:841.186400pt;}
.yd_c00010{bottom:867.853067pt;}
.yc_c00010{bottom:894.519733pt;}
.y2_c00010{bottom:972.023733pt;}
.h2_c00010{height:48.000000pt;}
.h5_c00010{height:57.600000pt;}
.h4_c00010{height:59.072000pt;}
.h6_c00010{height:99.733333pt;}
.h3_c00010{height:288.000000pt;}
.h0_c00010{height:1122.520000pt;}
.h1_c00010{height:1122.666667pt;}
.w0_c00010{width:793.701333pt;}
.w1_c00010{width:794.000000pt;}
.x0_c00010{left:0.000000pt;}
.x2_c00010{left:72.258000pt;}
.x3_c00010{left:73.238800pt;}
.x5_c00010{left:99.811067pt;}
.x4_c00010{left:113.238800pt;}
.x1_c00010{left:711.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.160000;font-style:normal;font-weight:normal;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_8044500461936b1776693626.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.199000;font-style:normal;font-weight:normal;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_3c493db09daed51ce0a69104.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00011;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff5_c00011{font-family:ff5_c00011;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls5_c00011{letter-spacing:-0.540000px;}
.ls4_c00011{letter-spacing:0.000000px;}
.ls0_c00011{letter-spacing:0.720000px;}
.ls1_c00011{letter-spacing:0.840000px;}
.ls3_c00011{letter-spacing:1.500000px;}
.ls2_c00011{letter-spacing:1.650000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00011{word-spacing:-21.060000px;}
.ws2_c00011{word-spacing:-17.640000px;}
.ws0_c00011{word-spacing:-10.200000px;}
.ws10_c00011{word-spacing:-4.536000px;}
.ws11_c00011{word-spacing:-3.456000px;}
.wsc_c00011{word-spacing:-2.304000px;}
.ws12_c00011{word-spacing:-1.500000px;}
.ws9_c00011{word-spacing:-1.440000px;}
.ws4_c00011{word-spacing:-0.840000px;}
.ws8_c00011{word-spacing:-0.576000px;}
.wsa_c00011{word-spacing:-0.288000px;}
.ws3_c00011{word-spacing:0.000000px;}
.ws5_c00011{word-spacing:2.880000px;}
.wsb_c00011{word-spacing:5.256000px;}
.wsd_c00011{word-spacing:5.400000px;}
.ws7_c00011{word-spacing:5.472000px;}
.wse_c00011{word-spacing:9.792000px;}
.ws6_c00011{word-spacing:10.800000px;}
.wsf_c00011{word-spacing:26.928000px;}
._0_c00011{margin-left:-480.336600px;}
._4_c00011{margin-left:-5.227200px;}
._1_c00011{margin-left:-4.200000px;}
._2_c00011{margin-left:-1.440000px;}
._3_c00011{width:1.108800px;}
._5_c00011{width:4.665600px;}
.fc3_c00011{color:rgb(233,83,14);}
.fc4_c00011{color:rgb(32,32,32);}
.fc2_c00011{color:rgb(0,0,0);}
.fc1_c00011{color:rgb(232,86,17);}
.fc5_c00011{color:rgb(157,157,156);}
.fc0_c00011{color:rgb(60,60,59);}
.fs1_c00011{font-size:42.000000px;}
.fs0_c00011{font-size:60.000000px;}
.fs5_c00011{font-size:66.000000px;}
.fs4_c00011{font-size:72.000000px;}
.fs3_c00011{font-size:84.000000px;}
.fs2_c00011{font-size:108.000000px;}
.y0_c00011{bottom:0.000000px;}
.y1_c00011{bottom:41.250000px;}
.y16_c00011{bottom:166.298700px;}
.y15_c00011{bottom:196.304700px;}
.y14_c00011{bottom:226.310700px;}
.y13_c00011{bottom:256.316700px;}
.y12_c00011{bottom:286.322700px;}
.y11_c00011{bottom:316.328700px;}
.y10_c00011{bottom:346.334700px;}
.yf_c00011{bottom:406.334700px;}
.ye_c00011{bottom:496.322700px;}
.yd_c00011{bottom:526.328700px;}
.yc_c00011{bottom:556.334700px;}
.yb_c00011{bottom:616.334700px;}
.ya_c00011{bottom:706.298700px;}
.y9_c00011{bottom:736.304700px;}
.y8_c00011{bottom:766.310700px;}
.y1b_c00011{bottom:766.334700px;}
.y7_c00011{bottom:796.316700px;}
.y1a_c00011{bottom:796.334700px;}
.y6_c00011{bottom:826.322700px;}
.y19_c00011{bottom:826.334700px;}
.y5_c00011{bottom:856.328700px;}
.y18_c00011{bottom:856.334700px;}
.y4_c00011{bottom:886.334700px;}
.y17_c00011{bottom:886.561950px;}
.y3_c00011{bottom:946.334700px;}
.y2_c00011{bottom:1016.084700px;}
.h6_c00011{height:50.292000px;}
.h2_c00011{height:54.000000px;}
.h5_c00011{height:64.800000px;}
.h4_c00011{height:78.540000px;}
.h3_c00011{height:100.980000px;}
.h0_c00011{height:1262.835000px;}
.h1_c00011{height:1263.000000px;}
.w0_c00011{width:892.914000px;}
.w1_c00011{width:893.250000px;}
.x0_c00011{left:0.000000px;}
.x2_c00011{left:82.500000px;}
.x3_c00011{left:90.000000px;}
.x4_c00011{left:106.500000px;}
.x5_c00011{left:675.611100px;}
.x1_c00011{left:798.038700px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls5_c00011{letter-spacing:-0.480000pt;}
.ls4_c00011{letter-spacing:0.000000pt;}
.ls0_c00011{letter-spacing:0.640000pt;}
.ls1_c00011{letter-spacing:0.746667pt;}
.ls3_c00011{letter-spacing:1.333333pt;}
.ls2_c00011{letter-spacing:1.466667pt;}
.ws1_c00011{word-spacing:-18.720000pt;}
.ws2_c00011{word-spacing:-15.680000pt;}
.ws0_c00011{word-spacing:-9.066667pt;}
.ws10_c00011{word-spacing:-4.032000pt;}
.ws11_c00011{word-spacing:-3.072000pt;}
.wsc_c00011{word-spacing:-2.048000pt;}
.ws12_c00011{word-spacing:-1.333333pt;}
.ws9_c00011{word-spacing:-1.280000pt;}
.ws4_c00011{word-spacing:-0.746667pt;}
.ws8_c00011{word-spacing:-0.512000pt;}
.wsa_c00011{word-spacing:-0.256000pt;}
.ws3_c00011{word-spacing:0.000000pt;}
.ws5_c00011{word-spacing:2.560000pt;}
.wsb_c00011{word-spacing:4.672000pt;}
.wsd_c00011{word-spacing:4.800000pt;}
.ws7_c00011{word-spacing:4.864000pt;}
.wse_c00011{word-spacing:8.704000pt;}
.ws6_c00011{word-spacing:9.600000pt;}
.wsf_c00011{word-spacing:23.936000pt;}
._0_c00011{margin-left:-426.965867pt;}
._4_c00011{margin-left:-4.646400pt;}
._1_c00011{margin-left:-3.733333pt;}
._2_c00011{margin-left:-1.280000pt;}
._3_c00011{width:0.985600pt;}
._5_c00011{width:4.147200pt;}
.fs1_c00011{font-size:37.333333pt;}
.fs0_c00011{font-size:53.333333pt;}
.fs5_c00011{font-size:58.666667pt;}
.fs4_c00011{font-size:64.000000pt;}
.fs3_c00011{font-size:74.666667pt;}
.fs2_c00011{font-size:96.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y1_c00011{bottom:36.666667pt;}
.y16_c00011{bottom:147.821067pt;}
.y15_c00011{bottom:174.493067pt;}
.y14_c00011{bottom:201.165067pt;}
.y13_c00011{bottom:227.837067pt;}
.y12_c00011{bottom:254.509067pt;}
.y11_c00011{bottom:281.181067pt;}
.y10_c00011{bottom:307.853067pt;}
.yf_c00011{bottom:361.186400pt;}
.ye_c00011{bottom:441.175733pt;}
.yd_c00011{bottom:467.847733pt;}
.yc_c00011{bottom:494.519733pt;}
.yb_c00011{bottom:547.853067pt;}
.ya_c00011{bottom:627.821067pt;}
.y9_c00011{bottom:654.493067pt;}
.y8_c00011{bottom:681.165067pt;}
.y1b_c00011{bottom:681.186400pt;}
.y7_c00011{bottom:707.837067pt;}
.y1a_c00011{bottom:707.853067pt;}
.y6_c00011{bottom:734.509067pt;}
.y19_c00011{bottom:734.519733pt;}
.y5_c00011{bottom:761.181067pt;}
.y18_c00011{bottom:761.186400pt;}
.y4_c00011{bottom:787.853067pt;}
.y17_c00011{bottom:788.055067pt;}
.y3_c00011{bottom:841.186400pt;}
.y2_c00011{bottom:903.186400pt;}
.h6_c00011{height:44.704000pt;}
.h2_c00011{height:48.000000pt;}
.h5_c00011{height:57.600000pt;}
.h4_c00011{height:69.813333pt;}
.h3_c00011{height:89.760000pt;}
.h0_c00011{height:1122.520000pt;}
.h1_c00011{height:1122.666667pt;}
.w0_c00011{width:793.701333pt;}
.w1_c00011{width:794.000000pt;}
.x0_c00011{left:0.000000pt;}
.x2_c00011{left:73.333333pt;}
.x3_c00011{left:80.000000pt;}
.x4_c00011{left:94.666667pt;}
.x5_c00011{left:600.543200pt;}
.x1_c00011{left:709.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls1_c00012{letter-spacing:0.000000px;}
.ls0_c00012{letter-spacing:0.720000px;}
.ls2_c00012{letter-spacing:0.840000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:-10.200000px;}
.ws6_c00012{word-spacing:-2.664000px;}
.ws5_c00012{word-spacing:-2.016000px;}
.ws2_c00012{word-spacing:-0.840000px;}
.ws1_c00012{word-spacing:0.000000px;}
.ws4_c00012{word-spacing:0.936000px;}
.ws9_c00012{word-spacing:3.384000px;}
.ws7_c00012{word-spacing:3.600000px;}
.ws8_c00012{word-spacing:4.104000px;}
.wsd_c00012{word-spacing:5.184000px;}
.wsc_c00012{word-spacing:6.408000px;}
.ws3_c00012{word-spacing:6.480000px;}
.wsa_c00012{word-spacing:7.200000px;}
.wsb_c00012{word-spacing:11.808000px;}
._0_c00012{margin-left:-480.337200px;}
._1_c00012{margin-left:-4.200000px;}
._2_c00012{margin-left:-2.100000px;}
._4_c00012{width:1.027200px;}
._3_c00012{width:2.834400px;}
.fc2_c00012{color:rgb(32,32,32);}
.fc1_c00012{color:rgb(232,86,17);}
.fc0_c00012{color:rgb(60,60,59);}
.fs1_c00012{font-size:42.000000px;}
.fs0_c00012{font-size:60.000000px;}
.fs3_c00012{font-size:72.000000px;}
.fs2_c00012{font-size:84.000000px;}
.y0_c00012{bottom:0.000000px;}
.y1_c00012{bottom:41.250000px;}
.yf_c00012{bottom:496.292700px;}
.ye_c00012{bottom:526.298700px;}
.yd_c00012{bottom:556.304700px;}
.yc_c00012{bottom:586.310700px;}
.yb_c00012{bottom:616.316700px;}
.ya_c00012{bottom:646.322700px;}
.y9_c00012{bottom:676.328700px;}
.y8_c00012{bottom:706.334700px;}
.y7_c00012{bottom:766.334700px;}
.y6_c00012{bottom:856.316700px;}
.y5_c00012{bottom:886.322700px;}
.y4_c00012{bottom:916.328700px;}
.y3_c00012{bottom:946.334700px;}
.y2_c00012{bottom:1006.334700px;}
.h2_c00012{height:54.000000px;}
.h4_c00012{height:64.800000px;}
.h3_c00012{height:78.540000px;}
.h0_c00012{height:1262.835000px;}
.h1_c00012{height:1263.000000px;}
.w0_c00012{width:892.914000px;}
.w1_c00012{width:893.250000px;}
.x0_c00012{left:0.000000px;}
.x2_c00012{left:90.000000px;}
.x3_c00012{left:106.500000px;}
.x1_c00012{left:797.888850px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls1_c00012{letter-spacing:0.000000pt;}
.ls0_c00012{letter-spacing:0.640000pt;}
.ls2_c00012{letter-spacing:0.746667pt;}
.ws0_c00012{word-spacing:-9.066667pt;}
.ws6_c00012{word-spacing:-2.368000pt;}
.ws5_c00012{word-spacing:-1.792000pt;}
.ws2_c00012{word-spacing:-0.746667pt;}
.ws1_c00012{word-spacing:0.000000pt;}
.ws4_c00012{word-spacing:0.832000pt;}
.ws9_c00012{word-spacing:3.008000pt;}
.ws7_c00012{word-spacing:3.200000pt;}
.ws8_c00012{word-spacing:3.648000pt;}
.wsd_c00012{word-spacing:4.608000pt;}
.wsc_c00012{word-spacing:5.696000pt;}
.ws3_c00012{word-spacing:5.760000pt;}
.wsa_c00012{word-spacing:6.400000pt;}
.wsb_c00012{word-spacing:10.496000pt;}
._0_c00012{margin-left:-426.966400pt;}
._1_c00012{margin-left:-3.733333pt;}
._2_c00012{margin-left:-1.866667pt;}
._4_c00012{width:0.913067pt;}
._3_c00012{width:2.519467pt;}
.fs1_c00012{font-size:37.333333pt;}
.fs0_c00012{font-size:53.333333pt;}
.fs3_c00012{font-size:64.000000pt;}
.fs2_c00012{font-size:74.666667pt;}
.y0_c00012{bottom:0.000000pt;}
.y1_c00012{bottom:36.666667pt;}
.yf_c00012{bottom:441.149067pt;}
.ye_c00012{bottom:467.821067pt;}
.yd_c00012{bottom:494.493067pt;}
.yc_c00012{bottom:521.165067pt;}
.yb_c00012{bottom:547.837067pt;}
.ya_c00012{bottom:574.509067pt;}
.y9_c00012{bottom:601.181067pt;}
.y8_c00012{bottom:627.853067pt;}
.y7_c00012{bottom:681.186400pt;}
.y6_c00012{bottom:761.170400pt;}
.y5_c00012{bottom:787.842400pt;}
.y4_c00012{bottom:814.514400pt;}
.y3_c00012{bottom:841.186400pt;}
.y2_c00012{bottom:894.519733pt;}
.h2_c00012{height:48.000000pt;}
.h4_c00012{height:57.600000pt;}
.h3_c00012{height:69.813333pt;}
.h0_c00012{height:1122.520000pt;}
.h1_c00012{height:1122.666667pt;}
.w0_c00012{width:793.701333pt;}
.w1_c00012{width:794.000000pt;}
.x0_c00012{left:0.000000pt;}
.x2_c00012{left:80.000000pt;}
.x3_c00012{left:94.666667pt;}
.x1_c00012{left:709.234533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d3858bf47fa96fd79ea398f.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.160000;font-style:normal;font-weight:normal;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_e04a0991b070062a3f74fe43.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00013;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls5_c00013{letter-spacing:-0.324000px;}
.ls4_c00013{letter-spacing:0.000000px;}
.ls0_c00013{letter-spacing:0.720000px;}
.ls1_c00013{letter-spacing:0.840000px;}
.ls3_c00013{letter-spacing:1.500000px;}
.ls2_c00013{letter-spacing:1.650000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00013{word-spacing:-21.276000px;}
.ws2_c00013{word-spacing:-17.640000px;}
.ws0_c00013{word-spacing:-10.200000px;}
.ws8_c00013{word-spacing:-4.032000px;}
.ws14_c00013{word-spacing:-2.952000px;}
.ws13_c00013{word-spacing:-1.800000px;}
.ws10_c00013{word-spacing:-1.584000px;}
.ws15_c00013{word-spacing:-1.500000px;}
.wsb_c00013{word-spacing:-1.368000px;}
.ws12_c00013{word-spacing:-0.936000px;}
.ws4_c00013{word-spacing:-0.840000px;}
.ws3_c00013{word-spacing:0.000000px;}
.wsf_c00013{word-spacing:1.008000px;}
.ws9_c00013{word-spacing:1.296000px;}
.ws11_c00013{word-spacing:1.872000px;}
.ws6_c00013{word-spacing:2.808000px;}
.wsa_c00013{word-spacing:6.552000px;}
.ws7_c00013{word-spacing:7.416000px;}
.wsc_c00013{word-spacing:10.008000px;}
.ws5_c00013{word-spacing:10.224000px;}
.wsd_c00013{word-spacing:10.800000px;}
.wse_c00013{word-spacing:17.424000px;}
._0_c00013{margin-left:-480.337200px;}
._6_c00013{margin-left:-7.380000px;}
._4_c00013{margin-left:-5.760000px;}
._1_c00013{margin-left:-4.200000px;}
._3_c00013{margin-left:-2.358000px;}
._2_c00013{margin-left:-1.134000px;}
._5_c00013{width:2.134800px;}
.fc3_c00013{color:rgb(32,32,32);}
.fc2_c00013{color:rgb(233,83,14);}
.fc1_c00013{color:rgb(232,86,17);}
.fc4_c00013{color:rgb(157,157,156);}
.fc0_c00013{color:rgb(60,60,59);}
.fs1_c00013{font-size:42.000000px;}
.fs0_c00013{font-size:60.000000px;}
.fs5_c00013{font-size:66.000000px;}
.fs4_c00013{font-size:72.000000px;}
.fs3_c00013{font-size:84.000000px;}
.fs2_c00013{font-size:108.000000px;}
.y0_c00013{bottom:0.000000px;}
.y1_c00013{bottom:41.250000px;}
.y16_c00013{bottom:136.298700px;}
.y15_c00013{bottom:166.304700px;}
.y14_c00013{bottom:196.310700px;}
.y13_c00013{bottom:226.316700px;}
.y12_c00013{bottom:256.322700px;}
.y11_c00013{bottom:286.328700px;}
.y10_c00013{bottom:316.334700px;}
.yf_c00013{bottom:376.334700px;}
.ye_c00013{bottom:466.322700px;}
.yd_c00013{bottom:496.328700px;}
.yc_c00013{bottom:526.334700px;}
.yb_c00013{bottom:586.334700px;}
.ya_c00013{bottom:676.298700px;}
.y9_c00013{bottom:706.304700px;}
.y8_c00013{bottom:736.310700px;}
.y1b_c00013{bottom:736.334700px;}
.y7_c00013{bottom:766.316700px;}
.y1a_c00013{bottom:766.334700px;}
.y6_c00013{bottom:796.322700px;}
.y19_c00013{bottom:796.334700px;}
.y5_c00013{bottom:826.328700px;}
.y18_c00013{bottom:826.334700px;}
.y4_c00013{bottom:856.334700px;}
.y17_c00013{bottom:856.561950px;}
.y3_c00013{bottom:916.334700px;}
.y2_c00013{bottom:1006.334700px;}
.h6_c00013{height:50.292000px;}
.h2_c00013{height:54.000000px;}
.h5_c00013{height:64.800000px;}
.h4_c00013{height:78.540000px;}
.h3_c00013{height:100.980000px;}
.h0_c00013{height:1262.835000px;}
.h1_c00013{height:1263.000000px;}
.w0_c00013{width:892.914000px;}
.w1_c00013{width:893.250000px;}
.x0_c00013{left:0.000000px;}
.x2_c00013{left:82.500000px;}
.x3_c00013{left:90.000000px;}
.x4_c00013{left:106.500000px;}
.x5_c00013{left:675.611100px;}
.x1_c00013{left:796.913850px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls5_c00013{letter-spacing:-0.288000pt;}
.ls4_c00013{letter-spacing:0.000000pt;}
.ls0_c00013{letter-spacing:0.640000pt;}
.ls1_c00013{letter-spacing:0.746667pt;}
.ls3_c00013{letter-spacing:1.333333pt;}
.ls2_c00013{letter-spacing:1.466667pt;}
.ws1_c00013{word-spacing:-18.912000pt;}
.ws2_c00013{word-spacing:-15.680000pt;}
.ws0_c00013{word-spacing:-9.066667pt;}
.ws8_c00013{word-spacing:-3.584000pt;}
.ws14_c00013{word-spacing:-2.624000pt;}
.ws13_c00013{word-spacing:-1.600000pt;}
.ws10_c00013{word-spacing:-1.408000pt;}
.ws15_c00013{word-spacing:-1.333333pt;}
.wsb_c00013{word-spacing:-1.216000pt;}
.ws12_c00013{word-spacing:-0.832000pt;}
.ws4_c00013{word-spacing:-0.746667pt;}
.ws3_c00013{word-spacing:0.000000pt;}
.wsf_c00013{word-spacing:0.896000pt;}
.ws9_c00013{word-spacing:1.152000pt;}
.ws11_c00013{word-spacing:1.664000pt;}
.ws6_c00013{word-spacing:2.496000pt;}
.wsa_c00013{word-spacing:5.824000pt;}
.ws7_c00013{word-spacing:6.592000pt;}
.wsc_c00013{word-spacing:8.896000pt;}
.ws5_c00013{word-spacing:9.088000pt;}
.wsd_c00013{word-spacing:9.600000pt;}
.wse_c00013{word-spacing:15.488000pt;}
._0_c00013{margin-left:-426.966400pt;}
._6_c00013{margin-left:-6.560000pt;}
._4_c00013{margin-left:-5.120000pt;}
._1_c00013{margin-left:-3.733333pt;}
._3_c00013{margin-left:-2.096000pt;}
._2_c00013{margin-left:-1.008000pt;}
._5_c00013{width:1.897600pt;}
.fs1_c00013{font-size:37.333333pt;}
.fs0_c00013{font-size:53.333333pt;}
.fs5_c00013{font-size:58.666667pt;}
.fs4_c00013{font-size:64.000000pt;}
.fs3_c00013{font-size:74.666667pt;}
.fs2_c00013{font-size:96.000000pt;}
.y0_c00013{bottom:0.000000pt;}
.y1_c00013{bottom:36.666667pt;}
.y16_c00013{bottom:121.154400pt;}
.y15_c00013{bottom:147.826400pt;}
.y14_c00013{bottom:174.498400pt;}
.y13_c00013{bottom:201.170400pt;}
.y12_c00013{bottom:227.842400pt;}
.y11_c00013{bottom:254.514400pt;}
.y10_c00013{bottom:281.186400pt;}
.yf_c00013{bottom:334.519733pt;}
.ye_c00013{bottom:414.509067pt;}
.yd_c00013{bottom:441.181067pt;}
.yc_c00013{bottom:467.853067pt;}
.yb_c00013{bottom:521.186400pt;}
.ya_c00013{bottom:601.154400pt;}
.y9_c00013{bottom:627.826400pt;}
.y8_c00013{bottom:654.498400pt;}
.y1b_c00013{bottom:654.519733pt;}
.y7_c00013{bottom:681.170400pt;}
.y1a_c00013{bottom:681.186400pt;}
.y6_c00013{bottom:707.842400pt;}
.y19_c00013{bottom:707.853067pt;}
.y5_c00013{bottom:734.514400pt;}
.y18_c00013{bottom:734.519733pt;}
.y4_c00013{bottom:761.186400pt;}
.y17_c00013{bottom:761.388400pt;}
.y3_c00013{bottom:814.519733pt;}
.y2_c00013{bottom:894.519733pt;}
.h6_c00013{height:44.704000pt;}
.h2_c00013{height:48.000000pt;}
.h5_c00013{height:57.600000pt;}
.h4_c00013{height:69.813333pt;}
.h3_c00013{height:89.760000pt;}
.h0_c00013{height:1122.520000pt;}
.h1_c00013{height:1122.666667pt;}
.w0_c00013{width:793.701333pt;}
.w1_c00013{width:794.000000pt;}
.x0_c00013{left:0.000000pt;}
.x2_c00013{left:73.333333pt;}
.x3_c00013{left:80.000000pt;}
.x4_c00013{left:94.666667pt;}
.x5_c00013{left:600.543200pt;}
.x1_c00013{left:708.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09baf8cd2945c6e6d5da27e7.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls1_c00014{letter-spacing:0.000000px;}
.ls0_c00014{letter-spacing:0.720000px;}
.ls2_c00014{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws3_c00014{word-spacing:-4.392000px;}
.ws2_c00014{word-spacing:-0.840000px;}
.ws1_c00014{word-spacing:0.000000px;}
.wsa_c00014{word-spacing:0.648000px;}
.ws4_c00014{word-spacing:3.024000px;}
.ws8_c00014{word-spacing:4.824000px;}
.ws9_c00014{word-spacing:5.184000px;}
.ws6_c00014{word-spacing:6.192000px;}
.ws5_c00014{word-spacing:6.408000px;}
.ws7_c00014{word-spacing:10.080000px;}
._0_c00014{margin-left:-480.336600px;}
._1_c00014{margin-left:-4.200000px;}
._2_c00014{margin-left:-1.432800px;}
.fc2_c00014{color:rgb(32,32,32);}
.fc1_c00014{color:rgb(232,86,17);}
.fc0_c00014{color:rgb(60,60,59);}
.fs1_c00014{font-size:42.000000px;}
.fs0_c00014{font-size:60.000000px;}
.fs3_c00014{font-size:72.000000px;}
.fs2_c00014{font-size:84.000000px;}
.y0_c00014{bottom:0.000000px;}
.y1_c00014{bottom:41.250000px;}
.yd_c00014{bottom:556.298700px;}
.yc_c00014{bottom:586.304700px;}
.yb_c00014{bottom:616.310700px;}
.ya_c00014{bottom:646.316700px;}
.y9_c00014{bottom:676.322700px;}
.y8_c00014{bottom:706.328700px;}
.y7_c00014{bottom:736.334700px;}
.y6_c00014{bottom:796.334700px;}
.y5_c00014{bottom:886.322700px;}
.y4_c00014{bottom:916.328700px;}
.y3_c00014{bottom:946.334700px;}
.y2_c00014{bottom:1006.334700px;}
.h2_c00014{height:54.000000px;}
.h4_c00014{height:64.800000px;}
.h3_c00014{height:78.540000px;}
.h0_c00014{height:1262.835000px;}
.h1_c00014{height:1263.000000px;}
.w0_c00014{width:892.914000px;}
.w1_c00014{width:893.250000px;}
.x0_c00014{left:0.000000px;}
.x2_c00014{left:90.000000px;}
.x3_c00014{left:106.500000px;}
.x1_c00014{left:797.963700px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls1_c00014{letter-spacing:0.000000pt;}
.ls0_c00014{letter-spacing:0.640000pt;}
.ls2_c00014{letter-spacing:0.746667pt;}
.ws0_c00014{word-spacing:-9.066667pt;}
.ws3_c00014{word-spacing:-3.904000pt;}
.ws2_c00014{word-spacing:-0.746667pt;}
.ws1_c00014{word-spacing:0.000000pt;}
.wsa_c00014{word-spacing:0.576000pt;}
.ws4_c00014{word-spacing:2.688000pt;}
.ws8_c00014{word-spacing:4.288000pt;}
.ws9_c00014{word-spacing:4.608000pt;}
.ws6_c00014{word-spacing:5.504000pt;}
.ws5_c00014{word-spacing:5.696000pt;}
.ws7_c00014{word-spacing:8.960000pt;}
._0_c00014{margin-left:-426.965867pt;}
._1_c00014{margin-left:-3.733333pt;}
._2_c00014{margin-left:-1.273600pt;}
.fs1_c00014{font-size:37.333333pt;}
.fs0_c00014{font-size:53.333333pt;}
.fs3_c00014{font-size:64.000000pt;}
.fs2_c00014{font-size:74.666667pt;}
.y0_c00014{bottom:0.000000pt;}
.y1_c00014{bottom:36.666667pt;}
.yd_c00014{bottom:494.487733pt;}
.yc_c00014{bottom:521.159733pt;}
.yb_c00014{bottom:547.831733pt;}
.ya_c00014{bottom:574.503733pt;}
.y9_c00014{bottom:601.175733pt;}
.y8_c00014{bottom:627.847733pt;}
.y7_c00014{bottom:654.519733pt;}
.y6_c00014{bottom:707.853067pt;}
.y5_c00014{bottom:787.842400pt;}
.y4_c00014{bottom:814.514400pt;}
.y3_c00014{bottom:841.186400pt;}
.y2_c00014{bottom:894.519733pt;}
.h2_c00014{height:48.000000pt;}
.h4_c00014{height:57.600000pt;}
.h3_c00014{height:69.813333pt;}
.h0_c00014{height:1122.520000pt;}
.h1_c00014{height:1122.666667pt;}
.w0_c00014{width:793.701333pt;}
.w1_c00014{width:794.000000pt;}
.x0_c00014{left:0.000000pt;}
.x2_c00014{left:80.000000pt;}
.x3_c00014{left:94.666667pt;}
.x1_c00014{left:709.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.160000;font-style:normal;font-weight:normal;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_d219d4c1976e9292b4fdff88.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00015;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00015{font-family:ff4_c00015;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00015;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00015{font-family:ff5_c00015;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls2_c00015{letter-spacing:0.000000px;}
.ls0_c00015{letter-spacing:0.864000px;}
.ls1_c00015{letter-spacing:1.200000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00015{word-spacing:-13.104000px;}
.ws0_c00015{word-spacing:-10.200000px;}
.ws4_c00015{word-spacing:-8.400000px;}
.ws3_c00015{word-spacing:-0.864000px;}
.ws2_c00015{word-spacing:0.000000px;}
._0_c00015{margin-left:-480.336600px;}
._3_c00015{margin-left:-6.480000px;}
._1_c00015{margin-left:-4.200000px;}
._2_c00015{margin-left:-1.440000px;}
._4_c00015{width:1.800000px;}
.fc3_c00015{color:rgb(255,255,255);}
.fc2_c00015{color:rgb(233,83,14);}
.fc1_c00015{color:rgb(232,86,17);}
.fc0_c00015{color:rgb(60,60,59);}
.fs1_c00015{font-size:42.000000px;}
.fs0_c00015{font-size:60.000000px;}
.fs3_c00015{font-size:72.000000px;}
.fs4_c00015{font-size:120.000000px;}
.fs2_c00015{font-size:360.000000px;}
.y0_c00015{bottom:0.000000px;}
.y1_c00015{bottom:41.250000px;}
.yf_c00015{bottom:394.292700px;}
.ye_c00015{bottom:415.298700px;}
.yd_c00015{bottom:436.304700px;}
.yc_c00015{bottom:484.310700px;}
.yb_c00015{bottom:505.316700px;}
.ya_c00015{bottom:526.322700px;}
.y9_c00015{bottom:574.328700px;}
.y8_c00015{bottom:595.334700px;}
.y7_c00015{bottom:616.340700px;}
.y6_c00015{bottom:663.734700px;}
.y5_c00015{bottom:685.334700px;}
.y4_c00015{bottom:706.340700px;}
.y3_c00015{bottom:752.834700px;}
.y13_c00015{bottom:916.334700px;}
.y12_c00015{bottom:946.334700px;}
.y11_c00015{bottom:976.334700px;}
.y10_c00015{bottom:1006.334700px;}
.y2_c00015{bottom:1093.526700px;}
.h2_c00015{height:54.000000px;}
.h5_c00015{height:64.800000px;}
.h4_c00015{height:66.456000px;}
.h6_c00015{height:112.200000px;}
.h3_c00015{height:324.000000px;}
.h0_c00015{height:1262.835000px;}
.h1_c00015{height:1263.000000px;}
.w0_c00015{width:892.914000px;}
.w1_c00015{width:893.250000px;}
.x0_c00015{left:0.000000px;}
.x2_c00015{left:81.290250px;}
.x3_c00015{left:82.393650px;}
.x5_c00015{left:112.287450px;}
.x4_c00015{left:127.393650px;}
.x1_c00015{left:796.838700px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls2_c00015{letter-spacing:0.000000pt;}
.ls0_c00015{letter-spacing:0.768000pt;}
.ls1_c00015{letter-spacing:1.066667pt;}
.ws1_c00015{word-spacing:-11.648000pt;}
.ws0_c00015{word-spacing:-9.066667pt;}
.ws4_c00015{word-spacing:-7.466667pt;}
.ws3_c00015{word-spacing:-0.768000pt;}
.ws2_c00015{word-spacing:0.000000pt;}
._0_c00015{margin-left:-426.965867pt;}
._3_c00015{margin-left:-5.760000pt;}
._1_c00015{margin-left:-3.733333pt;}
._2_c00015{margin-left:-1.280000pt;}
._4_c00015{width:1.600000pt;}
.fs1_c00015{font-size:37.333333pt;}
.fs0_c00015{font-size:53.333333pt;}
.fs3_c00015{font-size:64.000000pt;}
.fs4_c00015{font-size:106.666667pt;}
.fs2_c00015{font-size:320.000000pt;}
.y0_c00015{bottom:0.000000pt;}
.y1_c00015{bottom:36.666667pt;}
.yf_c00015{bottom:350.482400pt;}
.ye_c00015{bottom:369.154400pt;}
.yd_c00015{bottom:387.826400pt;}
.yc_c00015{bottom:430.498400pt;}
.yb_c00015{bottom:449.170400pt;}
.ya_c00015{bottom:467.842400pt;}
.y9_c00015{bottom:510.514400pt;}
.y8_c00015{bottom:529.186400pt;}
.y7_c00015{bottom:547.858400pt;}
.y6_c00015{bottom:589.986400pt;}
.y5_c00015{bottom:609.186400pt;}
.y4_c00015{bottom:627.858400pt;}
.y3_c00015{bottom:669.186400pt;}
.y13_c00015{bottom:814.519733pt;}
.y12_c00015{bottom:841.186400pt;}
.y11_c00015{bottom:867.853067pt;}
.y10_c00015{bottom:894.519733pt;}
.y2_c00015{bottom:972.023733pt;}
.h2_c00015{height:48.000000pt;}
.h5_c00015{height:57.600000pt;}
.h4_c00015{height:59.072000pt;}
.h6_c00015{height:99.733333pt;}
.h3_c00015{height:288.000000pt;}
.h0_c00015{height:1122.520000pt;}
.h1_c00015{height:1122.666667pt;}
.w0_c00015{width:793.701333pt;}
.w1_c00015{width:794.000000pt;}
.x0_c00015{left:0.000000pt;}
.x2_c00015{left:72.258000pt;}
.x3_c00015{left:73.238800pt;}
.x5_c00015{left:99.811067pt;}
.x4_c00015{left:113.238800pt;}
.x1_c00015{left:708.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.160000;font-style:normal;font-weight:normal;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_8044500461936b1776693626.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00016;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_c9b8fdba265e8fff572ae7ce.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00016{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls5_c00016{letter-spacing:-0.540000px;}
.ls4_c00016{letter-spacing:0.000000px;}
.ls0_c00016{letter-spacing:0.720000px;}
.ls1_c00016{letter-spacing:0.840000px;}
.ls3_c00016{letter-spacing:1.500000px;}
.ls2_c00016{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00016{word-spacing:-21.060000px;}
.ws2_c00016{word-spacing:-17.640000px;}
.ws3_c00016{word-spacing:-12.960000px;}
.ws4_c00016{word-spacing:-11.700000px;}
.ws0_c00016{word-spacing:-10.200000px;}
.ws16_c00016{word-spacing:-1.500000px;}
.ws14_c00016{word-spacing:-1.152000px;}
.ws6_c00016{word-spacing:-0.840000px;}
.ws15_c00016{word-spacing:-0.720000px;}
.ws5_c00016{word-spacing:0.000000px;}
.ws10_c00016{word-spacing:0.504000px;}
.wsf_c00016{word-spacing:0.792000px;}
.ws8_c00016{word-spacing:1.008000px;}
.wse_c00016{word-spacing:1.296000px;}
.ws7_c00016{word-spacing:3.816000px;}
.ws11_c00016{word-spacing:3.960000px;}
.ws13_c00016{word-spacing:5.112000px;}
.wsa_c00016{word-spacing:6.264000px;}
.wsc_c00016{word-spacing:6.840000px;}
.ws9_c00016{word-spacing:7.632000px;}
.wsb_c00016{word-spacing:8.280000px;}
.ws12_c00016{word-spacing:8.640000px;}
.wsd_c00016{word-spacing:12.888000px;}
._0_c00016{margin-left:-480.336600px;}
._1_c00016{margin-left:-4.200000px;}
._3_c00016{margin-left:-2.460000px;}
._2_c00016{margin-left:-1.440000px;}
.fc3_c00016{color:rgb(32,32,32);}
.fc2_c00016{color:rgb(233,83,14);}
.fc1_c00016{color:rgb(232,86,17);}
.fc4_c00016{color:rgb(157,157,156);}
.fc0_c00016{color:rgb(60,60,59);}
.fs1_c00016{font-size:42.000000px;}
.fs0_c00016{font-size:60.000000px;}
.fs5_c00016{font-size:66.000000px;}
.fs4_c00016{font-size:72.000000px;}
.fs3_c00016{font-size:84.000000px;}
.fs2_c00016{font-size:108.000000px;}
.y0_c00016{bottom:0.000000px;}
.y1_c00016{bottom:41.250000px;}
.y16_c00016{bottom:136.304700px;}
.y15_c00016{bottom:166.310700px;}
.y14_c00016{bottom:196.316700px;}
.y13_c00016{bottom:226.322700px;}
.y12_c00016{bottom:256.328700px;}
.y11_c00016{bottom:286.334700px;}
.y10_c00016{bottom:346.334700px;}
.yf_c00016{bottom:436.316700px;}
.ye_c00016{bottom:466.322700px;}
.yd_c00016{bottom:496.328700px;}
.yc_c00016{bottom:526.334700px;}
.yb_c00016{bottom:586.334700px;}
.ya_c00016{bottom:676.298700px;}
.y9_c00016{bottom:706.304700px;}
.y1c_c00016{bottom:706.334700px;}
.y8_c00016{bottom:736.310700px;}
.y1b_c00016{bottom:736.334700px;}
.y7_c00016{bottom:766.316700px;}
.y1a_c00016{bottom:766.334700px;}
.y6_c00016{bottom:796.322700px;}
.y19_c00016{bottom:796.334700px;}
.y5_c00016{bottom:826.328700px;}
.y18_c00016{bottom:826.334700px;}
.y4_c00016{bottom:856.334700px;}
.y17_c00016{bottom:856.561950px;}
.y3_c00016{bottom:916.334700px;}
.y2_c00016{bottom:1006.334700px;}
.h6_c00016{height:50.292000px;}
.h2_c00016{height:54.000000px;}
.h5_c00016{height:64.800000px;}
.h4_c00016{height:78.540000px;}
.h3_c00016{height:100.980000px;}
.h0_c00016{height:1262.835000px;}
.h1_c00016{height:1263.000000px;}
.w0_c00016{width:892.914000px;}
.w1_c00016{width:893.250000px;}
.x0_c00016{left:0.000000px;}
.x2_c00016{left:82.500000px;}
.x3_c00016{left:90.000000px;}
.x4_c00016{left:106.500000px;}
.x5_c00016{left:675.611100px;}
.x1_c00016{left:798.938700px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls5_c00016{letter-spacing:-0.480000pt;}
.ls4_c00016{letter-spacing:0.000000pt;}
.ls0_c00016{letter-spacing:0.640000pt;}
.ls1_c00016{letter-spacing:0.746667pt;}
.ls3_c00016{letter-spacing:1.333333pt;}
.ls2_c00016{letter-spacing:1.466667pt;}
.ws1_c00016{word-spacing:-18.720000pt;}
.ws2_c00016{word-spacing:-15.680000pt;}
.ws3_c00016{word-spacing:-11.520000pt;}
.ws4_c00016{word-spacing:-10.400000pt;}
.ws0_c00016{word-spacing:-9.066667pt;}
.ws16_c00016{word-spacing:-1.333333pt;}
.ws14_c00016{word-spacing:-1.024000pt;}
.ws6_c00016{word-spacing:-0.746667pt;}
.ws15_c00016{word-spacing:-0.640000pt;}
.ws5_c00016{word-spacing:0.000000pt;}
.ws10_c00016{word-spacing:0.448000pt;}
.wsf_c00016{word-spacing:0.704000pt;}
.ws8_c00016{word-spacing:0.896000pt;}
.wse_c00016{word-spacing:1.152000pt;}
.ws7_c00016{word-spacing:3.392000pt;}
.ws11_c00016{word-spacing:3.520000pt;}
.ws13_c00016{word-spacing:4.544000pt;}
.wsa_c00016{word-spacing:5.568000pt;}
.wsc_c00016{word-spacing:6.080000pt;}
.ws9_c00016{word-spacing:6.784000pt;}
.wsb_c00016{word-spacing:7.360000pt;}
.ws12_c00016{word-spacing:7.680000pt;}
.wsd_c00016{word-spacing:11.456000pt;}
._0_c00016{margin-left:-426.965867pt;}
._1_c00016{margin-left:-3.733333pt;}
._3_c00016{margin-left:-2.186667pt;}
._2_c00016{margin-left:-1.280000pt;}
.fs1_c00016{font-size:37.333333pt;}
.fs0_c00016{font-size:53.333333pt;}
.fs5_c00016{font-size:58.666667pt;}
.fs4_c00016{font-size:64.000000pt;}
.fs3_c00016{font-size:74.666667pt;}
.fs2_c00016{font-size:96.000000pt;}
.y0_c00016{bottom:0.000000pt;}
.y1_c00016{bottom:36.666667pt;}
.y16_c00016{bottom:121.159733pt;}
.y15_c00016{bottom:147.831733pt;}
.y14_c00016{bottom:174.503733pt;}
.y13_c00016{bottom:201.175733pt;}
.y12_c00016{bottom:227.847733pt;}
.y11_c00016{bottom:254.519733pt;}
.y10_c00016{bottom:307.853067pt;}
.yf_c00016{bottom:387.837067pt;}
.ye_c00016{bottom:414.509067pt;}
.yd_c00016{bottom:441.181067pt;}
.yc_c00016{bottom:467.853067pt;}
.yb_c00016{bottom:521.186400pt;}
.ya_c00016{bottom:601.154400pt;}
.y9_c00016{bottom:627.826400pt;}
.y1c_c00016{bottom:627.853067pt;}
.y8_c00016{bottom:654.498400pt;}
.y1b_c00016{bottom:654.519733pt;}
.y7_c00016{bottom:681.170400pt;}
.y1a_c00016{bottom:681.186400pt;}
.y6_c00016{bottom:707.842400pt;}
.y19_c00016{bottom:707.853067pt;}
.y5_c00016{bottom:734.514400pt;}
.y18_c00016{bottom:734.519733pt;}
.y4_c00016{bottom:761.186400pt;}
.y17_c00016{bottom:761.388400pt;}
.y3_c00016{bottom:814.519733pt;}
.y2_c00016{bottom:894.519733pt;}
.h6_c00016{height:44.704000pt;}
.h2_c00016{height:48.000000pt;}
.h5_c00016{height:57.600000pt;}
.h4_c00016{height:69.813333pt;}
.h3_c00016{height:89.760000pt;}
.h0_c00016{height:1122.520000pt;}
.h1_c00016{height:1122.666667pt;}
.w0_c00016{width:793.701333pt;}
.w1_c00016{width:794.000000pt;}
.x0_c00016{left:0.000000pt;}
.x2_c00016{left:73.333333pt;}
.x3_c00016{left:80.000000pt;}
.x4_c00016{left:94.666667pt;}
.x5_c00016{left:600.543200pt;}
.x1_c00016{left:710.167733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls1_c00017{letter-spacing:0.000000px;}
.ls0_c00017{letter-spacing:0.720000px;}
.ls2_c00017{letter-spacing:0.840000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:-10.200000px;}
.ws2_c00017{word-spacing:-0.840000px;}
.ws8_c00017{word-spacing:-0.720000px;}
.ws1_c00017{word-spacing:0.000000px;}
.ws5_c00017{word-spacing:0.360000px;}
.ws4_c00017{word-spacing:1.296000px;}
.wsc_c00017{word-spacing:2.088000px;}
.ws3_c00017{word-spacing:2.592000px;}
.wsb_c00017{word-spacing:2.664000px;}
.wsd_c00017{word-spacing:3.600000px;}
.ws9_c00017{word-spacing:3.888000px;}
.ws6_c00017{word-spacing:5.256000px;}
.wsa_c00017{word-spacing:9.360000px;}
.ws7_c00017{word-spacing:20.736000px;}
._0_c00017{margin-left:-480.337200px;}
._1_c00017{margin-left:-4.200000px;}
._2_c00017{margin-left:-1.440000px;}
._3_c00017{width:10.735200px;}
.fc2_c00017{color:rgb(32,32,32);}
.fc1_c00017{color:rgb(232,86,17);}
.fc0_c00017{color:rgb(60,60,59);}
.fs1_c00017{font-size:42.000000px;}
.fs0_c00017{font-size:60.000000px;}
.fs3_c00017{font-size:72.000000px;}
.fs2_c00017{font-size:84.000000px;}
.y0_c00017{bottom:0.000000px;}
.y1_c00017{bottom:41.250000px;}
.y10_c00017{bottom:466.328700px;}
.yf_c00017{bottom:496.334700px;}
.ye_c00017{bottom:556.334700px;}
.yd_c00017{bottom:646.274700px;}
.yc_c00017{bottom:676.280700px;}
.yb_c00017{bottom:706.286700px;}
.ya_c00017{bottom:736.292700px;}
.y9_c00017{bottom:766.298700px;}
.y8_c00017{bottom:796.304700px;}
.y7_c00017{bottom:826.310700px;}
.y6_c00017{bottom:856.316700px;}
.y5_c00017{bottom:886.322700px;}
.y4_c00017{bottom:916.328700px;}
.y3_c00017{bottom:946.334700px;}
.y2_c00017{bottom:1006.334700px;}
.h2_c00017{height:54.000000px;}
.h4_c00017{height:64.800000px;}
.h3_c00017{height:78.540000px;}
.h0_c00017{height:1262.835000px;}
.h1_c00017{height:1263.000000px;}
.w0_c00017{width:892.914000px;}
.w1_c00017{width:893.250000px;}
.x0_c00017{left:0.000000px;}
.x2_c00017{left:90.000000px;}
.x3_c00017{left:106.500000px;}
.x1_c00017{left:796.913850px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls1_c00017{letter-spacing:0.000000pt;}
.ls0_c00017{letter-spacing:0.640000pt;}
.ls2_c00017{letter-spacing:0.746667pt;}
.ws0_c00017{word-spacing:-9.066667pt;}
.ws2_c00017{word-spacing:-0.746667pt;}
.ws8_c00017{word-spacing:-0.640000pt;}
.ws1_c00017{word-spacing:0.000000pt;}
.ws5_c00017{word-spacing:0.320000pt;}
.ws4_c00017{word-spacing:1.152000pt;}
.wsc_c00017{word-spacing:1.856000pt;}
.ws3_c00017{word-spacing:2.304000pt;}
.wsb_c00017{word-spacing:2.368000pt;}
.wsd_c00017{word-spacing:3.200000pt;}
.ws9_c00017{word-spacing:3.456000pt;}
.ws6_c00017{word-spacing:4.672000pt;}
.wsa_c00017{word-spacing:8.320000pt;}
.ws7_c00017{word-spacing:18.432000pt;}
._0_c00017{margin-left:-426.966400pt;}
._1_c00017{margin-left:-3.733333pt;}
._2_c00017{margin-left:-1.280000pt;}
._3_c00017{width:9.542400pt;}
.fs1_c00017{font-size:37.333333pt;}
.fs0_c00017{font-size:53.333333pt;}
.fs3_c00017{font-size:64.000000pt;}
.fs2_c00017{font-size:74.666667pt;}
.y0_c00017{bottom:0.000000pt;}
.y1_c00017{bottom:36.666667pt;}
.y10_c00017{bottom:414.514400pt;}
.yf_c00017{bottom:441.186400pt;}
.ye_c00017{bottom:494.519733pt;}
.yd_c00017{bottom:574.466400pt;}
.yc_c00017{bottom:601.138400pt;}
.yb_c00017{bottom:627.810400pt;}
.ya_c00017{bottom:654.482400pt;}
.y9_c00017{bottom:681.154400pt;}
.y8_c00017{bottom:707.826400pt;}
.y7_c00017{bottom:734.498400pt;}
.y6_c00017{bottom:761.170400pt;}
.y5_c00017{bottom:787.842400pt;}
.y4_c00017{bottom:814.514400pt;}
.y3_c00017{bottom:841.186400pt;}
.y2_c00017{bottom:894.519733pt;}
.h2_c00017{height:48.000000pt;}
.h4_c00017{height:57.600000pt;}
.h3_c00017{height:69.813333pt;}
.h0_c00017{height:1122.520000pt;}
.h1_c00017{height:1122.666667pt;}
.w0_c00017{width:793.701333pt;}
.w1_c00017{width:794.000000pt;}
.x0_c00017{left:0.000000pt;}
.x2_c00017{left:80.000000pt;}
.x3_c00017{left:94.666667pt;}
.x1_c00017{left:708.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.160000;font-style:normal;font-weight:normal;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_d219d4c1976e9292b4fdff88.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00018;src:url('chunks/assets/font_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00018;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00018;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00018{font-family:ff5_c00018;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls2_c00018{letter-spacing:0.000000px;}
.ls0_c00018{letter-spacing:0.864000px;}
.ls1_c00018{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00018{word-spacing:-13.104000px;}
.ws0_c00018{word-spacing:-10.200000px;}
.ws3_c00018{word-spacing:-0.864000px;}
.ws2_c00018{word-spacing:0.000000px;}
._0_c00018{margin-left:-480.336600px;}
._4_c00018{margin-left:-9.960000px;}
._3_c00018{margin-left:-6.480000px;}
._1_c00018{margin-left:-4.200000px;}
._5_c00018{margin-left:-2.772000px;}
._2_c00018{margin-left:-1.440000px;}
.fc3_c00018{color:rgb(255,255,255);}
.fc2_c00018{color:rgb(233,83,14);}
.fc1_c00018{color:rgb(232,86,17);}
.fc0_c00018{color:rgb(60,60,59);}
.fs1_c00018{font-size:42.000000px;}
.fs0_c00018{font-size:60.000000px;}
.fs3_c00018{font-size:72.000000px;}
.fs4_c00018{font-size:120.000000px;}
.fs2_c00018{font-size:360.000000px;}
.y0_c00018{bottom:0.000000px;}
.y1_c00018{bottom:41.250000px;}
.y9_c00018{bottom:574.310700px;}
.y8_c00018{bottom:595.316700px;}
.y7_c00018{bottom:616.322700px;}
.y6_c00018{bottom:664.328700px;}
.y5_c00018{bottom:685.334700px;}
.y4_c00018{bottom:706.340700px;}
.y3_c00018{bottom:752.834700px;}
.yd_c00018{bottom:916.334700px;}
.yc_c00018{bottom:946.334700px;}
.yb_c00018{bottom:976.334700px;}
.ya_c00018{bottom:1006.334700px;}
.y2_c00018{bottom:1093.526700px;}
.h2_c00018{height:54.000000px;}
.h5_c00018{height:64.800000px;}
.h4_c00018{height:66.456000px;}
.h6_c00018{height:112.200000px;}
.h3_c00018{height:324.000000px;}
.h0_c00018{height:1262.835000px;}
.h1_c00018{height:1263.000000px;}
.w0_c00018{width:892.914000px;}
.w1_c00018{width:893.250000px;}
.x0_c00018{left:0.000000px;}
.x2_c00018{left:81.290250px;}
.x3_c00018{left:82.393650px;}
.x5_c00018{left:112.287450px;}
.x4_c00018{left:127.393650px;}
.x1_c00018{left:796.838700px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls2_c00018{letter-spacing:0.000000pt;}
.ls0_c00018{letter-spacing:0.768000pt;}
.ls1_c00018{letter-spacing:1.066667pt;}
.ws1_c00018{word-spacing:-11.648000pt;}
.ws0_c00018{word-spacing:-9.066667pt;}
.ws3_c00018{word-spacing:-0.768000pt;}
.ws2_c00018{word-spacing:0.000000pt;}
._0_c00018{margin-left:-426.965867pt;}
._4_c00018{margin-left:-8.853333pt;}
._3_c00018{margin-left:-5.760000pt;}
._1_c00018{margin-left:-3.733333pt;}
._5_c00018{margin-left:-2.464000pt;}
._2_c00018{margin-left:-1.280000pt;}
.fs1_c00018{font-size:37.333333pt;}
.fs0_c00018{font-size:53.333333pt;}
.fs3_c00018{font-size:64.000000pt;}
.fs4_c00018{font-size:106.666667pt;}
.fs2_c00018{font-size:320.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y1_c00018{bottom:36.666667pt;}
.y9_c00018{bottom:510.498400pt;}
.y8_c00018{bottom:529.170400pt;}
.y7_c00018{bottom:547.842400pt;}
.y6_c00018{bottom:590.514400pt;}
.y5_c00018{bottom:609.186400pt;}
.y4_c00018{bottom:627.858400pt;}
.y3_c00018{bottom:669.186400pt;}
.yd_c00018{bottom:814.519733pt;}
.yc_c00018{bottom:841.186400pt;}
.yb_c00018{bottom:867.853067pt;}
.ya_c00018{bottom:894.519733pt;}
.y2_c00018{bottom:972.023733pt;}
.h2_c00018{height:48.000000pt;}
.h5_c00018{height:57.600000pt;}
.h4_c00018{height:59.072000pt;}
.h6_c00018{height:99.733333pt;}
.h3_c00018{height:288.000000pt;}
.h0_c00018{height:1122.520000pt;}
.h1_c00018{height:1122.666667pt;}
.w0_c00018{width:793.701333pt;}
.w1_c00018{width:794.000000pt;}
.x0_c00018{left:0.000000pt;}
.x2_c00018{left:72.258000pt;}
.x3_c00018{left:73.238800pt;}
.x5_c00018{left:99.811067pt;}
.x4_c00018{left:113.238800pt;}
.x1_c00018{left:708.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_8044500461936b1776693626.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00019;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls5_c00019{letter-spacing:-0.540000px;}
.ls4_c00019{letter-spacing:0.000000px;}
.ls0_c00019{letter-spacing:0.720000px;}
.ls1_c00019{letter-spacing:0.840000px;}
.ls3_c00019{letter-spacing:1.500000px;}
.ls2_c00019{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00019{word-spacing:-21.060000px;}
.ws2_c00019{word-spacing:-17.640000px;}
.ws0_c00019{word-spacing:-10.200000px;}
.ws6_c00019{word-spacing:-2.088000px;}
.wsc_c00019{word-spacing:-1.500000px;}
.ws5_c00019{word-spacing:-0.936000px;}
.ws4_c00019{word-spacing:-0.840000px;}
.ws7_c00019{word-spacing:-0.360000px;}
.ws3_c00019{word-spacing:0.000000px;}
.wsb_c00019{word-spacing:2.520000px;}
.ws8_c00019{word-spacing:2.808000px;}
.ws9_c00019{word-spacing:8.352000px;}
.wsa_c00019{word-spacing:21.456000px;}
._0_c00019{margin-left:-480.336600px;}
._3_c00019{margin-left:-7.200000px;}
._1_c00019{margin-left:-4.200000px;}
._2_c00019{margin-left:-1.620000px;}
.fc3_c00019{color:rgb(32,32,32);}
.fc2_c00019{color:rgb(233,83,14);}
.fc1_c00019{color:rgb(232,86,17);}
.fc4_c00019{color:rgb(157,157,156);}
.fc0_c00019{color:rgb(60,60,59);}
.fs1_c00019{font-size:42.000000px;}
.fs0_c00019{font-size:60.000000px;}
.fs5_c00019{font-size:66.000000px;}
.fs4_c00019{font-size:72.000000px;}
.fs3_c00019{font-size:84.000000px;}
.fs2_c00019{font-size:108.000000px;}
.y0_c00019{bottom:0.000000px;}
.y1_c00019{bottom:41.250000px;}
.yd_c00019{bottom:496.304700px;}
.yc_c00019{bottom:526.310700px;}
.yb_c00019{bottom:556.316700px;}
.ya_c00019{bottom:586.322700px;}
.y9_c00019{bottom:616.328700px;}
.y8_c00019{bottom:646.334700px;}
.y13_c00019{bottom:676.334700px;}
.y7_c00019{bottom:706.334700px;}
.y12_c00019{bottom:736.334700px;}
.y11_c00019{bottom:766.334700px;}
.y6_c00019{bottom:796.322700px;}
.y10_c00019{bottom:796.334700px;}
.y5_c00019{bottom:826.328700px;}
.yf_c00019{bottom:826.334700px;}
.y4_c00019{bottom:856.334700px;}
.ye_c00019{bottom:856.561950px;}
.y3_c00019{bottom:916.334700px;}
.y2_c00019{bottom:1006.334700px;}
.h6_c00019{height:50.292000px;}
.h2_c00019{height:54.000000px;}
.h5_c00019{height:64.800000px;}
.h4_c00019{height:78.540000px;}
.h3_c00019{height:100.980000px;}
.h0_c00019{height:1262.835000px;}
.h1_c00019{height:1263.000000px;}
.w0_c00019{width:892.914000px;}
.w1_c00019{width:893.250000px;}
.x0_c00019{left:0.000000px;}
.x2_c00019{left:82.500000px;}
.x3_c00019{left:90.000000px;}
.x4_c00019{left:106.500000px;}
.x5_c00019{left:675.611100px;}
.x1_c00019{left:794.378700px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls5_c00019{letter-spacing:-0.480000pt;}
.ls4_c00019{letter-spacing:0.000000pt;}
.ls0_c00019{letter-spacing:0.640000pt;}
.ls1_c00019{letter-spacing:0.746667pt;}
.ls3_c00019{letter-spacing:1.333333pt;}
.ls2_c00019{letter-spacing:1.466667pt;}
.ws1_c00019{word-spacing:-18.720000pt;}
.ws2_c00019{word-spacing:-15.680000pt;}
.ws0_c00019{word-spacing:-9.066667pt;}
.ws6_c00019{word-spacing:-1.856000pt;}
.wsc_c00019{word-spacing:-1.333333pt;}
.ws5_c00019{word-spacing:-0.832000pt;}
.ws4_c00019{word-spacing:-0.746667pt;}
.ws7_c00019{word-spacing:-0.320000pt;}
.ws3_c00019{word-spacing:0.000000pt;}
.wsb_c00019{word-spacing:2.240000pt;}
.ws8_c00019{word-spacing:2.496000pt;}
.ws9_c00019{word-spacing:7.424000pt;}
.wsa_c00019{word-spacing:19.072000pt;}
._0_c00019{margin-left:-426.965867pt;}
._3_c00019{margin-left:-6.400000pt;}
._1_c00019{margin-left:-3.733333pt;}
._2_c00019{margin-left:-1.440000pt;}
.fs1_c00019{font-size:37.333333pt;}
.fs0_c00019{font-size:53.333333pt;}
.fs5_c00019{font-size:58.666667pt;}
.fs4_c00019{font-size:64.000000pt;}
.fs3_c00019{font-size:74.666667pt;}
.fs2_c00019{font-size:96.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.y1_c00019{bottom:36.666667pt;}
.yd_c00019{bottom:441.159733pt;}
.yc_c00019{bottom:467.831733pt;}
.yb_c00019{bottom:494.503733pt;}
.ya_c00019{bottom:521.175733pt;}
.y9_c00019{bottom:547.847733pt;}
.y8_c00019{bottom:574.519733pt;}
.y13_c00019{bottom:601.186400pt;}
.y7_c00019{bottom:627.853067pt;}
.y12_c00019{bottom:654.519733pt;}
.y11_c00019{bottom:681.186400pt;}
.y6_c00019{bottom:707.842400pt;}
.y10_c00019{bottom:707.853067pt;}
.y5_c00019{bottom:734.514400pt;}
.yf_c00019{bottom:734.519733pt;}
.y4_c00019{bottom:761.186400pt;}
.ye_c00019{bottom:761.388400pt;}
.y3_c00019{bottom:814.519733pt;}
.y2_c00019{bottom:894.519733pt;}
.h6_c00019{height:44.704000pt;}
.h2_c00019{height:48.000000pt;}
.h5_c00019{height:57.600000pt;}
.h4_c00019{height:69.813333pt;}
.h3_c00019{height:89.760000pt;}
.h0_c00019{height:1122.520000pt;}
.h1_c00019{height:1122.666667pt;}
.w0_c00019{width:793.701333pt;}
.w1_c00019{width:794.000000pt;}
.x0_c00019{left:0.000000pt;}
.x2_c00019{left:73.333333pt;}
.x3_c00019{left:80.000000pt;}
.x4_c00019{left:94.666667pt;}
.x5_c00019{left:600.543200pt;}
.x1_c00019{left:706.114400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00020{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls1_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:0.720000px;}
.ls2_c00020{letter-spacing:0.840000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00020{word-spacing:-10.200000px;}
.ws14_c00020{word-spacing:-1.656000px;}
.ws2_c00020{word-spacing:-0.840000px;}
.ws11_c00020{word-spacing:-0.648000px;}
.ws1_c00020{word-spacing:0.000000px;}
.ws13_c00020{word-spacing:0.072000px;}
.ws3_c00020{word-spacing:0.576000px;}
.wsf_c00020{word-spacing:1.080000px;}
.wsb_c00020{word-spacing:2.232000px;}
.ws9_c00020{word-spacing:2.880000px;}
.ws8_c00020{word-spacing:4.320000px;}
.wsc_c00020{word-spacing:6.048000px;}
.ws6_c00020{word-spacing:6.480000px;}
.wse_c00020{word-spacing:7.416000px;}
.ws12_c00020{word-spacing:8.352000px;}
.ws5_c00020{word-spacing:9.576000px;}
.wsa_c00020{word-spacing:10.152000px;}
.ws7_c00020{word-spacing:10.584000px;}
.ws10_c00020{word-spacing:17.928000px;}
.wsd_c00020{word-spacing:19.872000px;}
.ws4_c00020{word-spacing:22.896000px;}
._0_c00020{margin-left:-480.336600px;}
._3_c00020{margin-left:-7.185600px;}
._4_c00020{margin-left:-5.788800px;}
._1_c00020{margin-left:-4.200000px;}
._5_c00020{margin-left:-2.887200px;}
._2_c00020{margin-left:-1.440000px;}
._6_c00020{width:1.656000px;}
.fc2_c00020{color:rgb(32,32,32);}
.fc1_c00020{color:rgb(232,86,17);}
.fc0_c00020{color:rgb(60,60,59);}
.fs1_c00020{font-size:42.000000px;}
.fs0_c00020{font-size:60.000000px;}
.fs3_c00020{font-size:72.000000px;}
.fs2_c00020{font-size:84.000000px;}
.y0_c00020{bottom:0.000000px;}
.y1_c00020{bottom:41.250000px;}
.y19_c00020{bottom:106.310700px;}
.y18_c00020{bottom:136.316700px;}
.y17_c00020{bottom:166.322700px;}
.y16_c00020{bottom:196.328700px;}
.y15_c00020{bottom:226.334700px;}
.y14_c00020{bottom:286.334700px;}
.y13_c00020{bottom:376.316700px;}
.y12_c00020{bottom:406.322700px;}
.y11_c00020{bottom:436.328700px;}
.y10_c00020{bottom:466.334700px;}
.yf_c00020{bottom:526.334700px;}
.ye_c00020{bottom:616.268700px;}
.yd_c00020{bottom:646.274700px;}
.yc_c00020{bottom:676.280700px;}
.yb_c00020{bottom:706.286700px;}
.ya_c00020{bottom:736.292700px;}
.y9_c00020{bottom:766.298700px;}
.y8_c00020{bottom:796.304700px;}
.y7_c00020{bottom:826.310700px;}
.y6_c00020{bottom:856.316700px;}
.y5_c00020{bottom:886.322700px;}
.y4_c00020{bottom:916.328700px;}
.y3_c00020{bottom:946.334700px;}
.y2_c00020{bottom:1006.334700px;}
.h2_c00020{height:54.000000px;}
.h4_c00020{height:64.800000px;}
.h3_c00020{height:78.540000px;}
.h0_c00020{height:1262.835000px;}
.h1_c00020{height:1263.000000px;}
.w0_c00020{width:892.914000px;}
.w1_c00020{width:893.250000px;}
.x0_c00020{left:0.000000px;}
.x2_c00020{left:90.000000px;}
.x3_c00020{left:106.500000px;}
.x1_c00020{left:798.038700px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls1_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:0.640000pt;}
.ls2_c00020{letter-spacing:0.746667pt;}
.ws0_c00020{word-spacing:-9.066667pt;}
.ws14_c00020{word-spacing:-1.472000pt;}
.ws2_c00020{word-spacing:-0.746667pt;}
.ws11_c00020{word-spacing:-0.576000pt;}
.ws1_c00020{word-spacing:0.000000pt;}
.ws13_c00020{word-spacing:0.064000pt;}
.ws3_c00020{word-spacing:0.512000pt;}
.wsf_c00020{word-spacing:0.960000pt;}
.wsb_c00020{word-spacing:1.984000pt;}
.ws9_c00020{word-spacing:2.560000pt;}
.ws8_c00020{word-spacing:3.840000pt;}
.wsc_c00020{word-spacing:5.376000pt;}
.ws6_c00020{word-spacing:5.760000pt;}
.wse_c00020{word-spacing:6.592000pt;}
.ws12_c00020{word-spacing:7.424000pt;}
.ws5_c00020{word-spacing:8.512000pt;}
.wsa_c00020{word-spacing:9.024000pt;}
.ws7_c00020{word-spacing:9.408000pt;}
.ws10_c00020{word-spacing:15.936000pt;}
.wsd_c00020{word-spacing:17.664000pt;}
.ws4_c00020{word-spacing:20.352000pt;}
._0_c00020{margin-left:-426.965867pt;}
._3_c00020{margin-left:-6.387200pt;}
._4_c00020{margin-left:-5.145600pt;}
._1_c00020{margin-left:-3.733333pt;}
._5_c00020{margin-left:-2.566400pt;}
._2_c00020{margin-left:-1.280000pt;}
._6_c00020{width:1.472000pt;}
.fs1_c00020{font-size:37.333333pt;}
.fs0_c00020{font-size:53.333333pt;}
.fs3_c00020{font-size:64.000000pt;}
.fs2_c00020{font-size:74.666667pt;}
.y0_c00020{bottom:0.000000pt;}
.y1_c00020{bottom:36.666667pt;}
.y19_c00020{bottom:94.498400pt;}
.y18_c00020{bottom:121.170400pt;}
.y17_c00020{bottom:147.842400pt;}
.y16_c00020{bottom:174.514400pt;}
.y15_c00020{bottom:201.186400pt;}
.y14_c00020{bottom:254.519733pt;}
.y13_c00020{bottom:334.503733pt;}
.y12_c00020{bottom:361.175733pt;}
.y11_c00020{bottom:387.847733pt;}
.y10_c00020{bottom:414.519733pt;}
.yf_c00020{bottom:467.853067pt;}
.ye_c00020{bottom:547.794400pt;}
.yd_c00020{bottom:574.466400pt;}
.yc_c00020{bottom:601.138400pt;}
.yb_c00020{bottom:627.810400pt;}
.ya_c00020{bottom:654.482400pt;}
.y9_c00020{bottom:681.154400pt;}
.y8_c00020{bottom:707.826400pt;}
.y7_c00020{bottom:734.498400pt;}
.y6_c00020{bottom:761.170400pt;}
.y5_c00020{bottom:787.842400pt;}
.y4_c00020{bottom:814.514400pt;}
.y3_c00020{bottom:841.186400pt;}
.y2_c00020{bottom:894.519733pt;}
.h2_c00020{height:48.000000pt;}
.h4_c00020{height:57.600000pt;}
.h3_c00020{height:69.813333pt;}
.h0_c00020{height:1122.520000pt;}
.h1_c00020{height:1122.666667pt;}
.w0_c00020{width:793.701333pt;}
.w1_c00020{width:794.000000pt;}
.x0_c00020{left:0.000000pt;}
.x2_c00020{left:80.000000pt;}
.x3_c00020{left:94.666667pt;}
.x1_c00020{left:709.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_976d304f5163e8d166ce5aef.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.160000;font-style:normal;font-weight:normal;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_e04a0991b070062a3f74fe43.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00021;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls5_c00021{letter-spacing:-0.324000px;}
.ls4_c00021{letter-spacing:0.000000px;}
.ls0_c00021{letter-spacing:0.720000px;}
.ls1_c00021{letter-spacing:0.840000px;}
.ls3_c00021{letter-spacing:1.500000px;}
.ls2_c00021{letter-spacing:1.650000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00021{word-spacing:-21.276000px;}
.ws2_c00021{word-spacing:-17.640000px;}
.ws3_c00021{word-spacing:-14.850000px;}
.ws0_c00021{word-spacing:-10.200000px;}
.ws9_c00021{word-spacing:-3.816000px;}
.ws7_c00021{word-spacing:-2.232000px;}
.ws17_c00021{word-spacing:-1.500000px;}
.wse_c00021{word-spacing:-1.224000px;}
.ws5_c00021{word-spacing:-0.840000px;}
.ws4_c00021{word-spacing:0.000000px;}
.ws11_c00021{word-spacing:0.936000px;}
.wsb_c00021{word-spacing:2.016000px;}
.wsf_c00021{word-spacing:2.232000px;}
.ws6_c00021{word-spacing:2.304000px;}
.wsa_c00021{word-spacing:2.808000px;}
.ws10_c00021{word-spacing:3.816000px;}
.ws12_c00021{word-spacing:4.104000px;}
.ws15_c00021{word-spacing:4.968000px;}
.ws16_c00021{word-spacing:5.184000px;}
.wsc_c00021{word-spacing:7.128000px;}
.ws8_c00021{word-spacing:8.568000px;}
.wsd_c00021{word-spacing:14.688000px;}
.ws14_c00021{word-spacing:20.736000px;}
.ws13_c00021{word-spacing:24.624000px;}
._0_c00021{margin-left:-480.336000px;}
._4_c00021{margin-left:-6.480000px;}
._1_c00021{margin-left:-4.200000px;}
._3_c00021{margin-left:-2.152800px;}
._2_c00021{margin-left:-1.134000px;}
.fc3_c00021{color:rgb(32,32,32);}
.fc2_c00021{color:rgb(233,83,14);}
.fc1_c00021{color:rgb(232,86,17);}
.fc4_c00021{color:rgb(157,157,156);}
.fc0_c00021{color:rgb(60,60,59);}
.fs1_c00021{font-size:42.000000px;}
.fs0_c00021{font-size:60.000000px;}
.fs5_c00021{font-size:66.000000px;}
.fs4_c00021{font-size:72.000000px;}
.fs3_c00021{font-size:84.000000px;}
.fs2_c00021{font-size:108.000000px;}
.y0_c00021{bottom:0.000000px;}
.y1_c00021{bottom:41.250000px;}
.y17_c00021{bottom:196.244700px;}
.y16_c00021{bottom:226.250700px;}
.y15_c00021{bottom:256.256700px;}
.y14_c00021{bottom:286.262700px;}
.y13_c00021{bottom:316.268700px;}
.y12_c00021{bottom:346.274700px;}
.y11_c00021{bottom:376.280700px;}
.y10_c00021{bottom:406.286700px;}
.yf_c00021{bottom:436.292700px;}
.ye_c00021{bottom:466.298700px;}
.yd_c00021{bottom:496.304700px;}
.yc_c00021{bottom:526.310700px;}
.yb_c00021{bottom:556.316700px;}
.ya_c00021{bottom:586.322700px;}
.y9_c00021{bottom:616.328700px;}
.y8_c00021{bottom:646.334700px;}
.y1d_c00021{bottom:676.334700px;}
.y7_c00021{bottom:706.334700px;}
.y1c_c00021{bottom:736.334700px;}
.y1b_c00021{bottom:766.334700px;}
.y6_c00021{bottom:796.322700px;}
.y1a_c00021{bottom:796.334700px;}
.y5_c00021{bottom:826.328700px;}
.y19_c00021{bottom:826.334700px;}
.y4_c00021{bottom:856.334700px;}
.y18_c00021{bottom:856.561950px;}
.y3_c00021{bottom:916.334700px;}
.y2_c00021{bottom:1006.334700px;}
.h6_c00021{height:50.292000px;}
.h2_c00021{height:54.000000px;}
.h5_c00021{height:64.800000px;}
.h4_c00021{height:78.540000px;}
.h3_c00021{height:100.980000px;}
.h0_c00021{height:1262.835000px;}
.h1_c00021{height:1263.000000px;}
.w0_c00021{width:892.914000px;}
.w1_c00021{width:893.250000px;}
.x0_c00021{left:0.000000px;}
.x2_c00021{left:82.500000px;}
.x3_c00021{left:90.000000px;}
.x4_c00021{left:106.500000px;}
.x5_c00021{left:675.611100px;}
.x1_c00021{left:795.563550px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls5_c00021{letter-spacing:-0.288000pt;}
.ls4_c00021{letter-spacing:0.000000pt;}
.ls0_c00021{letter-spacing:0.640000pt;}
.ls1_c00021{letter-spacing:0.746667pt;}
.ls3_c00021{letter-spacing:1.333333pt;}
.ls2_c00021{letter-spacing:1.466667pt;}
.ws1_c00021{word-spacing:-18.912000pt;}
.ws2_c00021{word-spacing:-15.680000pt;}
.ws3_c00021{word-spacing:-13.200000pt;}
.ws0_c00021{word-spacing:-9.066667pt;}
.ws9_c00021{word-spacing:-3.392000pt;}
.ws7_c00021{word-spacing:-1.984000pt;}
.ws17_c00021{word-spacing:-1.333333pt;}
.wse_c00021{word-spacing:-1.088000pt;}
.ws5_c00021{word-spacing:-0.746667pt;}
.ws4_c00021{word-spacing:0.000000pt;}
.ws11_c00021{word-spacing:0.832000pt;}
.wsb_c00021{word-spacing:1.792000pt;}
.wsf_c00021{word-spacing:1.984000pt;}
.ws6_c00021{word-spacing:2.048000pt;}
.wsa_c00021{word-spacing:2.496000pt;}
.ws10_c00021{word-spacing:3.392000pt;}
.ws12_c00021{word-spacing:3.648000pt;}
.ws15_c00021{word-spacing:4.416000pt;}
.ws16_c00021{word-spacing:4.608000pt;}
.wsc_c00021{word-spacing:6.336000pt;}
.ws8_c00021{word-spacing:7.616000pt;}
.wsd_c00021{word-spacing:13.056000pt;}
.ws14_c00021{word-spacing:18.432000pt;}
.ws13_c00021{word-spacing:21.888000pt;}
._0_c00021{margin-left:-426.965333pt;}
._4_c00021{margin-left:-5.760000pt;}
._1_c00021{margin-left:-3.733333pt;}
._3_c00021{margin-left:-1.913600pt;}
._2_c00021{margin-left:-1.008000pt;}
.fs1_c00021{font-size:37.333333pt;}
.fs0_c00021{font-size:53.333333pt;}
.fs5_c00021{font-size:58.666667pt;}
.fs4_c00021{font-size:64.000000pt;}
.fs3_c00021{font-size:74.666667pt;}
.fs2_c00021{font-size:96.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y1_c00021{bottom:36.666667pt;}
.y17_c00021{bottom:174.439733pt;}
.y16_c00021{bottom:201.111733pt;}
.y15_c00021{bottom:227.783733pt;}
.y14_c00021{bottom:254.455733pt;}
.y13_c00021{bottom:281.127733pt;}
.y12_c00021{bottom:307.799733pt;}
.y11_c00021{bottom:334.471733pt;}
.y10_c00021{bottom:361.143733pt;}
.yf_c00021{bottom:387.815733pt;}
.ye_c00021{bottom:414.487733pt;}
.yd_c00021{bottom:441.159733pt;}
.yc_c00021{bottom:467.831733pt;}
.yb_c00021{bottom:494.503733pt;}
.ya_c00021{bottom:521.175733pt;}
.y9_c00021{bottom:547.847733pt;}
.y8_c00021{bottom:574.519733pt;}
.y1d_c00021{bottom:601.186400pt;}
.y7_c00021{bottom:627.853067pt;}
.y1c_c00021{bottom:654.519733pt;}
.y1b_c00021{bottom:681.186400pt;}
.y6_c00021{bottom:707.842400pt;}
.y1a_c00021{bottom:707.853067pt;}
.y5_c00021{bottom:734.514400pt;}
.y19_c00021{bottom:734.519733pt;}
.y4_c00021{bottom:761.186400pt;}
.y18_c00021{bottom:761.388400pt;}
.y3_c00021{bottom:814.519733pt;}
.y2_c00021{bottom:894.519733pt;}
.h6_c00021{height:44.704000pt;}
.h2_c00021{height:48.000000pt;}
.h5_c00021{height:57.600000pt;}
.h4_c00021{height:69.813333pt;}
.h3_c00021{height:89.760000pt;}
.h0_c00021{height:1122.520000pt;}
.h1_c00021{height:1122.666667pt;}
.w0_c00021{width:793.701333pt;}
.w1_c00021{width:794.000000pt;}
.x0_c00021{left:0.000000pt;}
.x2_c00021{left:73.333333pt;}
.x3_c00021{left:80.000000pt;}
.x4_c00021{left:94.666667pt;}
.x5_c00021{left:600.543200pt;}
.x1_c00021{left:707.167600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0bb0ba73aa4fdf56e496fbb.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00022{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls1_c00022{letter-spacing:0.000000px;}
.ls0_c00022{letter-spacing:0.720000px;}
.ls2_c00022{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00022{word-spacing:-0.840000px;}
.ws7_c00022{word-spacing:-0.792000px;}
.ws8_c00022{word-spacing:-0.648000px;}
.ws1_c00022{word-spacing:0.000000px;}
.ws4_c00022{word-spacing:2.016000px;}
.ws5_c00022{word-spacing:7.704000px;}
.ws6_c00022{word-spacing:12.744000px;}
.ws3_c00022{word-spacing:14.328000px;}
._0_c00022{margin-left:-480.336600px;}
._3_c00022{margin-left:-6.580800px;}
._1_c00022{margin-left:-4.200000px;}
._4_c00022{margin-left:-2.880000px;}
._2_c00022{margin-left:-1.440000px;}
.fc2_c00022{color:rgb(32,32,32);}
.fc1_c00022{color:rgb(232,86,17);}
.fc0_c00022{color:rgb(60,60,59);}
.fs1_c00022{font-size:42.000000px;}
.fs0_c00022{font-size:60.000000px;}
.fs3_c00022{font-size:72.000000px;}
.fs2_c00022{font-size:84.000000px;}
.y0_c00022{bottom:0.000000px;}
.y1_c00022{bottom:41.250000px;}
.yb_c00022{bottom:616.316700px;}
.ya_c00022{bottom:646.322700px;}
.y9_c00022{bottom:676.328700px;}
.y8_c00022{bottom:706.334700px;}
.y7_c00022{bottom:766.334700px;}
.y6_c00022{bottom:856.316700px;}
.y5_c00022{bottom:886.322700px;}
.y4_c00022{bottom:916.328700px;}
.y3_c00022{bottom:946.334700px;}
.y2_c00022{bottom:1006.334700px;}
.h2_c00022{height:54.000000px;}
.h4_c00022{height:64.800000px;}
.h3_c00022{height:78.540000px;}
.h0_c00022{height:1262.835000px;}
.h1_c00022{height:1263.000000px;}
.w0_c00022{width:892.914000px;}
.w1_c00022{width:893.250000px;}
.x0_c00022{left:0.000000px;}
.x2_c00022{left:90.000000px;}
.x3_c00022{left:106.500000px;}
.x1_c00022{left:795.413700px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls1_c00022{letter-spacing:0.000000pt;}
.ls0_c00022{letter-spacing:0.640000pt;}
.ls2_c00022{letter-spacing:0.746667pt;}
.ws0_c00022{word-spacing:-9.066667pt;}
.ws2_c00022{word-spacing:-0.746667pt;}
.ws7_c00022{word-spacing:-0.704000pt;}
.ws8_c00022{word-spacing:-0.576000pt;}
.ws1_c00022{word-spacing:0.000000pt;}
.ws4_c00022{word-spacing:1.792000pt;}
.ws5_c00022{word-spacing:6.848000pt;}
.ws6_c00022{word-spacing:11.328000pt;}
.ws3_c00022{word-spacing:12.736000pt;}
._0_c00022{margin-left:-426.965867pt;}
._3_c00022{margin-left:-5.849600pt;}
._1_c00022{margin-left:-3.733333pt;}
._4_c00022{margin-left:-2.560000pt;}
._2_c00022{margin-left:-1.280000pt;}
.fs1_c00022{font-size:37.333333pt;}
.fs0_c00022{font-size:53.333333pt;}
.fs3_c00022{font-size:64.000000pt;}
.fs2_c00022{font-size:74.666667pt;}
.y0_c00022{bottom:0.000000pt;}
.y1_c00022{bottom:36.666667pt;}
.yb_c00022{bottom:547.837067pt;}
.ya_c00022{bottom:574.509067pt;}
.y9_c00022{bottom:601.181067pt;}
.y8_c00022{bottom:627.853067pt;}
.y7_c00022{bottom:681.186400pt;}
.y6_c00022{bottom:761.170400pt;}
.y5_c00022{bottom:787.842400pt;}
.y4_c00022{bottom:814.514400pt;}
.y3_c00022{bottom:841.186400pt;}
.y2_c00022{bottom:894.519733pt;}
.h2_c00022{height:48.000000pt;}
.h4_c00022{height:57.600000pt;}
.h3_c00022{height:69.813333pt;}
.h0_c00022{height:1122.520000pt;}
.h1_c00022{height:1122.666667pt;}
.w0_c00022{width:793.701333pt;}
.w1_c00022{width:794.000000pt;}
.x0_c00022{left:0.000000pt;}
.x2_c00022{left:80.000000pt;}
.x3_c00022{left:94.666667pt;}
.x1_c00022{left:707.034400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_d219d4c1976e9292b4fdff88.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00023;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00023{font-family:ff5_c00023;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls2_c00023{letter-spacing:0.000000px;}
.ls0_c00023{letter-spacing:0.864000px;}
.ls1_c00023{letter-spacing:1.200000px;}
.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;}
}
.ws5_c00023{word-spacing:-20.040000px;}
.ws1_c00023{word-spacing:-13.104000px;}
.ws0_c00023{word-spacing:-10.200000px;}
.ws4_c00023{word-spacing:-6.240000px;}
.ws3_c00023{word-spacing:-1.440000px;}
.ws2_c00023{word-spacing:0.000000px;}
._0_c00023{margin-left:-480.336000px;}
._c_c00023{margin-left:-17.400000px;}
._6_c00023{margin-left:-11.400000px;}
._5_c00023{margin-left:-9.000000px;}
._2_c00023{margin-left:-6.480000px;}
._1_c00023{margin-left:-4.200000px;}
._a_c00023{margin-left:-3.000000px;}
._3_c00023{margin-left:-1.440000px;}
._4_c00023{width:1.440000px;}
._7_c00023{width:3.240000px;}
._8_c00023{width:6.240000px;}
._b_c00023{width:10.800000px;}
._9_c00023{width:20.040000px;}
.fc3_c00023{color:rgb(255,255,255);}
.fc2_c00023{color:rgb(233,83,14);}
.fc1_c00023{color:rgb(232,86,17);}
.fc0_c00023{color:rgb(60,60,59);}
.fs1_c00023{font-size:42.000000px;}
.fs0_c00023{font-size:60.000000px;}
.fs3_c00023{font-size:72.000000px;}
.fs4_c00023{font-size:120.000000px;}
.fs2_c00023{font-size:360.000000px;}
.y0_c00023{bottom:0.000000px;}
.y1_c00023{bottom:41.250000px;}
.y19_c00023{bottom:133.220700px;}
.y18_c00023{bottom:154.226700px;}
.y17_c00023{bottom:175.232700px;}
.y16_c00023{bottom:196.238700px;}
.y15_c00023{bottom:253.244700px;}
.y14_c00023{bottom:274.250700px;}
.y13_c00023{bottom:295.256700px;}
.y12_c00023{bottom:316.262700px;}
.y11_c00023{bottom:373.268700px;}
.y10_c00023{bottom:394.274700px;}
.yf_c00023{bottom:415.280700px;}
.ye_c00023{bottom:436.286700px;}
.yd_c00023{bottom:481.286700px;}
.yc_c00023{bottom:502.292700px;}
.yb_c00023{bottom:523.298700px;}
.ya_c00023{bottom:544.304700px;}
.y9_c00023{bottom:565.310700px;}
.y8_c00023{bottom:586.316700px;}
.y7_c00023{bottom:643.322700px;}
.y6_c00023{bottom:664.328700px;}
.y5_c00023{bottom:685.334700px;}
.y4_c00023{bottom:706.340700px;}
.y3_c00023{bottom:752.834700px;}
.y1d_c00023{bottom:916.334700px;}
.y1c_c00023{bottom:946.334700px;}
.y1b_c00023{bottom:976.334700px;}
.y1a_c00023{bottom:1006.334700px;}
.y2_c00023{bottom:1093.526700px;}
.h2_c00023{height:54.000000px;}
.h5_c00023{height:64.800000px;}
.h4_c00023{height:66.456000px;}
.h6_c00023{height:112.200000px;}
.h3_c00023{height:324.000000px;}
.h0_c00023{height:1262.835000px;}
.h1_c00023{height:1263.000000px;}
.w0_c00023{width:892.914000px;}
.w1_c00023{width:893.250000px;}
.x0_c00023{left:0.000000px;}
.x2_c00023{left:81.290250px;}
.x3_c00023{left:82.393650px;}
.x5_c00023{left:112.287450px;}
.x4_c00023{left:127.393650px;}
.x1_c00023{left:794.438550px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls2_c00023{letter-spacing:0.000000pt;}
.ls0_c00023{letter-spacing:0.768000pt;}
.ls1_c00023{letter-spacing:1.066667pt;}
.ws5_c00023{word-spacing:-17.813333pt;}
.ws1_c00023{word-spacing:-11.648000pt;}
.ws0_c00023{word-spacing:-9.066667pt;}
.ws4_c00023{word-spacing:-5.546667pt;}
.ws3_c00023{word-spacing:-1.280000pt;}
.ws2_c00023{word-spacing:0.000000pt;}
._0_c00023{margin-left:-426.965333pt;}
._c_c00023{margin-left:-15.466667pt;}
._6_c00023{margin-left:-10.133333pt;}
._5_c00023{margin-left:-8.000000pt;}
._2_c00023{margin-left:-5.760000pt;}
._1_c00023{margin-left:-3.733333pt;}
._a_c00023{margin-left:-2.666667pt;}
._3_c00023{margin-left:-1.280000pt;}
._4_c00023{width:1.280000pt;}
._7_c00023{width:2.880000pt;}
._8_c00023{width:5.546667pt;}
._b_c00023{width:9.600000pt;}
._9_c00023{width:17.813333pt;}
.fs1_c00023{font-size:37.333333pt;}
.fs0_c00023{font-size:53.333333pt;}
.fs3_c00023{font-size:64.000000pt;}
.fs4_c00023{font-size:106.666667pt;}
.fs2_c00023{font-size:320.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y1_c00023{bottom:36.666667pt;}
.y19_c00023{bottom:118.418400pt;}
.y18_c00023{bottom:137.090400pt;}
.y17_c00023{bottom:155.762400pt;}
.y16_c00023{bottom:174.434400pt;}
.y15_c00023{bottom:225.106400pt;}
.y14_c00023{bottom:243.778400pt;}
.y13_c00023{bottom:262.450400pt;}
.y12_c00023{bottom:281.122400pt;}
.y11_c00023{bottom:331.794400pt;}
.y10_c00023{bottom:350.466400pt;}
.yf_c00023{bottom:369.138400pt;}
.ye_c00023{bottom:387.810400pt;}
.yd_c00023{bottom:427.810400pt;}
.yc_c00023{bottom:446.482400pt;}
.yb_c00023{bottom:465.154400pt;}
.ya_c00023{bottom:483.826400pt;}
.y9_c00023{bottom:502.498400pt;}
.y8_c00023{bottom:521.170400pt;}
.y7_c00023{bottom:571.842400pt;}
.y6_c00023{bottom:590.514400pt;}
.y5_c00023{bottom:609.186400pt;}
.y4_c00023{bottom:627.858400pt;}
.y3_c00023{bottom:669.186400pt;}
.y1d_c00023{bottom:814.519733pt;}
.y1c_c00023{bottom:841.186400pt;}
.y1b_c00023{bottom:867.853067pt;}
.y1a_c00023{bottom:894.519733pt;}
.y2_c00023{bottom:972.023733pt;}
.h2_c00023{height:48.000000pt;}
.h5_c00023{height:57.600000pt;}
.h4_c00023{height:59.072000pt;}
.h6_c00023{height:99.733333pt;}
.h3_c00023{height:288.000000pt;}
.h0_c00023{height:1122.520000pt;}
.h1_c00023{height:1122.666667pt;}
.w0_c00023{width:793.701333pt;}
.w1_c00023{width:794.000000pt;}
.x0_c00023{left:0.000000pt;}
.x2_c00023{left:72.258000pt;}
.x3_c00023{left:73.238800pt;}
.x5_c00023{left:99.811067pt;}
.x4_c00023{left:113.238800pt;}
.x1_c00023{left:706.167600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.160000;font-style:normal;font-weight:normal;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_8044500461936b1776693626.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00024;src:url('chunks/assets/font_c9b8fdba265e8fff572ae7ce.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.161000;font-style: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);}
.m1_c00024{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls5_c00024{letter-spacing:-0.540000px;}
.ls4_c00024{letter-spacing:0.000000px;}
.ls0_c00024{letter-spacing:0.720000px;}
.ls1_c00024{letter-spacing:0.840000px;}
.ls3_c00024{letter-spacing:1.500000px;}
.ls2_c00024{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00024{word-spacing:-21.060000px;}
.ws2_c00024{word-spacing:-17.640000px;}
.ws0_c00024{word-spacing:-10.200000px;}
.ws11_c00024{word-spacing:-1.080000px;}
.wsa_c00024{word-spacing:-1.008000px;}
.ws4_c00024{word-spacing:-0.840000px;}
.ws10_c00024{word-spacing:-0.720000px;}
.ws12_c00024{word-spacing:-0.144000px;}
.ws3_c00024{word-spacing:0.000000px;}
.wsf_c00024{word-spacing:0.792000px;}
.ws8_c00024{word-spacing:2.808000px;}
.ws5_c00024{word-spacing:2.952000px;}
.ws9_c00024{word-spacing:3.600000px;}
.wsc_c00024{word-spacing:5.040000px;}
.wse_c00024{word-spacing:9.864000px;}
.wsd_c00024{word-spacing:10.008000px;}
.ws7_c00024{word-spacing:10.440000px;}
.ws6_c00024{word-spacing:14.040000px;}
.wsb_c00024{word-spacing:23.328000px;}
._0_c00024{margin-left:-480.336000px;}
._3_c00024{margin-left:-6.120000px;}
._1_c00024{margin-left:-4.200000px;}
._4_c00024{margin-left:-2.527200px;}
._2_c00024{margin-left:-1.440000px;}
.fc3_c00024{color:rgb(32,32,32);}
.fc2_c00024{color:rgb(233,83,14);}
.fc1_c00024{color:rgb(232,86,17);}
.fc4_c00024{color:rgb(157,157,156);}
.fc0_c00024{color:rgb(60,60,59);}
.fs1_c00024{font-size:42.000000px;}
.fs0_c00024{font-size:60.000000px;}
.fs5_c00024{font-size:66.000000px;}
.fs4_c00024{font-size:72.000000px;}
.fs3_c00024{font-size:84.000000px;}
.fs2_c00024{font-size:108.000000px;}
.y0_c00024{bottom:0.000000px;}
.y1_c00024{bottom:41.250000px;}
.y16_c00024{bottom:136.286700px;}
.y15_c00024{bottom:166.292700px;}
.y14_c00024{bottom:196.298700px;}
.y13_c00024{bottom:226.304700px;}
.y12_c00024{bottom:256.310700px;}
.y11_c00024{bottom:286.316700px;}
.y10_c00024{bottom:316.322700px;}
.yf_c00024{bottom:346.328700px;}
.ye_c00024{bottom:376.334700px;}
.yd_c00024{bottom:436.334700px;}
.yc_c00024{bottom:526.328700px;}
.yb_c00024{bottom:556.334700px;}
.ya_c00024{bottom:616.334700px;}
.y9_c00024{bottom:706.304700px;}
.y8_c00024{bottom:736.310700px;}
.y7_c00024{bottom:766.316700px;}
.y1a_c00024{bottom:766.561950px;}
.y6_c00024{bottom:796.322700px;}
.y19_c00024{bottom:796.561950px;}
.y5_c00024{bottom:826.328700px;}
.y18_c00024{bottom:826.561950px;}
.y4_c00024{bottom:856.334700px;}
.y17_c00024{bottom:856.561950px;}
.y3_c00024{bottom:916.334700px;}
.y2_c00024{bottom:1006.334700px;}
.h6_c00024{height:50.292000px;}
.h2_c00024{height:54.000000px;}
.h5_c00024{height:64.800000px;}
.h4_c00024{height:78.540000px;}
.h3_c00024{height:100.980000px;}
.h0_c00024{height:1262.835000px;}
.h1_c00024{height:1263.000000px;}
.w0_c00024{width:892.914000px;}
.w1_c00024{width:893.250000px;}
.x0_c00024{left:0.000000px;}
.x2_c00024{left:82.500000px;}
.x3_c00024{left:90.000000px;}
.x4_c00024{left:106.500000px;}
.x5_c00024{left:675.611100px;}
.x1_c00024{left:795.488550px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls5_c00024{letter-spacing:-0.480000pt;}
.ls4_c00024{letter-spacing:0.000000pt;}
.ls0_c00024{letter-spacing:0.640000pt;}
.ls1_c00024{letter-spacing:0.746667pt;}
.ls3_c00024{letter-spacing:1.333333pt;}
.ls2_c00024{letter-spacing:1.466667pt;}
.ws1_c00024{word-spacing:-18.720000pt;}
.ws2_c00024{word-spacing:-15.680000pt;}
.ws0_c00024{word-spacing:-9.066667pt;}
.ws11_c00024{word-spacing:-0.960000pt;}
.wsa_c00024{word-spacing:-0.896000pt;}
.ws4_c00024{word-spacing:-0.746667pt;}
.ws10_c00024{word-spacing:-0.640000pt;}
.ws12_c00024{word-spacing:-0.128000pt;}
.ws3_c00024{word-spacing:0.000000pt;}
.wsf_c00024{word-spacing:0.704000pt;}
.ws8_c00024{word-spacing:2.496000pt;}
.ws5_c00024{word-spacing:2.624000pt;}
.ws9_c00024{word-spacing:3.200000pt;}
.wsc_c00024{word-spacing:4.480000pt;}
.wse_c00024{word-spacing:8.768000pt;}
.wsd_c00024{word-spacing:8.896000pt;}
.ws7_c00024{word-spacing:9.280000pt;}
.ws6_c00024{word-spacing:12.480000pt;}
.wsb_c00024{word-spacing:20.736000pt;}
._0_c00024{margin-left:-426.965333pt;}
._3_c00024{margin-left:-5.440000pt;}
._1_c00024{margin-left:-3.733333pt;}
._4_c00024{margin-left:-2.246400pt;}
._2_c00024{margin-left:-1.280000pt;}
.fs1_c00024{font-size:37.333333pt;}
.fs0_c00024{font-size:53.333333pt;}
.fs5_c00024{font-size:58.666667pt;}
.fs4_c00024{font-size:64.000000pt;}
.fs3_c00024{font-size:74.666667pt;}
.fs2_c00024{font-size:96.000000pt;}
.y0_c00024{bottom:0.000000pt;}
.y1_c00024{bottom:36.666667pt;}
.y16_c00024{bottom:121.143733pt;}
.y15_c00024{bottom:147.815733pt;}
.y14_c00024{bottom:174.487733pt;}
.y13_c00024{bottom:201.159733pt;}
.y12_c00024{bottom:227.831733pt;}
.y11_c00024{bottom:254.503733pt;}
.y10_c00024{bottom:281.175733pt;}
.yf_c00024{bottom:307.847733pt;}
.ye_c00024{bottom:334.519733pt;}
.yd_c00024{bottom:387.853067pt;}
.yc_c00024{bottom:467.847733pt;}
.yb_c00024{bottom:494.519733pt;}
.ya_c00024{bottom:547.853067pt;}
.y9_c00024{bottom:627.826400pt;}
.y8_c00024{bottom:654.498400pt;}
.y7_c00024{bottom:681.170400pt;}
.y1a_c00024{bottom:681.388400pt;}
.y6_c00024{bottom:707.842400pt;}
.y19_c00024{bottom:708.055067pt;}
.y5_c00024{bottom:734.514400pt;}
.y18_c00024{bottom:734.721733pt;}
.y4_c00024{bottom:761.186400pt;}
.y17_c00024{bottom:761.388400pt;}
.y3_c00024{bottom:814.519733pt;}
.y2_c00024{bottom:894.519733pt;}
.h6_c00024{height:44.704000pt;}
.h2_c00024{height:48.000000pt;}
.h5_c00024{height:57.600000pt;}
.h4_c00024{height:69.813333pt;}
.h3_c00024{height:89.760000pt;}
.h0_c00024{height:1122.520000pt;}
.h1_c00024{height:1122.666667pt;}
.w0_c00024{width:793.701333pt;}
.w1_c00024{width:794.000000pt;}
.x0_c00024{left:0.000000pt;}
.x2_c00024{left:73.333333pt;}
.x3_c00024{left:80.000000pt;}
.x4_c00024{left:94.666667pt;}
.x5_c00024{left:600.543200pt;}
.x1_c00024{left:707.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00025{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls1_c00025{letter-spacing:0.000000px;}
.ls0_c00025{letter-spacing:0.720000px;}
.ls2_c00025{letter-spacing:0.840000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:-10.200000px;}
.ws5_c00025{word-spacing:-2.232000px;}
.ws4_c00025{word-spacing:-0.864000px;}
.ws2_c00025{word-spacing:-0.840000px;}
.ws1_c00025{word-spacing:0.000000px;}
.ws6_c00025{word-spacing:1.224000px;}
.wsa_c00025{word-spacing:1.368000px;}
.wsb_c00025{word-spacing:2.088000px;}
.ws8_c00025{word-spacing:4.248000px;}
.ws7_c00025{word-spacing:9.648000px;}
.ws9_c00025{word-spacing:14.040000px;}
.ws3_c00025{word-spacing:14.544000px;}
._0_c00025{margin-left:-480.336000px;}
._4_c00025{margin-left:-13.478400px;}
._3_c00025{margin-left:-5.760000px;}
._1_c00025{margin-left:-4.200000px;}
._2_c00025{margin-left:-1.440000px;}
.fc2_c00025{color:rgb(32,32,32);}
.fc1_c00025{color:rgb(232,86,17);}
.fc0_c00025{color:rgb(60,60,59);}
.fs1_c00025{font-size:42.000000px;}
.fs0_c00025{font-size:60.000000px;}
.fs3_c00025{font-size:72.000000px;}
.fs2_c00025{font-size:84.000000px;}
.y0_c00025{bottom:0.000000px;}
.y1_c00025{bottom:41.250000px;}
.ye_c00025{bottom:526.322700px;}
.yd_c00025{bottom:556.328700px;}
.yc_c00025{bottom:586.334700px;}
.yb_c00025{bottom:646.334700px;}
.ya_c00025{bottom:736.292700px;}
.y9_c00025{bottom:766.298700px;}
.y8_c00025{bottom:796.304700px;}
.y7_c00025{bottom:826.310700px;}
.y6_c00025{bottom:856.316700px;}
.y5_c00025{bottom:886.322700px;}
.y4_c00025{bottom:916.328700px;}
.y3_c00025{bottom:946.334700px;}
.y2_c00025{bottom:1006.334700px;}
.h2_c00025{height:54.000000px;}
.h4_c00025{height:64.800000px;}
.h3_c00025{height:78.540000px;}
.h0_c00025{height:1262.835000px;}
.h1_c00025{height:1263.000000px;}
.w0_c00025{width:892.914000px;}
.w1_c00025{width:893.250000px;}
.x0_c00025{left:0.000000px;}
.x2_c00025{left:90.000000px;}
.x3_c00025{left:106.500000px;}
.x1_c00025{left:794.363550px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls1_c00025{letter-spacing:0.000000pt;}
.ls0_c00025{letter-spacing:0.640000pt;}
.ls2_c00025{letter-spacing:0.746667pt;}
.ws0_c00025{word-spacing:-9.066667pt;}
.ws5_c00025{word-spacing:-1.984000pt;}
.ws4_c00025{word-spacing:-0.768000pt;}
.ws2_c00025{word-spacing:-0.746667pt;}
.ws1_c00025{word-spacing:0.000000pt;}
.ws6_c00025{word-spacing:1.088000pt;}
.wsa_c00025{word-spacing:1.216000pt;}
.wsb_c00025{word-spacing:1.856000pt;}
.ws8_c00025{word-spacing:3.776000pt;}
.ws7_c00025{word-spacing:8.576000pt;}
.ws9_c00025{word-spacing:12.480000pt;}
.ws3_c00025{word-spacing:12.928000pt;}
._0_c00025{margin-left:-426.965333pt;}
._4_c00025{margin-left:-11.980800pt;}
._3_c00025{margin-left:-5.120000pt;}
._1_c00025{margin-left:-3.733333pt;}
._2_c00025{margin-left:-1.280000pt;}
.fs1_c00025{font-size:37.333333pt;}
.fs0_c00025{font-size:53.333333pt;}
.fs3_c00025{font-size:64.000000pt;}
.fs2_c00025{font-size:74.666667pt;}
.y0_c00025{bottom:0.000000pt;}
.y1_c00025{bottom:36.666667pt;}
.ye_c00025{bottom:467.842400pt;}
.yd_c00025{bottom:494.514400pt;}
.yc_c00025{bottom:521.186400pt;}
.yb_c00025{bottom:574.519733pt;}
.ya_c00025{bottom:654.482400pt;}
.y9_c00025{bottom:681.154400pt;}
.y8_c00025{bottom:707.826400pt;}
.y7_c00025{bottom:734.498400pt;}
.y6_c00025{bottom:761.170400pt;}
.y5_c00025{bottom:787.842400pt;}
.y4_c00025{bottom:814.514400pt;}
.y3_c00025{bottom:841.186400pt;}
.y2_c00025{bottom:894.519733pt;}
.h2_c00025{height:48.000000pt;}
.h4_c00025{height:57.600000pt;}
.h3_c00025{height:69.813333pt;}
.h0_c00025{height:1122.520000pt;}
.h1_c00025{height:1122.666667pt;}
.w0_c00025{width:793.701333pt;}
.w1_c00025{width:794.000000pt;}
.x0_c00025{left:0.000000pt;}
.x2_c00025{left:80.000000pt;}
.x3_c00025{left:94.666667pt;}
.x1_c00025{left:706.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4af7accc9868b7f1ad99e3be.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_e04a0991b070062a3f74fe43.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_c9b8fdba265e8fff572ae7ce.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00026;src:url('chunks/assets/font_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls5_c00026{letter-spacing:-0.324000px;}
.ls4_c00026{letter-spacing:0.000000px;}
.ls0_c00026{letter-spacing:0.720000px;}
.ls1_c00026{letter-spacing:0.840000px;}
.ls3_c00026{letter-spacing:1.500000px;}
.ls2_c00026{letter-spacing:1.650000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00026{word-spacing:-21.276000px;}
.ws2_c00026{word-spacing:-17.640000px;}
.ws3_c00026{word-spacing:-14.850000px;}
.ws0_c00026{word-spacing:-10.200000px;}
.ws16_c00026{word-spacing:-1.500000px;}
.ws15_c00026{word-spacing:-0.936000px;}
.ws5_c00026{word-spacing:-0.840000px;}
.wsf_c00026{word-spacing:-0.720000px;}
.ws4_c00026{word-spacing:0.000000px;}
.wsa_c00026{word-spacing:1.152000px;}
.ws7_c00026{word-spacing:1.872000px;}
.wsc_c00026{word-spacing:3.456000px;}
.wsb_c00026{word-spacing:4.752000px;}
.ws6_c00026{word-spacing:5.256000px;}
.ws10_c00026{word-spacing:6.264000px;}
.ws9_c00026{word-spacing:10.728000px;}
.ws8_c00026{word-spacing:13.032000px;}
.wsd_c00026{word-spacing:14.040000px;}
.wse_c00026{word-spacing:14.328000px;}
.ws14_c00026{word-spacing:14.616000px;}
.ws12_c00026{word-spacing:15.264000px;}
.ws13_c00026{word-spacing:21.672000px;}
.ws11_c00026{word-spacing:21.744000px;}
._0_c00026{margin-left:-480.336000px;}
._6_c00026{margin-left:-7.264800px;}
._3_c00026{margin-left:-6.120000px;}
._1_c00026{margin-left:-4.200000px;}
._4_c00026{margin-left:-2.160000px;}
._2_c00026{margin-left:-1.134000px;}
._5_c00026{width:6.984000px;}
.fc3_c00026{color:rgb(32,32,32);}
.fc2_c00026{color:rgb(233,83,14);}
.fc1_c00026{color:rgb(232,86,17);}
.fc4_c00026{color:rgb(157,157,156);}
.fc0_c00026{color:rgb(60,60,59);}
.fs1_c00026{font-size:42.000000px;}
.fs0_c00026{font-size:60.000000px;}
.fs5_c00026{font-size:66.000000px;}
.fs4_c00026{font-size:72.000000px;}
.fs3_c00026{font-size:84.000000px;}
.fs2_c00026{font-size:108.000000px;}
.y0_c00026{bottom:0.000000px;}
.y1_c00026{bottom:41.250000px;}
.y18_c00026{bottom:76.286700px;}
.y17_c00026{bottom:106.292700px;}
.y16_c00026{bottom:136.298700px;}
.y15_c00026{bottom:166.304700px;}
.y14_c00026{bottom:196.310700px;}
.y13_c00026{bottom:226.316700px;}
.y12_c00026{bottom:256.322700px;}
.y11_c00026{bottom:286.328700px;}
.y10_c00026{bottom:316.334700px;}
.yf_c00026{bottom:376.334700px;}
.ye_c00026{bottom:466.322700px;}
.yd_c00026{bottom:496.328700px;}
.yc_c00026{bottom:526.334700px;}
.yb_c00026{bottom:586.334700px;}
.ya_c00026{bottom:676.298700px;}
.y9_c00026{bottom:706.304700px;}
.y8_c00026{bottom:736.310700px;}
.y1d_c00026{bottom:736.561950px;}
.y7_c00026{bottom:766.316700px;}
.y1c_c00026{bottom:766.561950px;}
.y6_c00026{bottom:796.322700px;}
.y1b_c00026{bottom:796.561950px;}
.y5_c00026{bottom:826.328700px;}
.y1a_c00026{bottom:826.561950px;}
.y4_c00026{bottom:856.334700px;}
.y19_c00026{bottom:856.561950px;}
.y3_c00026{bottom:916.334700px;}
.y2_c00026{bottom:1006.334700px;}
.h6_c00026{height:50.292000px;}
.h2_c00026{height:54.000000px;}
.h5_c00026{height:64.800000px;}
.h4_c00026{height:78.540000px;}
.h3_c00026{height:100.980000px;}
.h0_c00026{height:1262.835000px;}
.h1_c00026{height:1263.000000px;}
.w0_c00026{width:892.914000px;}
.w1_c00026{width:893.250000px;}
.x0_c00026{left:0.000000px;}
.x2_c00026{left:82.500000px;}
.x3_c00026{left:90.000000px;}
.x4_c00026{left:106.500000px;}
.x5_c00026{left:675.611100px;}
.x1_c00026{left:796.463550px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls5_c00026{letter-spacing:-0.288000pt;}
.ls4_c00026{letter-spacing:0.000000pt;}
.ls0_c00026{letter-spacing:0.640000pt;}
.ls1_c00026{letter-spacing:0.746667pt;}
.ls3_c00026{letter-spacing:1.333333pt;}
.ls2_c00026{letter-spacing:1.466667pt;}
.ws1_c00026{word-spacing:-18.912000pt;}
.ws2_c00026{word-spacing:-15.680000pt;}
.ws3_c00026{word-spacing:-13.200000pt;}
.ws0_c00026{word-spacing:-9.066667pt;}
.ws16_c00026{word-spacing:-1.333333pt;}
.ws15_c00026{word-spacing:-0.832000pt;}
.ws5_c00026{word-spacing:-0.746667pt;}
.wsf_c00026{word-spacing:-0.640000pt;}
.ws4_c00026{word-spacing:0.000000pt;}
.wsa_c00026{word-spacing:1.024000pt;}
.ws7_c00026{word-spacing:1.664000pt;}
.wsc_c00026{word-spacing:3.072000pt;}
.wsb_c00026{word-spacing:4.224000pt;}
.ws6_c00026{word-spacing:4.672000pt;}
.ws10_c00026{word-spacing:5.568000pt;}
.ws9_c00026{word-spacing:9.536000pt;}
.ws8_c00026{word-spacing:11.584000pt;}
.wsd_c00026{word-spacing:12.480000pt;}
.wse_c00026{word-spacing:12.736000pt;}
.ws14_c00026{word-spacing:12.992000pt;}
.ws12_c00026{word-spacing:13.568000pt;}
.ws13_c00026{word-spacing:19.264000pt;}
.ws11_c00026{word-spacing:19.328000pt;}
._0_c00026{margin-left:-426.965333pt;}
._6_c00026{margin-left:-6.457600pt;}
._3_c00026{margin-left:-5.440000pt;}
._1_c00026{margin-left:-3.733333pt;}
._4_c00026{margin-left:-1.920000pt;}
._2_c00026{margin-left:-1.008000pt;}
._5_c00026{width:6.208000pt;}
.fs1_c00026{font-size:37.333333pt;}
.fs0_c00026{font-size:53.333333pt;}
.fs5_c00026{font-size:58.666667pt;}
.fs4_c00026{font-size:64.000000pt;}
.fs3_c00026{font-size:74.666667pt;}
.fs2_c00026{font-size:96.000000pt;}
.y0_c00026{bottom:0.000000pt;}
.y1_c00026{bottom:36.666667pt;}
.y18_c00026{bottom:67.810400pt;}
.y17_c00026{bottom:94.482400pt;}
.y16_c00026{bottom:121.154400pt;}
.y15_c00026{bottom:147.826400pt;}
.y14_c00026{bottom:174.498400pt;}
.y13_c00026{bottom:201.170400pt;}
.y12_c00026{bottom:227.842400pt;}
.y11_c00026{bottom:254.514400pt;}
.y10_c00026{bottom:281.186400pt;}
.yf_c00026{bottom:334.519733pt;}
.ye_c00026{bottom:414.509067pt;}
.yd_c00026{bottom:441.181067pt;}
.yc_c00026{bottom:467.853067pt;}
.yb_c00026{bottom:521.186400pt;}
.ya_c00026{bottom:601.154400pt;}
.y9_c00026{bottom:627.826400pt;}
.y8_c00026{bottom:654.498400pt;}
.y1d_c00026{bottom:654.721733pt;}
.y7_c00026{bottom:681.170400pt;}
.y1c_c00026{bottom:681.388400pt;}
.y6_c00026{bottom:707.842400pt;}
.y1b_c00026{bottom:708.055067pt;}
.y5_c00026{bottom:734.514400pt;}
.y1a_c00026{bottom:734.721733pt;}
.y4_c00026{bottom:761.186400pt;}
.y19_c00026{bottom:761.388400pt;}
.y3_c00026{bottom:814.519733pt;}
.y2_c00026{bottom:894.519733pt;}
.h6_c00026{height:44.704000pt;}
.h2_c00026{height:48.000000pt;}
.h5_c00026{height:57.600000pt;}
.h4_c00026{height:69.813333pt;}
.h3_c00026{height:89.760000pt;}
.h0_c00026{height:1122.520000pt;}
.h1_c00026{height:1122.666667pt;}
.w0_c00026{width:793.701333pt;}
.w1_c00026{width:794.000000pt;}
.x0_c00026{left:0.000000pt;}
.x2_c00026{left:73.333333pt;}
.x3_c00026{left:80.000000pt;}
.x4_c00026{left:94.666667pt;}
.x5_c00026{left:600.543200pt;}
.x1_c00026{left:707.967600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00fc3b9b31edc3a6a72e442f.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.199000;font-style: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);}
.m1_c00027{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls1_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:0.720000px;}
.ls2_c00027{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws6_c00027{word-spacing:-3.168000px;}
.ws2_c00027{word-spacing:-0.840000px;}
.ws1_c00027{word-spacing:0.000000px;}
.ws3_c00027{word-spacing:1.080000px;}
.ws5_c00027{word-spacing:1.152000px;}
.wsa_c00027{word-spacing:6.192000px;}
.ws7_c00027{word-spacing:6.264000px;}
.ws8_c00027{word-spacing:6.480000px;}
.ws4_c00027{word-spacing:10.152000px;}
.ws9_c00027{word-spacing:11.160000px;}
._0_c00027{margin-left:-480.336000px;}
._4_c00027{margin-left:-5.400000px;}
._1_c00027{margin-left:-4.200000px;}
._3_c00027{margin-left:-2.584800px;}
._2_c00027{margin-left:-1.440000px;}
.fc2_c00027{color:rgb(32,32,32);}
.fc1_c00027{color:rgb(232,86,17);}
.fc0_c00027{color:rgb(60,60,59);}
.fs1_c00027{font-size:42.000000px;}
.fs0_c00027{font-size:60.000000px;}
.fs3_c00027{font-size:72.000000px;}
.fs2_c00027{font-size:84.000000px;}
.y0_c00027{bottom:0.000000px;}
.y1_c00027{bottom:41.250000px;}
.yd_c00027{bottom:556.322700px;}
.yc_c00027{bottom:586.328700px;}
.yb_c00027{bottom:616.334700px;}
.ya_c00027{bottom:676.334700px;}
.y9_c00027{bottom:766.298700px;}
.y8_c00027{bottom:796.304700px;}
.y7_c00027{bottom:826.310700px;}
.y6_c00027{bottom:856.316700px;}
.y5_c00027{bottom:886.322700px;}
.y4_c00027{bottom:916.328700px;}
.y3_c00027{bottom:946.334700px;}
.y2_c00027{bottom:1006.334700px;}
.h2_c00027{height:54.000000px;}
.h4_c00027{height:64.800000px;}
.h3_c00027{height:78.540000px;}
.h0_c00027{height:1262.835000px;}
.h1_c00027{height:1263.000000px;}
.w0_c00027{width:892.914000px;}
.w1_c00027{width:893.250000px;}
.x0_c00027{left:0.000000px;}
.x2_c00027{left:90.000000px;}
.x3_c00027{left:106.500000px;}
.x1_c00027{left:794.438550px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls1_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:0.640000pt;}
.ls2_c00027{letter-spacing:0.746667pt;}
.ws0_c00027{word-spacing:-9.066667pt;}
.ws6_c00027{word-spacing:-2.816000pt;}
.ws2_c00027{word-spacing:-0.746667pt;}
.ws1_c00027{word-spacing:0.000000pt;}
.ws3_c00027{word-spacing:0.960000pt;}
.ws5_c00027{word-spacing:1.024000pt;}
.wsa_c00027{word-spacing:5.504000pt;}
.ws7_c00027{word-spacing:5.568000pt;}
.ws8_c00027{word-spacing:5.760000pt;}
.ws4_c00027{word-spacing:9.024000pt;}
.ws9_c00027{word-spacing:9.920000pt;}
._0_c00027{margin-left:-426.965333pt;}
._4_c00027{margin-left:-4.800000pt;}
._1_c00027{margin-left:-3.733333pt;}
._3_c00027{margin-left:-2.297600pt;}
._2_c00027{margin-left:-1.280000pt;}
.fs1_c00027{font-size:37.333333pt;}
.fs0_c00027{font-size:53.333333pt;}
.fs3_c00027{font-size:64.000000pt;}
.fs2_c00027{font-size:74.666667pt;}
.y0_c00027{bottom:0.000000pt;}
.y1_c00027{bottom:36.666667pt;}
.yd_c00027{bottom:494.509067pt;}
.yc_c00027{bottom:521.181067pt;}
.yb_c00027{bottom:547.853067pt;}
.ya_c00027{bottom:601.186400pt;}
.y9_c00027{bottom:681.154400pt;}
.y8_c00027{bottom:707.826400pt;}
.y7_c00027{bottom:734.498400pt;}
.y6_c00027{bottom:761.170400pt;}
.y5_c00027{bottom:787.842400pt;}
.y4_c00027{bottom:814.514400pt;}
.y3_c00027{bottom:841.186400pt;}
.y2_c00027{bottom:894.519733pt;}
.h2_c00027{height:48.000000pt;}
.h4_c00027{height:57.600000pt;}
.h3_c00027{height:69.813333pt;}
.h0_c00027{height:1122.520000pt;}
.h1_c00027{height:1122.666667pt;}
.w0_c00027{width:793.701333pt;}
.w1_c00027{width:794.000000pt;}
.x0_c00027{left:0.000000pt;}
.x2_c00027{left:80.000000pt;}
.x3_c00027{left:94.666667pt;}
.x1_c00027{left:706.167600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00028;src:url('chunks/assets/font_99270e4956c05eea87de103c.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00028;src:url('chunks/assets/font_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00028;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00028{font-family:ff5_c00028;line-height:1.155000;font-style: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);}
.m1_c00028{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls2_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:0.864000px;}
.ls1_c00028{letter-spacing:1.200000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00028{word-spacing:-13.104000px;}
.ws0_c00028{word-spacing:-10.200000px;}
.ws5_c00028{word-spacing:-3.816000px;}
.ws3_c00028{word-spacing:-3.528000px;}
.ws4_c00028{word-spacing:-0.864000px;}
.ws2_c00028{word-spacing:0.000000px;}
._0_c00028{margin-left:-480.336000px;}
._7_c00028{margin-left:-10.200000px;}
._4_c00028{margin-left:-7.848000px;}
._5_c00028{margin-left:-6.480000px;}
._1_c00028{margin-left:-4.200000px;}
._6_c00028{margin-left:-3.120000px;}
._3_c00028{margin-left:-1.440000px;}
._8_c00028{width:1.800000px;}
._2_c00028{width:3.528000px;}
.fc3_c00028{color:rgb(255,255,255);}
.fc2_c00028{color:rgb(233,83,14);}
.fc1_c00028{color:rgb(232,86,17);}
.fc0_c00028{color:rgb(60,60,59);}
.fs1_c00028{font-size:42.000000px;}
.fs0_c00028{font-size:60.000000px;}
.fs3_c00028{font-size:72.000000px;}
.fs4_c00028{font-size:120.000000px;}
.fs2_c00028{font-size:360.000000px;}
.y0_c00028{bottom:0.000000px;}
.y1_c00028{bottom:41.250000px;}
.y9_c00028{bottom:574.328700px;}
.y8_c00028{bottom:595.334700px;}
.y7_c00028{bottom:616.340700px;}
.y6_c00028{bottom:663.734700px;}
.y5_c00028{bottom:685.334700px;}
.y4_c00028{bottom:706.340700px;}
.y3_c00028{bottom:752.834700px;}
.yb_c00028{bottom:976.334700px;}
.ya_c00028{bottom:1006.334700px;}
.y2_c00028{bottom:1093.526700px;}
.h2_c00028{height:54.000000px;}
.h5_c00028{height:64.800000px;}
.h4_c00028{height:66.456000px;}
.h6_c00028{height:112.200000px;}
.h3_c00028{height:324.000000px;}
.h0_c00028{height:1262.835000px;}
.h1_c00028{height:1263.000000px;}
.w0_c00028{width:892.914000px;}
.w1_c00028{width:893.250000px;}
.x0_c00028{left:0.000000px;}
.x2_c00028{left:81.290250px;}
.x3_c00028{left:82.393650px;}
.x5_c00028{left:112.287450px;}
.x4_c00028{left:127.393650px;}
.x1_c00028{left:794.363550px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls2_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:0.768000pt;}
.ls1_c00028{letter-spacing:1.066667pt;}
.ws1_c00028{word-spacing:-11.648000pt;}
.ws0_c00028{word-spacing:-9.066667pt;}
.ws5_c00028{word-spacing:-3.392000pt;}
.ws3_c00028{word-spacing:-3.136000pt;}
.ws4_c00028{word-spacing:-0.768000pt;}
.ws2_c00028{word-spacing:0.000000pt;}
._0_c00028{margin-left:-426.965333pt;}
._7_c00028{margin-left:-9.066667pt;}
._4_c00028{margin-left:-6.976000pt;}
._5_c00028{margin-left:-5.760000pt;}
._1_c00028{margin-left:-3.733333pt;}
._6_c00028{margin-left:-2.773333pt;}
._3_c00028{margin-left:-1.280000pt;}
._8_c00028{width:1.600000pt;}
._2_c00028{width:3.136000pt;}
.fs1_c00028{font-size:37.333333pt;}
.fs0_c00028{font-size:53.333333pt;}
.fs3_c00028{font-size:64.000000pt;}
.fs4_c00028{font-size:106.666667pt;}
.fs2_c00028{font-size:320.000000pt;}
.y0_c00028{bottom:0.000000pt;}
.y1_c00028{bottom:36.666667pt;}
.y9_c00028{bottom:510.514400pt;}
.y8_c00028{bottom:529.186400pt;}
.y7_c00028{bottom:547.858400pt;}
.y6_c00028{bottom:589.986400pt;}
.y5_c00028{bottom:609.186400pt;}
.y4_c00028{bottom:627.858400pt;}
.y3_c00028{bottom:669.186400pt;}
.yb_c00028{bottom:867.853067pt;}
.ya_c00028{bottom:894.519733pt;}
.y2_c00028{bottom:972.023733pt;}
.h2_c00028{height:48.000000pt;}
.h5_c00028{height:57.600000pt;}
.h4_c00028{height:59.072000pt;}
.h6_c00028{height:99.733333pt;}
.h3_c00028{height:288.000000pt;}
.h0_c00028{height:1122.520000pt;}
.h1_c00028{height:1122.666667pt;}
.w0_c00028{width:793.701333pt;}
.w1_c00028{width:794.000000pt;}
.x0_c00028{left:0.000000pt;}
.x2_c00028{left:72.258000pt;}
.x3_c00028{left:73.238800pt;}
.x5_c00028{left:99.811067pt;}
.x4_c00028{left:113.238800pt;}
.x1_c00028{left:706.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_8044500461936b1776693626.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00029;src:url('chunks/assets/font_c9b8fdba265e8fff572ae7ce.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00029{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls5_c00029{letter-spacing:-0.540000px;}
.ls4_c00029{letter-spacing:0.000000px;}
.ls0_c00029{letter-spacing:0.720000px;}
.ls1_c00029{letter-spacing:0.840000px;}
.ls3_c00029{letter-spacing:1.500000px;}
.ls2_c00029{letter-spacing:1.650000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00029{word-spacing:-21.060000px;}
.ws2_c00029{word-spacing:-17.640000px;}
.ws3_c00029{word-spacing:-11.700000px;}
.ws0_c00029{word-spacing:-10.200000px;}
.ws14_c00029{word-spacing:-1.800000px;}
.wsf_c00029{word-spacing:-1.224000px;}
.ws5_c00029{word-spacing:-0.840000px;}
.ws4_c00029{word-spacing:0.000000px;}
.wsd_c00029{word-spacing:1.800000px;}
.wsc_c00029{word-spacing:2.808000px;}
.wsb_c00029{word-spacing:3.456000px;}
.ws10_c00029{word-spacing:3.888000px;}
.wse_c00029{word-spacing:4.320000px;}
.ws8_c00029{word-spacing:5.256000px;}
.ws12_c00029{word-spacing:5.904000px;}
.wsa_c00029{word-spacing:5.976000px;}
.ws13_c00029{word-spacing:6.552000px;}
.ws7_c00029{word-spacing:10.152000px;}
.ws6_c00029{word-spacing:12.672000px;}
.ws11_c00029{word-spacing:15.048000px;}
.ws9_c00029{word-spacing:17.928000px;}
._0_c00029{margin-left:-480.336600px;}
._3_c00029{margin-left:-8.654400px;}
._4_c00029{margin-left:-7.200000px;}
._1_c00029{margin-left:-4.200000px;}
._2_c00029{margin-left:-1.432800px;}
.fc3_c00029{color:rgb(32,32,32);}
.fc2_c00029{color:rgb(233,83,14);}
.fc1_c00029{color:rgb(232,86,17);}
.fc4_c00029{color:rgb(157,157,156);}
.fc0_c00029{color:rgb(60,60,59);}
.fs1_c00029{font-size:42.000000px;}
.fs0_c00029{font-size:60.000000px;}
.fs5_c00029{font-size:66.000000px;}
.fs4_c00029{font-size:72.000000px;}
.fs3_c00029{font-size:84.000000px;}
.fs2_c00029{font-size:108.000000px;}
.y0_c00029{bottom:0.000000px;}
.y1_c00029{bottom:41.250000px;}
.y17_c00029{bottom:106.316700px;}
.y16_c00029{bottom:136.322700px;}
.y15_c00029{bottom:166.328700px;}
.y14_c00029{bottom:196.334700px;}
.y13_c00029{bottom:256.334700px;}
.y12_c00029{bottom:346.298700px;}
.y11_c00029{bottom:376.304700px;}
.y10_c00029{bottom:406.310700px;}
.yf_c00029{bottom:436.316700px;}
.ye_c00029{bottom:466.322700px;}
.yd_c00029{bottom:496.328700px;}
.yc_c00029{bottom:526.334700px;}
.yb_c00029{bottom:586.334700px;}
.ya_c00029{bottom:676.298700px;}
.y1e_c00029{bottom:676.561950px;}
.y9_c00029{bottom:706.304700px;}
.y1d_c00029{bottom:706.561950px;}
.y8_c00029{bottom:736.310700px;}
.y1c_c00029{bottom:736.561950px;}
.y7_c00029{bottom:766.316700px;}
.y1b_c00029{bottom:766.561950px;}
.y6_c00029{bottom:796.322700px;}
.y1a_c00029{bottom:796.561950px;}
.y5_c00029{bottom:826.328700px;}
.y19_c00029{bottom:826.561950px;}
.y4_c00029{bottom:856.334700px;}
.y18_c00029{bottom:856.561950px;}
.y3_c00029{bottom:916.334700px;}
.y2_c00029{bottom:1006.334700px;}
.h6_c00029{height:50.292000px;}
.h2_c00029{height:54.000000px;}
.h5_c00029{height:64.800000px;}
.h4_c00029{height:78.540000px;}
.h3_c00029{height:100.980000px;}
.h0_c00029{height:1262.835000px;}
.h1_c00029{height:1263.000000px;}
.w0_c00029{width:892.914000px;}
.w1_c00029{width:893.250000px;}
.x0_c00029{left:0.000000px;}
.x2_c00029{left:82.500000px;}
.x3_c00029{left:90.000000px;}
.x4_c00029{left:106.500000px;}
.x5_c00029{left:675.611100px;}
.x1_c00029{left:794.228700px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls5_c00029{letter-spacing:-0.480000pt;}
.ls4_c00029{letter-spacing:0.000000pt;}
.ls0_c00029{letter-spacing:0.640000pt;}
.ls1_c00029{letter-spacing:0.746667pt;}
.ls3_c00029{letter-spacing:1.333333pt;}
.ls2_c00029{letter-spacing:1.466667pt;}
.ws1_c00029{word-spacing:-18.720000pt;}
.ws2_c00029{word-spacing:-15.680000pt;}
.ws3_c00029{word-spacing:-10.400000pt;}
.ws0_c00029{word-spacing:-9.066667pt;}
.ws14_c00029{word-spacing:-1.600000pt;}
.wsf_c00029{word-spacing:-1.088000pt;}
.ws5_c00029{word-spacing:-0.746667pt;}
.ws4_c00029{word-spacing:0.000000pt;}
.wsd_c00029{word-spacing:1.600000pt;}
.wsc_c00029{word-spacing:2.496000pt;}
.wsb_c00029{word-spacing:3.072000pt;}
.ws10_c00029{word-spacing:3.456000pt;}
.wse_c00029{word-spacing:3.840000pt;}
.ws8_c00029{word-spacing:4.672000pt;}
.ws12_c00029{word-spacing:5.248000pt;}
.wsa_c00029{word-spacing:5.312000pt;}
.ws13_c00029{word-spacing:5.824000pt;}
.ws7_c00029{word-spacing:9.024000pt;}
.ws6_c00029{word-spacing:11.264000pt;}
.ws11_c00029{word-spacing:13.376000pt;}
.ws9_c00029{word-spacing:15.936000pt;}
._0_c00029{margin-left:-426.965867pt;}
._3_c00029{margin-left:-7.692800pt;}
._4_c00029{margin-left:-6.400000pt;}
._1_c00029{margin-left:-3.733333pt;}
._2_c00029{margin-left:-1.273600pt;}
.fs1_c00029{font-size:37.333333pt;}
.fs0_c00029{font-size:53.333333pt;}
.fs5_c00029{font-size:58.666667pt;}
.fs4_c00029{font-size:64.000000pt;}
.fs3_c00029{font-size:74.666667pt;}
.fs2_c00029{font-size:96.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.y1_c00029{bottom:36.666667pt;}
.y17_c00029{bottom:94.503733pt;}
.y16_c00029{bottom:121.175733pt;}
.y15_c00029{bottom:147.847733pt;}
.y14_c00029{bottom:174.519733pt;}
.y13_c00029{bottom:227.853067pt;}
.y12_c00029{bottom:307.821067pt;}
.y11_c00029{bottom:334.493067pt;}
.y10_c00029{bottom:361.165067pt;}
.yf_c00029{bottom:387.837067pt;}
.ye_c00029{bottom:414.509067pt;}
.yd_c00029{bottom:441.181067pt;}
.yc_c00029{bottom:467.853067pt;}
.yb_c00029{bottom:521.186400pt;}
.ya_c00029{bottom:601.154400pt;}
.y1e_c00029{bottom:601.388400pt;}
.y9_c00029{bottom:627.826400pt;}
.y1d_c00029{bottom:628.055067pt;}
.y8_c00029{bottom:654.498400pt;}
.y1c_c00029{bottom:654.721733pt;}
.y7_c00029{bottom:681.170400pt;}
.y1b_c00029{bottom:681.388400pt;}
.y6_c00029{bottom:707.842400pt;}
.y1a_c00029{bottom:708.055067pt;}
.y5_c00029{bottom:734.514400pt;}
.y19_c00029{bottom:734.721733pt;}
.y4_c00029{bottom:761.186400pt;}
.y18_c00029{bottom:761.388400pt;}
.y3_c00029{bottom:814.519733pt;}
.y2_c00029{bottom:894.519733pt;}
.h6_c00029{height:44.704000pt;}
.h2_c00029{height:48.000000pt;}
.h5_c00029{height:57.600000pt;}
.h4_c00029{height:69.813333pt;}
.h3_c00029{height:89.760000pt;}
.h0_c00029{height:1122.520000pt;}
.h1_c00029{height:1122.666667pt;}
.w0_c00029{width:793.701333pt;}
.w1_c00029{width:794.000000pt;}
.x0_c00029{left:0.000000pt;}
.x2_c00029{left:73.333333pt;}
.x3_c00029{left:80.000000pt;}
.x4_c00029{left:94.666667pt;}
.x5_c00029{left:600.543200pt;}
.x1_c00029{left:705.981067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00030;src:url('chunks/assets/font_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.199000;font-style: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);}
.m1_c00030{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls1_c00030{letter-spacing:0.000000px;}
.ls0_c00030{letter-spacing:0.720000px;}
.ls2_c00030{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsc_c00030{word-spacing:-1.368000px;}
.ws7_c00030{word-spacing:-0.864000px;}
.ws2_c00030{word-spacing:-0.840000px;}
.ws1_c00030{word-spacing:0.000000px;}
.ws9_c00030{word-spacing:0.864000px;}
.wsa_c00030{word-spacing:2.088000px;}
.ws4_c00030{word-spacing:2.520000px;}
.ws3_c00030{word-spacing:4.248000px;}
.ws5_c00030{word-spacing:4.320000px;}
.ws6_c00030{word-spacing:10.224000px;}
.wsb_c00030{word-spacing:12.528000px;}
.ws8_c00030{word-spacing:13.680000px;}
._0_c00030{margin-left:-480.337200px;}
._1_c00030{margin-left:-4.200000px;}
._2_c00030{margin-left:-2.160000px;}
._3_c00030{width:13.708800px;}
.fc2_c00030{color:rgb(32,32,32);}
.fc1_c00030{color:rgb(232,86,17);}
.fc0_c00030{color:rgb(60,60,59);}
.fs1_c00030{font-size:42.000000px;}
.fs0_c00030{font-size:60.000000px;}
.fs3_c00030{font-size:72.000000px;}
.fs2_c00030{font-size:84.000000px;}
.y0_c00030{bottom:0.000000px;}
.y1_c00030{bottom:41.250000px;}
.ye_c00030{bottom:526.310700px;}
.yd_c00030{bottom:556.316700px;}
.yc_c00030{bottom:586.322700px;}
.yb_c00030{bottom:616.328700px;}
.ya_c00030{bottom:646.334700px;}
.y9_c00030{bottom:706.334700px;}
.y8_c00030{bottom:796.304700px;}
.y7_c00030{bottom:826.310700px;}
.y6_c00030{bottom:856.316700px;}
.y5_c00030{bottom:886.322700px;}
.y4_c00030{bottom:916.328700px;}
.y3_c00030{bottom:946.334700px;}
.y2_c00030{bottom:1006.334700px;}
.h2_c00030{height:54.000000px;}
.h4_c00030{height:64.800000px;}
.h3_c00030{height:78.540000px;}
.h0_c00030{height:1262.835000px;}
.h1_c00030{height:1263.000000px;}
.w0_c00030{width:892.914000px;}
.w1_c00030{width:893.250000px;}
.x0_c00030{left:0.000000px;}
.x2_c00030{left:90.000000px;}
.x3_c00030{left:106.500000px;}
.x1_c00030{left:797.888850px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls1_c00030{letter-spacing:0.000000pt;}
.ls0_c00030{letter-spacing:0.640000pt;}
.ls2_c00030{letter-spacing:0.746667pt;}
.ws0_c00030{word-spacing:-9.066667pt;}
.wsc_c00030{word-spacing:-1.216000pt;}
.ws7_c00030{word-spacing:-0.768000pt;}
.ws2_c00030{word-spacing:-0.746667pt;}
.ws1_c00030{word-spacing:0.000000pt;}
.ws9_c00030{word-spacing:0.768000pt;}
.wsa_c00030{word-spacing:1.856000pt;}
.ws4_c00030{word-spacing:2.240000pt;}
.ws3_c00030{word-spacing:3.776000pt;}
.ws5_c00030{word-spacing:3.840000pt;}
.ws6_c00030{word-spacing:9.088000pt;}
.wsb_c00030{word-spacing:11.136000pt;}
.ws8_c00030{word-spacing:12.160000pt;}
._0_c00030{margin-left:-426.966400pt;}
._1_c00030{margin-left:-3.733333pt;}
._2_c00030{margin-left:-1.920000pt;}
._3_c00030{width:12.185600pt;}
.fs1_c00030{font-size:37.333333pt;}
.fs0_c00030{font-size:53.333333pt;}
.fs3_c00030{font-size:64.000000pt;}
.fs2_c00030{font-size:74.666667pt;}
.y0_c00030{bottom:0.000000pt;}
.y1_c00030{bottom:36.666667pt;}
.ye_c00030{bottom:467.831733pt;}
.yd_c00030{bottom:494.503733pt;}
.yc_c00030{bottom:521.175733pt;}
.yb_c00030{bottom:547.847733pt;}
.ya_c00030{bottom:574.519733pt;}
.y9_c00030{bottom:627.853067pt;}
.y8_c00030{bottom:707.826400pt;}
.y7_c00030{bottom:734.498400pt;}
.y6_c00030{bottom:761.170400pt;}
.y5_c00030{bottom:787.842400pt;}
.y4_c00030{bottom:814.514400pt;}
.y3_c00030{bottom:841.186400pt;}
.y2_c00030{bottom:894.519733pt;}
.h2_c00030{height:48.000000pt;}
.h4_c00030{height:57.600000pt;}
.h3_c00030{height:69.813333pt;}
.h0_c00030{height:1122.520000pt;}
.h1_c00030{height:1122.666667pt;}
.w0_c00030{width:793.701333pt;}
.w1_c00030{width:794.000000pt;}
.x0_c00030{left:0.000000pt;}
.x2_c00030{left:80.000000pt;}
.x3_c00030{left:94.666667pt;}
.x1_c00030{left:709.234533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09baf8cd2945c6e6d5da27e7.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.160000;font-style:normal;font-weight:normal;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_e04a0991b070062a3f74fe43.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00031;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.161000;font-style: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);}
.m1_c00031{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls5_c00031{letter-spacing:-0.324000px;}
.ls4_c00031{letter-spacing:0.000000px;}
.ls0_c00031{letter-spacing:0.720000px;}
.ls1_c00031{letter-spacing:0.840000px;}
.ls3_c00031{letter-spacing:1.500000px;}
.ls2_c00031{letter-spacing:1.650000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00031{word-spacing:-21.276000px;}
.ws2_c00031{word-spacing:-17.640000px;}
.ws3_c00031{word-spacing:-14.850000px;}
.ws0_c00031{word-spacing:-10.200000px;}
.wsd_c00031{word-spacing:-4.680000px;}
.ws6_c00031{word-spacing:-3.096000px;}
.ws10_c00031{word-spacing:-2.592000px;}
.wsf_c00031{word-spacing:-1.368000px;}
.ws7_c00031{word-spacing:-0.936000px;}
.ws5_c00031{word-spacing:-0.840000px;}
.ws4_c00031{word-spacing:0.000000px;}
.wse_c00031{word-spacing:4.032000px;}
.ws8_c00031{word-spacing:4.896000px;}
.ws11_c00031{word-spacing:6.192000px;}
.wsa_c00031{word-spacing:8.352000px;}
.ws12_c00031{word-spacing:8.424000px;}
.wsb_c00031{word-spacing:9.216000px;}
.wsc_c00031{word-spacing:11.952000px;}
.ws9_c00031{word-spacing:14.544000px;}
._0_c00031{margin-left:-480.336600px;}
._4_c00031{margin-left:-8.676000px;}
._5_c00031{margin-left:-7.200000px;}
._1_c00031{margin-left:-4.200000px;}
._3_c00031{margin-left:-2.160000px;}
._2_c00031{margin-left:-1.134000px;}
.fc3_c00031{color:rgb(32,32,32);}
.fc2_c00031{color:rgb(233,83,14);}
.fc1_c00031{color:rgb(232,86,17);}
.fc4_c00031{color:rgb(157,157,156);}
.fc0_c00031{color:rgb(60,60,59);}
.fs1_c00031{font-size:42.000000px;}
.fs0_c00031{font-size:60.000000px;}
.fs5_c00031{font-size:66.000000px;}
.fs4_c00031{font-size:72.000000px;}
.fs3_c00031{font-size:84.000000px;}
.fs2_c00031{font-size:108.000000px;}
.y0_c00031{bottom:0.000000px;}
.y1_c00031{bottom:41.250000px;}
.y15_c00031{bottom:166.316700px;}
.y14_c00031{bottom:196.322700px;}
.y13_c00031{bottom:226.328700px;}
.y12_c00031{bottom:256.334700px;}
.y11_c00031{bottom:316.334700px;}
.y10_c00031{bottom:406.304700px;}
.yf_c00031{bottom:436.310700px;}
.ye_c00031{bottom:466.316700px;}
.yd_c00031{bottom:496.322700px;}
.yc_c00031{bottom:526.328700px;}
.yb_c00031{bottom:556.334700px;}
.ya_c00031{bottom:616.334700px;}
.y1c_c00031{bottom:676.334700px;}
.y9_c00031{bottom:706.304700px;}
.y1b_c00031{bottom:706.334700px;}
.y8_c00031{bottom:736.310700px;}
.y1a_c00031{bottom:736.334700px;}
.y7_c00031{bottom:766.316700px;}
.y19_c00031{bottom:766.334700px;}
.y6_c00031{bottom:796.322700px;}
.y18_c00031{bottom:796.334700px;}
.y5_c00031{bottom:826.328700px;}
.y17_c00031{bottom:826.334700px;}
.y4_c00031{bottom:856.334700px;}
.y16_c00031{bottom:856.561950px;}
.y3_c00031{bottom:916.334700px;}
.y2_c00031{bottom:1006.334700px;}
.h6_c00031{height:50.292000px;}
.h2_c00031{height:54.000000px;}
.h5_c00031{height:64.800000px;}
.h4_c00031{height:78.540000px;}
.h3_c00031{height:100.980000px;}
.h0_c00031{height:1262.835000px;}
.h1_c00031{height:1263.000000px;}
.w0_c00031{width:892.914000px;}
.w1_c00031{width:893.250000px;}
.x0_c00031{left:0.000000px;}
.x2_c00031{left:82.500000px;}
.x3_c00031{left:90.000000px;}
.x4_c00031{left:106.500000px;}
.x5_c00031{left:675.611100px;}
.x1_c00031{left:795.413700px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls5_c00031{letter-spacing:-0.288000pt;}
.ls4_c00031{letter-spacing:0.000000pt;}
.ls0_c00031{letter-spacing:0.640000pt;}
.ls1_c00031{letter-spacing:0.746667pt;}
.ls3_c00031{letter-spacing:1.333333pt;}
.ls2_c00031{letter-spacing:1.466667pt;}
.ws1_c00031{word-spacing:-18.912000pt;}
.ws2_c00031{word-spacing:-15.680000pt;}
.ws3_c00031{word-spacing:-13.200000pt;}
.ws0_c00031{word-spacing:-9.066667pt;}
.wsd_c00031{word-spacing:-4.160000pt;}
.ws6_c00031{word-spacing:-2.752000pt;}
.ws10_c00031{word-spacing:-2.304000pt;}
.wsf_c00031{word-spacing:-1.216000pt;}
.ws7_c00031{word-spacing:-0.832000pt;}
.ws5_c00031{word-spacing:-0.746667pt;}
.ws4_c00031{word-spacing:0.000000pt;}
.wse_c00031{word-spacing:3.584000pt;}
.ws8_c00031{word-spacing:4.352000pt;}
.ws11_c00031{word-spacing:5.504000pt;}
.wsa_c00031{word-spacing:7.424000pt;}
.ws12_c00031{word-spacing:7.488000pt;}
.wsb_c00031{word-spacing:8.192000pt;}
.wsc_c00031{word-spacing:10.624000pt;}
.ws9_c00031{word-spacing:12.928000pt;}
._0_c00031{margin-left:-426.965867pt;}
._4_c00031{margin-left:-7.712000pt;}
._5_c00031{margin-left:-6.400000pt;}
._1_c00031{margin-left:-3.733333pt;}
._3_c00031{margin-left:-1.920000pt;}
._2_c00031{margin-left:-1.008000pt;}
.fs1_c00031{font-size:37.333333pt;}
.fs0_c00031{font-size:53.333333pt;}
.fs5_c00031{font-size:58.666667pt;}
.fs4_c00031{font-size:64.000000pt;}
.fs3_c00031{font-size:74.666667pt;}
.fs2_c00031{font-size:96.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y1_c00031{bottom:36.666667pt;}
.y15_c00031{bottom:147.837067pt;}
.y14_c00031{bottom:174.509067pt;}
.y13_c00031{bottom:201.181067pt;}
.y12_c00031{bottom:227.853067pt;}
.y11_c00031{bottom:281.186400pt;}
.y10_c00031{bottom:361.159733pt;}
.yf_c00031{bottom:387.831733pt;}
.ye_c00031{bottom:414.503733pt;}
.yd_c00031{bottom:441.175733pt;}
.yc_c00031{bottom:467.847733pt;}
.yb_c00031{bottom:494.519733pt;}
.ya_c00031{bottom:547.853067pt;}
.y1c_c00031{bottom:601.186400pt;}
.y9_c00031{bottom:627.826400pt;}
.y1b_c00031{bottom:627.853067pt;}
.y8_c00031{bottom:654.498400pt;}
.y1a_c00031{bottom:654.519733pt;}
.y7_c00031{bottom:681.170400pt;}
.y19_c00031{bottom:681.186400pt;}
.y6_c00031{bottom:707.842400pt;}
.y18_c00031{bottom:707.853067pt;}
.y5_c00031{bottom:734.514400pt;}
.y17_c00031{bottom:734.519733pt;}
.y4_c00031{bottom:761.186400pt;}
.y16_c00031{bottom:761.388400pt;}
.y3_c00031{bottom:814.519733pt;}
.y2_c00031{bottom:894.519733pt;}
.h6_c00031{height:44.704000pt;}
.h2_c00031{height:48.000000pt;}
.h5_c00031{height:57.600000pt;}
.h4_c00031{height:69.813333pt;}
.h3_c00031{height:89.760000pt;}
.h0_c00031{height:1122.520000pt;}
.h1_c00031{height:1122.666667pt;}
.w0_c00031{width:793.701333pt;}
.w1_c00031{width:794.000000pt;}
.x0_c00031{left:0.000000pt;}
.x2_c00031{left:73.333333pt;}
.x3_c00031{left:80.000000pt;}
.x4_c00031{left:94.666667pt;}
.x5_c00031{left:600.543200pt;}
.x1_c00031{left:707.034400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_955365740da4e6f4ebed5820.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00032;src:url('chunks/assets/font_a68ad7a870d15bf4aca4d2a2.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.199000;font-style: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);}
.m1_c00032{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls2_c00032{letter-spacing:0.000000px;}
.ls1_c00032{letter-spacing:0.720000px;}
.ls0_c00032{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws8_c00032{word-spacing:-3.384000px;}
.ws3_c00032{word-spacing:-2.808000px;}
.ws9_c00032{word-spacing:-1.296000px;}
.ws7_c00032{word-spacing:-1.008000px;}
.ws2_c00032{word-spacing:-0.840000px;}
.ws6_c00032{word-spacing:-0.504000px;}
.ws1_c00032{word-spacing:0.000000px;}
.ws5_c00032{word-spacing:0.072000px;}
.ws4_c00032{word-spacing:2.520000px;}
._0_c00032{margin-left:-480.336600px;}
._1_c00032{margin-left:-4.200000px;}
._3_c00032{margin-left:-2.973600px;}
._2_c00032{margin-left:-1.432800px;}
.fc2_c00032{color:rgb(32,32,32);}
.fc1_c00032{color:rgb(232,86,17);}
.fc0_c00032{color:rgb(60,60,59);}
.fs1_c00032{font-size:42.000000px;}
.fs0_c00032{font-size:60.000000px;}
.fs3_c00032{font-size:72.000000px;}
.fs2_c00032{font-size:84.000000px;}
.y0_c00032{bottom:0.000000px;}
.y1_c00032{bottom:41.250000px;}
.yc_c00032{bottom:586.316700px;}
.yb_c00032{bottom:616.322700px;}
.ya_c00032{bottom:646.328700px;}
.y9_c00032{bottom:676.334700px;}
.y8_c00032{bottom:736.334700px;}
.y7_c00032{bottom:826.310700px;}
.y6_c00032{bottom:856.316700px;}
.y5_c00032{bottom:886.322700px;}
.y4_c00032{bottom:916.328700px;}
.y3_c00032{bottom:946.334700px;}
.y2_c00032{bottom:1006.334700px;}
.h2_c00032{height:54.000000px;}
.h4_c00032{height:64.800000px;}
.h3_c00032{height:78.540000px;}
.h0_c00032{height:1262.835000px;}
.h1_c00032{height:1263.000000px;}
.w0_c00032{width:892.914000px;}
.w1_c00032{width:893.250000px;}
.x0_c00032{left:0.000000px;}
.x2_c00032{left:90.000000px;}
.x3_c00032{left:106.500000px;}
.x1_c00032{left:795.263700px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls2_c00032{letter-spacing:0.000000pt;}
.ls1_c00032{letter-spacing:0.640000pt;}
.ls0_c00032{letter-spacing:0.746667pt;}
.ws0_c00032{word-spacing:-9.066667pt;}
.ws8_c00032{word-spacing:-3.008000pt;}
.ws3_c00032{word-spacing:-2.496000pt;}
.ws9_c00032{word-spacing:-1.152000pt;}
.ws7_c00032{word-spacing:-0.896000pt;}
.ws2_c00032{word-spacing:-0.746667pt;}
.ws6_c00032{word-spacing:-0.448000pt;}
.ws1_c00032{word-spacing:0.000000pt;}
.ws5_c00032{word-spacing:0.064000pt;}
.ws4_c00032{word-spacing:2.240000pt;}
._0_c00032{margin-left:-426.965867pt;}
._1_c00032{margin-left:-3.733333pt;}
._3_c00032{margin-left:-2.643200pt;}
._2_c00032{margin-left:-1.273600pt;}
.fs1_c00032{font-size:37.333333pt;}
.fs0_c00032{font-size:53.333333pt;}
.fs3_c00032{font-size:64.000000pt;}
.fs2_c00032{font-size:74.666667pt;}
.y0_c00032{bottom:0.000000pt;}
.y1_c00032{bottom:36.666667pt;}
.yc_c00032{bottom:521.170400pt;}
.yb_c00032{bottom:547.842400pt;}
.ya_c00032{bottom:574.514400pt;}
.y9_c00032{bottom:601.186400pt;}
.y8_c00032{bottom:654.519733pt;}
.y7_c00032{bottom:734.498400pt;}
.y6_c00032{bottom:761.170400pt;}
.y5_c00032{bottom:787.842400pt;}
.y4_c00032{bottom:814.514400pt;}
.y3_c00032{bottom:841.186400pt;}
.y2_c00032{bottom:894.519733pt;}
.h2_c00032{height:48.000000pt;}
.h4_c00032{height:57.600000pt;}
.h3_c00032{height:69.813333pt;}
.h0_c00032{height:1122.520000pt;}
.h1_c00032{height:1122.666667pt;}
.w0_c00032{width:793.701333pt;}
.w1_c00032{width:794.000000pt;}
.x0_c00032{left:0.000000pt;}
.x2_c00032{left:80.000000pt;}
.x3_c00032{left:94.666667pt;}
.x1_c00032{left:706.901067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_99270e4956c05eea87de103c.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00033;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls2_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:0.864000px;}
.ls1_c00033{letter-spacing:1.200000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00033{word-spacing:-13.104000px;}
.ws0_c00033{word-spacing:-10.200000px;}
.ws5_c00033{word-spacing:-3.816000px;}
.ws3_c00033{word-spacing:-3.528000px;}
.ws4_c00033{word-spacing:-0.864000px;}
.ws2_c00033{word-spacing:0.000000px;}
._0_c00033{margin-left:-480.336600px;}
._4_c00033{margin-left:-7.848000px;}
._5_c00033{margin-left:-6.480000px;}
._1_c00033{margin-left:-4.200000px;}
._3_c00033{margin-left:-1.440000px;}
._2_c00033{width:3.528000px;}
.fc3_c00033{color:rgb(255,255,255);}
.fc2_c00033{color:rgb(233,83,14);}
.fc1_c00033{color:rgb(232,86,17);}
.fc0_c00033{color:rgb(60,60,59);}
.fs1_c00033{font-size:42.000000px;}
.fs0_c00033{font-size:60.000000px;}
.fs3_c00033{font-size:72.000000px;}
.fs4_c00033{font-size:120.000000px;}
.fs2_c00033{font-size:360.000000px;}
.y0_c00033{bottom:0.000000px;}
.y1_c00033{bottom:41.250000px;}
.y9_c00033{bottom:574.310700px;}
.y8_c00033{bottom:595.316700px;}
.y7_c00033{bottom:616.322700px;}
.y6_c00033{bottom:664.328700px;}
.y5_c00033{bottom:685.334700px;}
.y4_c00033{bottom:706.340700px;}
.y3_c00033{bottom:752.834700px;}
.yb_c00033{bottom:976.334700px;}
.ya_c00033{bottom:1006.334700px;}
.y2_c00033{bottom:1093.526700px;}
.h2_c00033{height:54.000000px;}
.h5_c00033{height:64.800000px;}
.h4_c00033{height:66.456000px;}
.h6_c00033{height:112.200000px;}
.h3_c00033{height:324.000000px;}
.h0_c00033{height:1262.835000px;}
.h1_c00033{height:1263.000000px;}
.w0_c00033{width:892.914000px;}
.w1_c00033{width:893.250000px;}
.x0_c00033{left:0.000000px;}
.x2_c00033{left:81.290250px;}
.x3_c00033{left:82.393650px;}
.x5_c00033{left:112.287450px;}
.x4_c00033{left:127.393650px;}
.x1_c00033{left:794.288700px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls2_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:0.768000pt;}
.ls1_c00033{letter-spacing:1.066667pt;}
.ws1_c00033{word-spacing:-11.648000pt;}
.ws0_c00033{word-spacing:-9.066667pt;}
.ws5_c00033{word-spacing:-3.392000pt;}
.ws3_c00033{word-spacing:-3.136000pt;}
.ws4_c00033{word-spacing:-0.768000pt;}
.ws2_c00033{word-spacing:0.000000pt;}
._0_c00033{margin-left:-426.965867pt;}
._4_c00033{margin-left:-6.976000pt;}
._5_c00033{margin-left:-5.760000pt;}
._1_c00033{margin-left:-3.733333pt;}
._3_c00033{margin-left:-1.280000pt;}
._2_c00033{width:3.136000pt;}
.fs1_c00033{font-size:37.333333pt;}
.fs0_c00033{font-size:53.333333pt;}
.fs3_c00033{font-size:64.000000pt;}
.fs4_c00033{font-size:106.666667pt;}
.fs2_c00033{font-size:320.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y1_c00033{bottom:36.666667pt;}
.y9_c00033{bottom:510.498400pt;}
.y8_c00033{bottom:529.170400pt;}
.y7_c00033{bottom:547.842400pt;}
.y6_c00033{bottom:590.514400pt;}
.y5_c00033{bottom:609.186400pt;}
.y4_c00033{bottom:627.858400pt;}
.y3_c00033{bottom:669.186400pt;}
.yb_c00033{bottom:867.853067pt;}
.ya_c00033{bottom:894.519733pt;}
.y2_c00033{bottom:972.023733pt;}
.h2_c00033{height:48.000000pt;}
.h5_c00033{height:57.600000pt;}
.h4_c00033{height:59.072000pt;}
.h6_c00033{height:99.733333pt;}
.h3_c00033{height:288.000000pt;}
.h0_c00033{height:1122.520000pt;}
.h1_c00033{height:1122.666667pt;}
.w0_c00033{width:793.701333pt;}
.w1_c00033{width:794.000000pt;}
.x0_c00033{left:0.000000pt;}
.x2_c00033{left:72.258000pt;}
.x3_c00033{left:73.238800pt;}
.x5_c00033{left:99.811067pt;}
.x4_c00033{left:113.238800pt;}
.x1_c00033{left:706.034400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0bb0ba73aa4fdf56e496fbb.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_8044500461936b1776693626.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_c9b8fdba265e8fff572ae7ce.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.161000;font-style: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);}
.m1_c00034{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls5_c00034{letter-spacing:-0.540000px;}
.ls4_c00034{letter-spacing:0.000000px;}
.ls0_c00034{letter-spacing:0.720000px;}
.ls1_c00034{letter-spacing:0.840000px;}
.ls3_c00034{letter-spacing:1.500000px;}
.ls2_c00034{letter-spacing:1.650000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00034{word-spacing:-21.060000px;}
.ws2_c00034{word-spacing:-17.640000px;}
.ws3_c00034{word-spacing:-11.700000px;}
.ws0_c00034{word-spacing:-10.200000px;}
.ws6_c00034{word-spacing:-3.096000px;}
.ws10_c00034{word-spacing:-1.944000px;}
.ws13_c00034{word-spacing:-1.500000px;}
.wsd_c00034{word-spacing:-1.440000px;}
.wsc_c00034{word-spacing:-1.008000px;}
.ws12_c00034{word-spacing:-0.936000px;}
.ws5_c00034{word-spacing:-0.840000px;}
.wse_c00034{word-spacing:-0.720000px;}
.ws7_c00034{word-spacing:-0.288000px;}
.ws4_c00034{word-spacing:0.000000px;}
.ws11_c00034{word-spacing:0.072000px;}
.wsa_c00034{word-spacing:3.456000px;}
.wsb_c00034{word-spacing:8.064000px;}
.wsf_c00034{word-spacing:8.352000px;}
.ws8_c00034{word-spacing:13.752000px;}
.ws9_c00034{word-spacing:21.456000px;}
._0_c00034{margin-left:-480.336000px;}
._4_c00034{margin-left:-9.360000px;}
._5_c00034{margin-left:-7.200000px;}
._1_c00034{margin-left:-4.200000px;}
._3_c00034{margin-left:-2.880000px;}
._2_c00034{margin-left:-1.440000px;}
.fc3_c00034{color:rgb(32,32,32);}
.fc2_c00034{color:rgb(233,83,14);}
.fc1_c00034{color:rgb(232,86,17);}
.fc4_c00034{color:rgb(157,157,156);}
.fc0_c00034{color:rgb(60,60,59);}
.fs1_c00034{font-size:42.000000px;}
.fs0_c00034{font-size:60.000000px;}
.fs5_c00034{font-size:66.000000px;}
.fs4_c00034{font-size:72.000000px;}
.fs3_c00034{font-size:84.000000px;}
.fs2_c00034{font-size:108.000000px;}
.y0_c00034{bottom:0.000000px;}
.y1_c00034{bottom:41.250000px;}
.y14_c00034{bottom:196.310700px;}
.y13_c00034{bottom:226.316700px;}
.y12_c00034{bottom:256.322700px;}
.y11_c00034{bottom:286.328700px;}
.y10_c00034{bottom:316.334700px;}
.yf_c00034{bottom:376.334700px;}
.ye_c00034{bottom:466.298700px;}
.yd_c00034{bottom:496.304700px;}
.yc_c00034{bottom:526.310700px;}
.yb_c00034{bottom:556.316700px;}
.ya_c00034{bottom:586.322700px;}
.y1c_c00034{bottom:586.334700px;}
.y9_c00034{bottom:616.328700px;}
.y1b_c00034{bottom:616.334700px;}
.y8_c00034{bottom:646.334700px;}
.y1a_c00034{bottom:676.334700px;}
.y7_c00034{bottom:706.334700px;}
.y19_c00034{bottom:736.334700px;}
.y18_c00034{bottom:766.334700px;}
.y6_c00034{bottom:796.322700px;}
.y17_c00034{bottom:796.334700px;}
.y5_c00034{bottom:826.328700px;}
.y16_c00034{bottom:826.334700px;}
.y4_c00034{bottom:856.334700px;}
.y15_c00034{bottom:856.561950px;}
.y3_c00034{bottom:916.334700px;}
.y2_c00034{bottom:1006.334700px;}
.h6_c00034{height:50.292000px;}
.h2_c00034{height:54.000000px;}
.h5_c00034{height:64.800000px;}
.h4_c00034{height:78.540000px;}
.h3_c00034{height:100.980000px;}
.h0_c00034{height:1262.835000px;}
.h1_c00034{height:1263.000000px;}
.w0_c00034{width:892.914000px;}
.w1_c00034{width:893.250000px;}
.x0_c00034{left:0.000000px;}
.x2_c00034{left:82.500000px;}
.x3_c00034{left:90.000000px;}
.x4_c00034{left:106.500000px;}
.x5_c00034{left:675.611100px;}
.x1_c00034{left:795.338550px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls5_c00034{letter-spacing:-0.480000pt;}
.ls4_c00034{letter-spacing:0.000000pt;}
.ls0_c00034{letter-spacing:0.640000pt;}
.ls1_c00034{letter-spacing:0.746667pt;}
.ls3_c00034{letter-spacing:1.333333pt;}
.ls2_c00034{letter-spacing:1.466667pt;}
.ws1_c00034{word-spacing:-18.720000pt;}
.ws2_c00034{word-spacing:-15.680000pt;}
.ws3_c00034{word-spacing:-10.400000pt;}
.ws0_c00034{word-spacing:-9.066667pt;}
.ws6_c00034{word-spacing:-2.752000pt;}
.ws10_c00034{word-spacing:-1.728000pt;}
.ws13_c00034{word-spacing:-1.333333pt;}
.wsd_c00034{word-spacing:-1.280000pt;}
.wsc_c00034{word-spacing:-0.896000pt;}
.ws12_c00034{word-spacing:-0.832000pt;}
.ws5_c00034{word-spacing:-0.746667pt;}
.wse_c00034{word-spacing:-0.640000pt;}
.ws7_c00034{word-spacing:-0.256000pt;}
.ws4_c00034{word-spacing:0.000000pt;}
.ws11_c00034{word-spacing:0.064000pt;}
.wsa_c00034{word-spacing:3.072000pt;}
.wsb_c00034{word-spacing:7.168000pt;}
.wsf_c00034{word-spacing:7.424000pt;}
.ws8_c00034{word-spacing:12.224000pt;}
.ws9_c00034{word-spacing:19.072000pt;}
._0_c00034{margin-left:-426.965333pt;}
._4_c00034{margin-left:-8.320000pt;}
._5_c00034{margin-left:-6.400000pt;}
._1_c00034{margin-left:-3.733333pt;}
._3_c00034{margin-left:-2.560000pt;}
._2_c00034{margin-left:-1.280000pt;}
.fs1_c00034{font-size:37.333333pt;}
.fs0_c00034{font-size:53.333333pt;}
.fs5_c00034{font-size:58.666667pt;}
.fs4_c00034{font-size:64.000000pt;}
.fs3_c00034{font-size:74.666667pt;}
.fs2_c00034{font-size:96.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y1_c00034{bottom:36.666667pt;}
.y14_c00034{bottom:174.498400pt;}
.y13_c00034{bottom:201.170400pt;}
.y12_c00034{bottom:227.842400pt;}
.y11_c00034{bottom:254.514400pt;}
.y10_c00034{bottom:281.186400pt;}
.yf_c00034{bottom:334.519733pt;}
.ye_c00034{bottom:414.487733pt;}
.yd_c00034{bottom:441.159733pt;}
.yc_c00034{bottom:467.831733pt;}
.yb_c00034{bottom:494.503733pt;}
.ya_c00034{bottom:521.175733pt;}
.y1c_c00034{bottom:521.186400pt;}
.y9_c00034{bottom:547.847733pt;}
.y1b_c00034{bottom:547.853067pt;}
.y8_c00034{bottom:574.519733pt;}
.y1a_c00034{bottom:601.186400pt;}
.y7_c00034{bottom:627.853067pt;}
.y19_c00034{bottom:654.519733pt;}
.y18_c00034{bottom:681.186400pt;}
.y6_c00034{bottom:707.842400pt;}
.y17_c00034{bottom:707.853067pt;}
.y5_c00034{bottom:734.514400pt;}
.y16_c00034{bottom:734.519733pt;}
.y4_c00034{bottom:761.186400pt;}
.y15_c00034{bottom:761.388400pt;}
.y3_c00034{bottom:814.519733pt;}
.y2_c00034{bottom:894.519733pt;}
.h6_c00034{height:44.704000pt;}
.h2_c00034{height:48.000000pt;}
.h5_c00034{height:57.600000pt;}
.h4_c00034{height:69.813333pt;}
.h3_c00034{height:89.760000pt;}
.h0_c00034{height:1122.520000pt;}
.h1_c00034{height:1122.666667pt;}
.w0_c00034{width:793.701333pt;}
.w1_c00034{width:794.000000pt;}
.x0_c00034{left:0.000000pt;}
.x2_c00034{left:73.333333pt;}
.x3_c00034{left:80.000000pt;}
.x4_c00034{left:94.666667pt;}
.x5_c00034{left:600.543200pt;}
.x1_c00034{left:706.967600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a62c88ea6321e17dd89721a.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.199000;font-style: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);}
.m1_c00035{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls1_c00035{letter-spacing:0.000000px;}
.ls0_c00035{letter-spacing:0.720000px;}
.ls2_c00035{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws8_c00035{word-spacing:-3.960000px;}
.wsa_c00035{word-spacing:-1.296000px;}
.wsd_c00035{word-spacing:-1.080000px;}
.ws2_c00035{word-spacing:-0.840000px;}
.ws4_c00035{word-spacing:-0.072000px;}
.ws1_c00035{word-spacing:0.000000px;}
.ws3_c00035{word-spacing:0.288000px;}
.ws9_c00035{word-spacing:1.872000px;}
.wsc_c00035{word-spacing:4.536000px;}
.wsb_c00035{word-spacing:5.040000px;}
.ws7_c00035{word-spacing:6.192000px;}
.ws6_c00035{word-spacing:7.344000px;}
.ws5_c00035{word-spacing:18.864000px;}
._0_c00035{margin-left:-480.336600px;}
._1_c00035{margin-left:-4.200000px;}
._2_c00035{margin-left:-1.440000px;}
._3_c00035{width:1.497600px;}
.fc2_c00035{color:rgb(32,32,32);}
.fc1_c00035{color:rgb(232,86,17);}
.fc0_c00035{color:rgb(60,60,59);}
.fs1_c00035{font-size:42.000000px;}
.fs0_c00035{font-size:60.000000px;}
.fs3_c00035{font-size:72.000000px;}
.fs2_c00035{font-size:84.000000px;}
.y0_c00035{bottom:0.000000px;}
.y1_c00035{bottom:41.250000px;}
.y11_c00035{bottom:436.316700px;}
.y10_c00035{bottom:466.322700px;}
.yf_c00035{bottom:496.328700px;}
.ye_c00035{bottom:526.334700px;}
.yd_c00035{bottom:586.334700px;}
.yc_c00035{bottom:676.280700px;}
.yb_c00035{bottom:706.286700px;}
.ya_c00035{bottom:736.292700px;}
.y9_c00035{bottom:766.298700px;}
.y8_c00035{bottom:796.304700px;}
.y7_c00035{bottom:826.310700px;}
.y6_c00035{bottom:856.316700px;}
.y5_c00035{bottom:886.322700px;}
.y4_c00035{bottom:916.328700px;}
.y3_c00035{bottom:946.334700px;}
.y2_c00035{bottom:1006.334700px;}
.h2_c00035{height:54.000000px;}
.h4_c00035{height:64.800000px;}
.h3_c00035{height:78.540000px;}
.h0_c00035{height:1262.835000px;}
.h1_c00035{height:1263.000000px;}
.w0_c00035{width:892.914000px;}
.w1_c00035{width:893.250000px;}
.x0_c00035{left:0.000000px;}
.x2_c00035{left:90.000000px;}
.x3_c00035{left:106.500000px;}
.x1_c00035{left:794.213700px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls1_c00035{letter-spacing:0.000000pt;}
.ls0_c00035{letter-spacing:0.640000pt;}
.ls2_c00035{letter-spacing:0.746667pt;}
.ws0_c00035{word-spacing:-9.066667pt;}
.ws8_c00035{word-spacing:-3.520000pt;}
.wsa_c00035{word-spacing:-1.152000pt;}
.wsd_c00035{word-spacing:-0.960000pt;}
.ws2_c00035{word-spacing:-0.746667pt;}
.ws4_c00035{word-spacing:-0.064000pt;}
.ws1_c00035{word-spacing:0.000000pt;}
.ws3_c00035{word-spacing:0.256000pt;}
.ws9_c00035{word-spacing:1.664000pt;}
.wsc_c00035{word-spacing:4.032000pt;}
.wsb_c00035{word-spacing:4.480000pt;}
.ws7_c00035{word-spacing:5.504000pt;}
.ws6_c00035{word-spacing:6.528000pt;}
.ws5_c00035{word-spacing:16.768000pt;}
._0_c00035{margin-left:-426.965867pt;}
._1_c00035{margin-left:-3.733333pt;}
._2_c00035{margin-left:-1.280000pt;}
._3_c00035{width:1.331200pt;}
.fs1_c00035{font-size:37.333333pt;}
.fs0_c00035{font-size:53.333333pt;}
.fs3_c00035{font-size:64.000000pt;}
.fs2_c00035{font-size:74.666667pt;}
.y0_c00035{bottom:0.000000pt;}
.y1_c00035{bottom:36.666667pt;}
.y11_c00035{bottom:387.837067pt;}
.y10_c00035{bottom:414.509067pt;}
.yf_c00035{bottom:441.181067pt;}
.ye_c00035{bottom:467.853067pt;}
.yd_c00035{bottom:521.186400pt;}
.yc_c00035{bottom:601.138400pt;}
.yb_c00035{bottom:627.810400pt;}
.ya_c00035{bottom:654.482400pt;}
.y9_c00035{bottom:681.154400pt;}
.y8_c00035{bottom:707.826400pt;}
.y7_c00035{bottom:734.498400pt;}
.y6_c00035{bottom:761.170400pt;}
.y5_c00035{bottom:787.842400pt;}
.y4_c00035{bottom:814.514400pt;}
.y3_c00035{bottom:841.186400pt;}
.y2_c00035{bottom:894.519733pt;}
.h2_c00035{height:48.000000pt;}
.h4_c00035{height:57.600000pt;}
.h3_c00035{height:69.813333pt;}
.h0_c00035{height:1122.520000pt;}
.h1_c00035{height:1122.666667pt;}
.w0_c00035{width:793.701333pt;}
.w1_c00035{width:794.000000pt;}
.x0_c00035{left:0.000000pt;}
.x2_c00035{left:80.000000pt;}
.x3_c00035{left:94.666667pt;}
.x1_c00035{left:705.967733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5baa88eb2e85aa52da07685f.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.160000;font-style:normal;font-weight:normal;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_e04a0991b070062a3f74fe43.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00036;src:url('chunks/assets/font_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00036;src:url('chunks/assets/font_c9b8fdba265e8fff572ae7ce.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:1.161000;font-style: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);}
.m1_c00036{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls5_c00036{letter-spacing:-0.324000px;}
.ls4_c00036{letter-spacing:0.000000px;}
.ls0_c00036{letter-spacing:0.720000px;}
.ls1_c00036{letter-spacing:0.840000px;}
.ls3_c00036{letter-spacing:1.500000px;}
.ls2_c00036{letter-spacing:1.650000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00036{word-spacing:-21.276000px;}
.ws2_c00036{word-spacing:-17.640000px;}
.ws3_c00036{word-spacing:-14.850000px;}
.ws0_c00036{word-spacing:-10.200000px;}
.ws10_c00036{word-spacing:-1.500000px;}
.ws11_c00036{word-spacing:-0.900000px;}
.ws5_c00036{word-spacing:-0.840000px;}
.ws4_c00036{word-spacing:0.000000px;}
.wsa_c00036{word-spacing:1.728000px;}
.wsb_c00036{word-spacing:3.024000px;}
.wsf_c00036{word-spacing:3.096000px;}
.ws6_c00036{word-spacing:3.312000px;}
.wse_c00036{word-spacing:3.600000px;}
.wsd_c00036{word-spacing:4.248000px;}
.wsc_c00036{word-spacing:6.912000px;}
.ws7_c00036{word-spacing:8.496000px;}
.ws8_c00036{word-spacing:8.928000px;}
.ws9_c00036{word-spacing:9.072000px;}
._0_c00036{margin-left:-480.336000px;}
._5_c00036{margin-left:-9.576000px;}
._6_c00036{margin-left:-7.920000px;}
._4_c00036{margin-left:-5.880000px;}
._1_c00036{margin-left:-4.200000px;}
._3_c00036{margin-left:-2.160000px;}
._2_c00036{margin-left:-1.134000px;}
.fc3_c00036{color:rgb(32,32,32);}
.fc2_c00036{color:rgb(233,83,14);}
.fc1_c00036{color:rgb(232,86,17);}
.fc4_c00036{color:rgb(157,157,156);}
.fc0_c00036{color:rgb(60,60,59);}
.fs1_c00036{font-size:42.000000px;}
.fs0_c00036{font-size:60.000000px;}
.fs5_c00036{font-size:66.000000px;}
.fs4_c00036{font-size:72.000000px;}
.fs3_c00036{font-size:84.000000px;}
.fs2_c00036{font-size:108.000000px;}
.y0_c00036{bottom:0.000000px;}
.y1_c00036{bottom:41.250000px;}
.y13_c00036{bottom:226.310700px;}
.y12_c00036{bottom:256.316700px;}
.y11_c00036{bottom:286.322700px;}
.y10_c00036{bottom:316.328700px;}
.yf_c00036{bottom:346.334700px;}
.ye_c00036{bottom:406.334700px;}
.yd_c00036{bottom:496.304700px;}
.yc_c00036{bottom:526.310700px;}
.yb_c00036{bottom:556.316700px;}
.ya_c00036{bottom:586.322700px;}
.y9_c00036{bottom:616.328700px;}
.y8_c00036{bottom:646.334700px;}
.y19_c00036{bottom:676.334700px;}
.y7_c00036{bottom:706.334700px;}
.y18_c00036{bottom:736.334700px;}
.y17_c00036{bottom:766.334700px;}
.y6_c00036{bottom:796.322700px;}
.y16_c00036{bottom:796.334700px;}
.y5_c00036{bottom:826.328700px;}
.y15_c00036{bottom:826.334700px;}
.y4_c00036{bottom:856.334700px;}
.y14_c00036{bottom:856.561950px;}
.y3_c00036{bottom:916.334700px;}
.y2_c00036{bottom:1006.334700px;}
.h6_c00036{height:50.292000px;}
.h2_c00036{height:54.000000px;}
.h5_c00036{height:64.800000px;}
.h4_c00036{height:78.540000px;}
.h3_c00036{height:100.980000px;}
.h0_c00036{height:1262.835000px;}
.h1_c00036{height:1263.000000px;}
.w0_c00036{width:892.914000px;}
.w1_c00036{width:893.250000px;}
.x0_c00036{left:0.000000px;}
.x2_c00036{left:82.500000px;}
.x3_c00036{left:90.000000px;}
.x4_c00036{left:106.500000px;}
.x5_c00036{left:675.611100px;}
.x1_c00036{left:796.313550px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls5_c00036{letter-spacing:-0.288000pt;}
.ls4_c00036{letter-spacing:0.000000pt;}
.ls0_c00036{letter-spacing:0.640000pt;}
.ls1_c00036{letter-spacing:0.746667pt;}
.ls3_c00036{letter-spacing:1.333333pt;}
.ls2_c00036{letter-spacing:1.466667pt;}
.ws1_c00036{word-spacing:-18.912000pt;}
.ws2_c00036{word-spacing:-15.680000pt;}
.ws3_c00036{word-spacing:-13.200000pt;}
.ws0_c00036{word-spacing:-9.066667pt;}
.ws10_c00036{word-spacing:-1.333333pt;}
.ws11_c00036{word-spacing:-0.800000pt;}
.ws5_c00036{word-spacing:-0.746667pt;}
.ws4_c00036{word-spacing:0.000000pt;}
.wsa_c00036{word-spacing:1.536000pt;}
.wsb_c00036{word-spacing:2.688000pt;}
.wsf_c00036{word-spacing:2.752000pt;}
.ws6_c00036{word-spacing:2.944000pt;}
.wse_c00036{word-spacing:3.200000pt;}
.wsd_c00036{word-spacing:3.776000pt;}
.wsc_c00036{word-spacing:6.144000pt;}
.ws7_c00036{word-spacing:7.552000pt;}
.ws8_c00036{word-spacing:7.936000pt;}
.ws9_c00036{word-spacing:8.064000pt;}
._0_c00036{margin-left:-426.965333pt;}
._5_c00036{margin-left:-8.512000pt;}
._6_c00036{margin-left:-7.040000pt;}
._4_c00036{margin-left:-5.226667pt;}
._1_c00036{margin-left:-3.733333pt;}
._3_c00036{margin-left:-1.920000pt;}
._2_c00036{margin-left:-1.008000pt;}
.fs1_c00036{font-size:37.333333pt;}
.fs0_c00036{font-size:53.333333pt;}
.fs5_c00036{font-size:58.666667pt;}
.fs4_c00036{font-size:64.000000pt;}
.fs3_c00036{font-size:74.666667pt;}
.fs2_c00036{font-size:96.000000pt;}
.y0_c00036{bottom:0.000000pt;}
.y1_c00036{bottom:36.666667pt;}
.y13_c00036{bottom:201.165067pt;}
.y12_c00036{bottom:227.837067pt;}
.y11_c00036{bottom:254.509067pt;}
.y10_c00036{bottom:281.181067pt;}
.yf_c00036{bottom:307.853067pt;}
.ye_c00036{bottom:361.186400pt;}
.yd_c00036{bottom:441.159733pt;}
.yc_c00036{bottom:467.831733pt;}
.yb_c00036{bottom:494.503733pt;}
.ya_c00036{bottom:521.175733pt;}
.y9_c00036{bottom:547.847733pt;}
.y8_c00036{bottom:574.519733pt;}
.y19_c00036{bottom:601.186400pt;}
.y7_c00036{bottom:627.853067pt;}
.y18_c00036{bottom:654.519733pt;}
.y17_c00036{bottom:681.186400pt;}
.y6_c00036{bottom:707.842400pt;}
.y16_c00036{bottom:707.853067pt;}
.y5_c00036{bottom:734.514400pt;}
.y15_c00036{bottom:734.519733pt;}
.y4_c00036{bottom:761.186400pt;}
.y14_c00036{bottom:761.388400pt;}
.y3_c00036{bottom:814.519733pt;}
.y2_c00036{bottom:894.519733pt;}
.h6_c00036{height:44.704000pt;}
.h2_c00036{height:48.000000pt;}
.h5_c00036{height:57.600000pt;}
.h4_c00036{height:69.813333pt;}
.h3_c00036{height:89.760000pt;}
.h0_c00036{height:1122.520000pt;}
.h1_c00036{height:1122.666667pt;}
.w0_c00036{width:793.701333pt;}
.w1_c00036{width:794.000000pt;}
.x0_c00036{left:0.000000pt;}
.x2_c00036{left:73.333333pt;}
.x3_c00036{left:80.000000pt;}
.x4_c00036{left:94.666667pt;}
.x5_c00036{left:600.543200pt;}
.x1_c00036{left:707.834267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8821a1af7f9934b42c26040.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls1_c00037{letter-spacing:0.000000px;}
.ls0_c00037{letter-spacing:0.720000px;}
.ls2_c00037{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws4_c00037{word-spacing:-3.384000px;}
.ws8_c00037{word-spacing:-2.592000px;}
.ws7_c00037{word-spacing:-1.944000px;}
.ws3_c00037{word-spacing:-1.872000px;}
.wsd_c00037{word-spacing:-1.728000px;}
.wsa_c00037{word-spacing:-1.296000px;}
.ws2_c00037{word-spacing:-0.840000px;}
.wsc_c00037{word-spacing:-0.720000px;}
.ws1_c00037{word-spacing:0.000000px;}
.ws9_c00037{word-spacing:1.584000px;}
.ws6_c00037{word-spacing:2.736000px;}
.wsb_c00037{word-spacing:3.528000px;}
.ws5_c00037{word-spacing:9.864000px;}
._0_c00037{margin-left:-480.336600px;}
._4_c00037{margin-left:-6.472800px;}
._1_c00037{margin-left:-4.200000px;}
._3_c00037{margin-left:-2.858400px;}
._2_c00037{margin-left:-1.440000px;}
.fc2_c00037{color:rgb(32,32,32);}
.fc1_c00037{color:rgb(232,86,17);}
.fc0_c00037{color:rgb(60,60,59);}
.fs1_c00037{font-size:42.000000px;}
.fs0_c00037{font-size:60.000000px;}
.fs3_c00037{font-size:72.000000px;}
.fs2_c00037{font-size:84.000000px;}
.y0_c00037{bottom:0.000000px;}
.y1_c00037{bottom:41.250000px;}
.y10_c00037{bottom:466.316700px;}
.yf_c00037{bottom:496.322700px;}
.ye_c00037{bottom:526.328700px;}
.yd_c00037{bottom:556.334700px;}
.yc_c00037{bottom:616.334700px;}
.yb_c00037{bottom:706.286700px;}
.ya_c00037{bottom:736.292700px;}
.y9_c00037{bottom:766.298700px;}
.y8_c00037{bottom:796.304700px;}
.y7_c00037{bottom:826.310700px;}
.y6_c00037{bottom:856.316700px;}
.y5_c00037{bottom:886.322700px;}
.y4_c00037{bottom:916.328700px;}
.y3_c00037{bottom:946.334700px;}
.y2_c00037{bottom:1006.334700px;}
.h2_c00037{height:54.000000px;}
.h4_c00037{height:64.800000px;}
.h3_c00037{height:78.540000px;}
.h0_c00037{height:1262.835000px;}
.h1_c00037{height:1263.000000px;}
.w0_c00037{width:892.914000px;}
.w1_c00037{width:893.250000px;}
.x0_c00037{left:0.000000px;}
.x2_c00037{left:90.000000px;}
.x3_c00037{left:106.500000px;}
.x1_c00037{left:794.288700px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls1_c00037{letter-spacing:0.000000pt;}
.ls0_c00037{letter-spacing:0.640000pt;}
.ls2_c00037{letter-spacing:0.746667pt;}
.ws0_c00037{word-spacing:-9.066667pt;}
.ws4_c00037{word-spacing:-3.008000pt;}
.ws8_c00037{word-spacing:-2.304000pt;}
.ws7_c00037{word-spacing:-1.728000pt;}
.ws3_c00037{word-spacing:-1.664000pt;}
.wsd_c00037{word-spacing:-1.536000pt;}
.wsa_c00037{word-spacing:-1.152000pt;}
.ws2_c00037{word-spacing:-0.746667pt;}
.wsc_c00037{word-spacing:-0.640000pt;}
.ws1_c00037{word-spacing:0.000000pt;}
.ws9_c00037{word-spacing:1.408000pt;}
.ws6_c00037{word-spacing:2.432000pt;}
.wsb_c00037{word-spacing:3.136000pt;}
.ws5_c00037{word-spacing:8.768000pt;}
._0_c00037{margin-left:-426.965867pt;}
._4_c00037{margin-left:-5.753600pt;}
._1_c00037{margin-left:-3.733333pt;}
._3_c00037{margin-left:-2.540800pt;}
._2_c00037{margin-left:-1.280000pt;}
.fs1_c00037{font-size:37.333333pt;}
.fs0_c00037{font-size:53.333333pt;}
.fs3_c00037{font-size:64.000000pt;}
.fs2_c00037{font-size:74.666667pt;}
.y0_c00037{bottom:0.000000pt;}
.y1_c00037{bottom:36.666667pt;}
.y10_c00037{bottom:414.503733pt;}
.yf_c00037{bottom:441.175733pt;}
.ye_c00037{bottom:467.847733pt;}
.yd_c00037{bottom:494.519733pt;}
.yc_c00037{bottom:547.853067pt;}
.yb_c00037{bottom:627.810400pt;}
.ya_c00037{bottom:654.482400pt;}
.y9_c00037{bottom:681.154400pt;}
.y8_c00037{bottom:707.826400pt;}
.y7_c00037{bottom:734.498400pt;}
.y6_c00037{bottom:761.170400pt;}
.y5_c00037{bottom:787.842400pt;}
.y4_c00037{bottom:814.514400pt;}
.y3_c00037{bottom:841.186400pt;}
.y2_c00037{bottom:894.519733pt;}
.h2_c00037{height:48.000000pt;}
.h4_c00037{height:57.600000pt;}
.h3_c00037{height:69.813333pt;}
.h0_c00037{height:1122.520000pt;}
.h1_c00037{height:1122.666667pt;}
.w0_c00037{width:793.701333pt;}
.w1_c00037{width:794.000000pt;}
.x0_c00037{left:0.000000pt;}
.x2_c00037{left:80.000000pt;}
.x3_c00037{left:94.666667pt;}
.x1_c00037{left:706.034400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00038;src:url('chunks/assets/font_e509564154f0d9e81f5e90d4.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00038;src:url('chunks/assets/font_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00038;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00038;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00038{font-family:ff5_c00038;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00038;src:url('chunks/assets/font_dd2bf19ea1571721884e2210.woff2')format("woff");}.ff6_c00038{font-family:ff6_c00038;line-height:0.778000;font-style: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);}
.m1_c00038{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls5_c00038{letter-spacing:-0.360000px;}
.ls4_c00038{letter-spacing:-0.288000px;}
.ls3_c00038{letter-spacing:0.000000px;}
.ls1_c00038{letter-spacing:0.720000px;}
.ls0_c00038{letter-spacing:0.864000px;}
.ls2_c00038{letter-spacing:1.200000px;}
.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;}
}
.ws3_c00038{word-spacing:-23.640000px;}
.wsa_c00038{word-spacing:-17.400000px;}
.ws1_c00038{word-spacing:-13.104000px;}
.ws2_c00038{word-spacing:-11.952000px;}
.ws0_c00038{word-spacing:-10.200000px;}
.wsc_c00038{word-spacing:-6.240000px;}
.ws6_c00038{word-spacing:-5.256000px;}
.ws8_c00038{word-spacing:-3.600000px;}
.ws9_c00038{word-spacing:-3.168000px;}
.ws5_c00038{word-spacing:-1.728000px;}
.ws7_c00038{word-spacing:-1.440000px;}
.wsb_c00038{word-spacing:-1.200000px;}
.ws4_c00038{word-spacing:0.000000px;}
._0_c00038{margin-left:-480.336600px;}
._a_c00038{margin-left:-11.400000px;}
._9_c00038{margin-left:-8.952000px;}
._6_c00038{margin-left:-7.768800px;}
._5_c00038{margin-left:-6.480000px;}
._1_c00038{margin-left:-4.200000px;}
._7_c00038{margin-left:-2.592000px;}
._2_c00038{margin-left:-1.440000px;}
._4_c00038{width:1.152000px;}
._3_c00038{width:5.256000px;}
._8_c00038{width:13.680000px;}
.fc3_c00038{color:rgb(255,255,255);}
.fc2_c00038{color:rgb(233,83,14);}
.fc1_c00038{color:rgb(232,86,17);}
.fc0_c00038{color:rgb(60,60,59);}
.fs1_c00038{font-size:42.000000px;}
.fs0_c00038{font-size:60.000000px;}
.fs3_c00038{font-size:72.000000px;}
.fs4_c00038{font-size:120.000000px;}
.fs2_c00038{font-size:360.000000px;}
.y0_c00038{bottom:0.000000px;}
.y1_c00038{bottom:41.250000px;}
.yc_c00038{bottom:484.292700px;}
.yb_c00038{bottom:505.298700px;}
.ya_c00038{bottom:526.304700px;}
.y9_c00038{bottom:574.310700px;}
.y8_c00038{bottom:595.316700px;}
.y7_c00038{bottom:616.322700px;}
.y6_c00038{bottom:664.328700px;}
.y5_c00038{bottom:685.334700px;}
.y4_c00038{bottom:706.340700px;}
.y3_c00038{bottom:752.834700px;}
.y11_c00038{bottom:886.334700px;}
.y10_c00038{bottom:916.334700px;}
.yf_c00038{bottom:946.334700px;}
.ye_c00038{bottom:976.334700px;}
.yd_c00038{bottom:1006.334700px;}
.y2_c00038{bottom:1093.526700px;}
.h2_c00038{height:54.000000px;}
.h5_c00038{height:64.800000px;}
.h4_c00038{height:66.456000px;}
.h6_c00038{height:112.200000px;}
.h3_c00038{height:324.000000px;}
.h0_c00038{height:1262.835000px;}
.h1_c00038{height:1263.000000px;}
.w0_c00038{width:892.914000px;}
.w1_c00038{width:893.250000px;}
.x0_c00038{left:0.000000px;}
.x2_c00038{left:81.290250px;}
.x3_c00038{left:82.393650px;}
.x5_c00038{left:112.287450px;}
.x4_c00038{left:127.393650px;}
.x1_c00038{left:794.213700px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls5_c00038{letter-spacing:-0.320000pt;}
.ls4_c00038{letter-spacing:-0.256000pt;}
.ls3_c00038{letter-spacing:0.000000pt;}
.ls1_c00038{letter-spacing:0.640000pt;}
.ls0_c00038{letter-spacing:0.768000pt;}
.ls2_c00038{letter-spacing:1.066667pt;}
.ws3_c00038{word-spacing:-21.013333pt;}
.wsa_c00038{word-spacing:-15.466667pt;}
.ws1_c00038{word-spacing:-11.648000pt;}
.ws2_c00038{word-spacing:-10.624000pt;}
.ws0_c00038{word-spacing:-9.066667pt;}
.wsc_c00038{word-spacing:-5.546667pt;}
.ws6_c00038{word-spacing:-4.672000pt;}
.ws8_c00038{word-spacing:-3.200000pt;}
.ws9_c00038{word-spacing:-2.816000pt;}
.ws5_c00038{word-spacing:-1.536000pt;}
.ws7_c00038{word-spacing:-1.280000pt;}
.wsb_c00038{word-spacing:-1.066667pt;}
.ws4_c00038{word-spacing:0.000000pt;}
._0_c00038{margin-left:-426.965867pt;}
._a_c00038{margin-left:-10.133333pt;}
._9_c00038{margin-left:-7.957333pt;}
._6_c00038{margin-left:-6.905600pt;}
._5_c00038{margin-left:-5.760000pt;}
._1_c00038{margin-left:-3.733333pt;}
._7_c00038{margin-left:-2.304000pt;}
._2_c00038{margin-left:-1.280000pt;}
._4_c00038{width:1.024000pt;}
._3_c00038{width:4.672000pt;}
._8_c00038{width:12.160000pt;}
.fs1_c00038{font-size:37.333333pt;}
.fs0_c00038{font-size:53.333333pt;}
.fs3_c00038{font-size:64.000000pt;}
.fs4_c00038{font-size:106.666667pt;}
.fs2_c00038{font-size:320.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y1_c00038{bottom:36.666667pt;}
.yc_c00038{bottom:430.482400pt;}
.yb_c00038{bottom:449.154400pt;}
.ya_c00038{bottom:467.826400pt;}
.y9_c00038{bottom:510.498400pt;}
.y8_c00038{bottom:529.170400pt;}
.y7_c00038{bottom:547.842400pt;}
.y6_c00038{bottom:590.514400pt;}
.y5_c00038{bottom:609.186400pt;}
.y4_c00038{bottom:627.858400pt;}
.y3_c00038{bottom:669.186400pt;}
.y11_c00038{bottom:787.853067pt;}
.y10_c00038{bottom:814.519733pt;}
.yf_c00038{bottom:841.186400pt;}
.ye_c00038{bottom:867.853067pt;}
.yd_c00038{bottom:894.519733pt;}
.y2_c00038{bottom:972.023733pt;}
.h2_c00038{height:48.000000pt;}
.h5_c00038{height:57.600000pt;}
.h4_c00038{height:59.072000pt;}
.h6_c00038{height:99.733333pt;}
.h3_c00038{height:288.000000pt;}
.h0_c00038{height:1122.520000pt;}
.h1_c00038{height:1122.666667pt;}
.w0_c00038{width:793.701333pt;}
.w1_c00038{width:794.000000pt;}
.x0_c00038{left:0.000000pt;}
.x2_c00038{left:72.258000pt;}
.x3_c00038{left:73.238800pt;}
.x5_c00038{left:99.811067pt;}
.x4_c00038{left:113.238800pt;}
.x1_c00038{left:705.967733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_40e2c37367416fa13fb190ac.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00039;src:url('chunks/assets/font_8044500461936b1776693626.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:1.024000;font-style: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);}
.m1_c00039{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls5_c00039{letter-spacing:-0.540000px;}
.ls4_c00039{letter-spacing:0.000000px;}
.ls0_c00039{letter-spacing:0.720000px;}
.ls1_c00039{letter-spacing:0.840000px;}
.ls3_c00039{letter-spacing:1.500000px;}
.ls2_c00039{letter-spacing:1.650000px;}
.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:-21.060000px;}
.ws2_c00039{word-spacing:-17.640000px;}
.ws0_c00039{word-spacing:-10.200000px;}
.ws8_c00039{word-spacing:-4.608000px;}
.ws11_c00039{word-spacing:-1.500000px;}
.ws7_c00039{word-spacing:-1.008000px;}
.ws4_c00039{word-spacing:-0.840000px;}
.ws10_c00039{word-spacing:-0.480000px;}
.ws3_c00039{word-spacing:0.000000px;}
.ws9_c00039{word-spacing:0.648000px;}
.wsb_c00039{word-spacing:2.232000px;}
.ws6_c00039{word-spacing:6.624000px;}
.wsa_c00039{word-spacing:8.496000px;}
.wsd_c00039{word-spacing:9.576000px;}
.ws5_c00039{word-spacing:11.880000px;}
.wsc_c00039{word-spacing:12.168000px;}
.wse_c00039{word-spacing:12.960000px;}
.wsf_c00039{word-spacing:17.280000px;}
._0_c00039{margin-left:-480.336600px;}
._3_c00039{margin-left:-5.743200px;}
._1_c00039{margin-left:-4.200000px;}
._4_c00039{margin-left:-2.757600px;}
._2_c00039{margin-left:-1.432800px;}
._6_c00039{width:1.980000px;}
._5_c00039{width:2.988000px;}
._7_c00039{width:5.925600px;}
.fc3_c00039{color:rgb(32,32,32);}
.fc2_c00039{color:rgb(233,83,14);}
.fc1_c00039{color:rgb(232,86,17);}
.fc4_c00039{color:rgb(157,157,156);}
.fc0_c00039{color:rgb(60,60,59);}
.fs1_c00039{font-size:42.000000px;}
.fs0_c00039{font-size:60.000000px;}
.fs5_c00039{font-size:66.000000px;}
.fs4_c00039{font-size:72.000000px;}
.fs3_c00039{font-size:84.000000px;}
.fs2_c00039{font-size:108.000000px;}
.y0_c00039{bottom:0.000000px;}
.y1_c00039{bottom:41.250000px;}
.y14_c00039{bottom:196.298700px;}
.y13_c00039{bottom:226.304700px;}
.y12_c00039{bottom:256.310700px;}
.y11_c00039{bottom:286.316700px;}
.y10_c00039{bottom:316.322700px;}
.yf_c00039{bottom:346.328700px;}
.ye_c00039{bottom:376.334700px;}
.yd_c00039{bottom:436.334700px;}
.yc_c00039{bottom:526.322700px;}
.yb_c00039{bottom:556.328700px;}
.ya_c00039{bottom:586.334700px;}
.y9_c00039{bottom:646.334700px;}
.y8_c00039{bottom:736.310700px;}
.y19_c00039{bottom:736.334700px;}
.y7_c00039{bottom:766.316700px;}
.y18_c00039{bottom:766.334700px;}
.y6_c00039{bottom:796.322700px;}
.y17_c00039{bottom:796.334700px;}
.y5_c00039{bottom:826.328700px;}
.y16_c00039{bottom:826.334700px;}
.y4_c00039{bottom:856.334700px;}
.y15_c00039{bottom:856.561950px;}
.y3_c00039{bottom:916.334700px;}
.y2_c00039{bottom:1006.334700px;}
.h6_c00039{height:50.292000px;}
.h2_c00039{height:54.000000px;}
.h5_c00039{height:64.800000px;}
.h4_c00039{height:78.540000px;}
.h3_c00039{height:100.980000px;}
.h0_c00039{height:1262.835000px;}
.h1_c00039{height:1263.000000px;}
.w0_c00039{width:892.914000px;}
.w1_c00039{width:893.250000px;}
.x0_c00039{left:0.000000px;}
.x2_c00039{left:82.500000px;}
.x3_c00039{left:90.000000px;}
.x4_c00039{left:106.500000px;}
.x5_c00039{left:675.611100px;}
.x1_c00039{left:793.253700px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls5_c00039{letter-spacing:-0.480000pt;}
.ls4_c00039{letter-spacing:0.000000pt;}
.ls0_c00039{letter-spacing:0.640000pt;}
.ls1_c00039{letter-spacing:0.746667pt;}
.ls3_c00039{letter-spacing:1.333333pt;}
.ls2_c00039{letter-spacing:1.466667pt;}
.ws1_c00039{word-spacing:-18.720000pt;}
.ws2_c00039{word-spacing:-15.680000pt;}
.ws0_c00039{word-spacing:-9.066667pt;}
.ws8_c00039{word-spacing:-4.096000pt;}
.ws11_c00039{word-spacing:-1.333333pt;}
.ws7_c00039{word-spacing:-0.896000pt;}
.ws4_c00039{word-spacing:-0.746667pt;}
.ws10_c00039{word-spacing:-0.426667pt;}
.ws3_c00039{word-spacing:0.000000pt;}
.ws9_c00039{word-spacing:0.576000pt;}
.wsb_c00039{word-spacing:1.984000pt;}
.ws6_c00039{word-spacing:5.888000pt;}
.wsa_c00039{word-spacing:7.552000pt;}
.wsd_c00039{word-spacing:8.512000pt;}
.ws5_c00039{word-spacing:10.560000pt;}
.wsc_c00039{word-spacing:10.816000pt;}
.wse_c00039{word-spacing:11.520000pt;}
.wsf_c00039{word-spacing:15.360000pt;}
._0_c00039{margin-left:-426.965867pt;}
._3_c00039{margin-left:-5.105067pt;}
._1_c00039{margin-left:-3.733333pt;}
._4_c00039{margin-left:-2.451200pt;}
._2_c00039{margin-left:-1.273600pt;}
._6_c00039{width:1.760000pt;}
._5_c00039{width:2.656000pt;}
._7_c00039{width:5.267200pt;}
.fs1_c00039{font-size:37.333333pt;}
.fs0_c00039{font-size:53.333333pt;}
.fs5_c00039{font-size:58.666667pt;}
.fs4_c00039{font-size:64.000000pt;}
.fs3_c00039{font-size:74.666667pt;}
.fs2_c00039{font-size:96.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.y1_c00039{bottom:36.666667pt;}
.y14_c00039{bottom:174.487733pt;}
.y13_c00039{bottom:201.159733pt;}
.y12_c00039{bottom:227.831733pt;}
.y11_c00039{bottom:254.503733pt;}
.y10_c00039{bottom:281.175733pt;}
.yf_c00039{bottom:307.847733pt;}
.ye_c00039{bottom:334.519733pt;}
.yd_c00039{bottom:387.853067pt;}
.yc_c00039{bottom:467.842400pt;}
.yb_c00039{bottom:494.514400pt;}
.ya_c00039{bottom:521.186400pt;}
.y9_c00039{bottom:574.519733pt;}
.y8_c00039{bottom:654.498400pt;}
.y19_c00039{bottom:654.519733pt;}
.y7_c00039{bottom:681.170400pt;}
.y18_c00039{bottom:681.186400pt;}
.y6_c00039{bottom:707.842400pt;}
.y17_c00039{bottom:707.853067pt;}
.y5_c00039{bottom:734.514400pt;}
.y16_c00039{bottom:734.519733pt;}
.y4_c00039{bottom:761.186400pt;}
.y15_c00039{bottom:761.388400pt;}
.y3_c00039{bottom:814.519733pt;}
.y2_c00039{bottom:894.519733pt;}
.h6_c00039{height:44.704000pt;}
.h2_c00039{height:48.000000pt;}
.h5_c00039{height:57.600000pt;}
.h4_c00039{height:69.813333pt;}
.h3_c00039{height:89.760000pt;}
.h0_c00039{height:1122.520000pt;}
.h1_c00039{height:1122.666667pt;}
.w0_c00039{width:793.701333pt;}
.w1_c00039{width:794.000000pt;}
.x0_c00039{left:0.000000pt;}
.x2_c00039{left:73.333333pt;}
.x3_c00039{left:80.000000pt;}
.x4_c00039{left:94.666667pt;}
.x5_c00039{left:600.543200pt;}
.x1_c00039{left:705.114400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a62c88ea6321e17dd89721a.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.199000;font-style: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);}
.m1_c00040{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls1_c00040{letter-spacing:0.000000px;}
.ls0_c00040{letter-spacing:0.720000px;}
.ls2_c00040{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws5_c00040{word-spacing:-5.544000px;}
.ws9_c00040{word-spacing:-2.520000px;}
.ws7_c00040{word-spacing:-1.080000px;}
.wse_c00040{word-spacing:-1.008000px;}
.ws2_c00040{word-spacing:-0.840000px;}
.ws4_c00040{word-spacing:-0.144000px;}
.ws1_c00040{word-spacing:0.000000px;}
.ws8_c00040{word-spacing:0.720000px;}
.wsb_c00040{word-spacing:2.232000px;}
.wsa_c00040{word-spacing:4.392000px;}
.ws6_c00040{word-spacing:5.112000px;}
.ws10_c00040{word-spacing:6.552000px;}
.wsf_c00040{word-spacing:7.848000px;}
.ws11_c00040{word-spacing:9.432000px;}
.wsd_c00040{word-spacing:11.160000px;}
.ws3_c00040{word-spacing:16.056000px;}
.wsc_c00040{word-spacing:27.792000px;}
._0_c00040{margin-left:-480.337200px;}
._1_c00040{margin-left:-4.200000px;}
._3_c00040{margin-left:-2.868000px;}
._2_c00040{margin-left:-1.440000px;}
._4_c00040{width:1.267200px;}
._5_c00040{width:2.930400px;}
._6_c00040{width:4.478400px;}
.fc2_c00040{color:rgb(32,32,32);}
.fc1_c00040{color:rgb(232,86,17);}
.fc0_c00040{color:rgb(60,60,59);}
.fs1_c00040{font-size:42.000000px;}
.fs0_c00040{font-size:60.000000px;}
.fs3_c00040{font-size:72.000000px;}
.fs2_c00040{font-size:84.000000px;}
.y0_c00040{bottom:0.000000px;}
.y1_c00040{bottom:41.250000px;}
.y14_c00040{bottom:346.280700px;}
.y13_c00040{bottom:376.286700px;}
.y12_c00040{bottom:406.292700px;}
.y11_c00040{bottom:436.298700px;}
.y10_c00040{bottom:466.304700px;}
.yf_c00040{bottom:496.310700px;}
.ye_c00040{bottom:526.316700px;}
.yd_c00040{bottom:556.322700px;}
.yc_c00040{bottom:586.328700px;}
.yb_c00040{bottom:616.334700px;}
.ya_c00040{bottom:676.334700px;}
.y9_c00040{bottom:766.298700px;}
.y8_c00040{bottom:796.304700px;}
.y7_c00040{bottom:826.310700px;}
.y6_c00040{bottom:856.316700px;}
.y5_c00040{bottom:886.322700px;}
.y4_c00040{bottom:916.328700px;}
.y3_c00040{bottom:946.334700px;}
.y2_c00040{bottom:1006.334700px;}
.h2_c00040{height:54.000000px;}
.h4_c00040{height:64.800000px;}
.h3_c00040{height:78.540000px;}
.h0_c00040{height:1262.835000px;}
.h1_c00040{height:1263.000000px;}
.w0_c00040{width:892.914000px;}
.w1_c00040{width:893.250000px;}
.x0_c00040{left:0.000000px;}
.x2_c00040{left:90.000000px;}
.x3_c00040{left:106.500000px;}
.x1_c00040{left:796.913850px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls1_c00040{letter-spacing:0.000000pt;}
.ls0_c00040{letter-spacing:0.640000pt;}
.ls2_c00040{letter-spacing:0.746667pt;}
.ws0_c00040{word-spacing:-9.066667pt;}
.ws5_c00040{word-spacing:-4.928000pt;}
.ws9_c00040{word-spacing:-2.240000pt;}
.ws7_c00040{word-spacing:-0.960000pt;}
.wse_c00040{word-spacing:-0.896000pt;}
.ws2_c00040{word-spacing:-0.746667pt;}
.ws4_c00040{word-spacing:-0.128000pt;}
.ws1_c00040{word-spacing:0.000000pt;}
.ws8_c00040{word-spacing:0.640000pt;}
.wsb_c00040{word-spacing:1.984000pt;}
.wsa_c00040{word-spacing:3.904000pt;}
.ws6_c00040{word-spacing:4.544000pt;}
.ws10_c00040{word-spacing:5.824000pt;}
.wsf_c00040{word-spacing:6.976000pt;}
.ws11_c00040{word-spacing:8.384000pt;}
.wsd_c00040{word-spacing:9.920000pt;}
.ws3_c00040{word-spacing:14.272000pt;}
.wsc_c00040{word-spacing:24.704000pt;}
._0_c00040{margin-left:-426.966400pt;}
._1_c00040{margin-left:-3.733333pt;}
._3_c00040{margin-left:-2.549333pt;}
._2_c00040{margin-left:-1.280000pt;}
._4_c00040{width:1.126400pt;}
._5_c00040{width:2.604800pt;}
._6_c00040{width:3.980800pt;}
.fs1_c00040{font-size:37.333333pt;}
.fs0_c00040{font-size:53.333333pt;}
.fs3_c00040{font-size:64.000000pt;}
.fs2_c00040{font-size:74.666667pt;}
.y0_c00040{bottom:0.000000pt;}
.y1_c00040{bottom:36.666667pt;}
.y14_c00040{bottom:307.805067pt;}
.y13_c00040{bottom:334.477067pt;}
.y12_c00040{bottom:361.149067pt;}
.y11_c00040{bottom:387.821067pt;}
.y10_c00040{bottom:414.493067pt;}
.yf_c00040{bottom:441.165067pt;}
.ye_c00040{bottom:467.837067pt;}
.yd_c00040{bottom:494.509067pt;}
.yc_c00040{bottom:521.181067pt;}
.yb_c00040{bottom:547.853067pt;}
.ya_c00040{bottom:601.186400pt;}
.y9_c00040{bottom:681.154400pt;}
.y8_c00040{bottom:707.826400pt;}
.y7_c00040{bottom:734.498400pt;}
.y6_c00040{bottom:761.170400pt;}
.y5_c00040{bottom:787.842400pt;}
.y4_c00040{bottom:814.514400pt;}
.y3_c00040{bottom:841.186400pt;}
.y2_c00040{bottom:894.519733pt;}
.h2_c00040{height:48.000000pt;}
.h4_c00040{height:57.600000pt;}
.h3_c00040{height:69.813333pt;}
.h0_c00040{height:1122.520000pt;}
.h1_c00040{height:1122.666667pt;}
.w0_c00040{width:793.701333pt;}
.w1_c00040{width:794.000000pt;}
.x0_c00040{left:0.000000pt;}
.x2_c00040{left:80.000000pt;}
.x3_c00040{left:94.666667pt;}
.x1_c00040{left:708.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ace97a84e647a47aeb979c7.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00041;src:url('chunks/assets/font_e04a0991b070062a3f74fe43.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00041;src:url('chunks/assets/font_c9b8fdba265e8fff572ae7ce.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.161000;font-style: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);}
.m1_c00041{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls5_c00041{letter-spacing:-0.324000px;}
.ls4_c00041{letter-spacing:0.000000px;}
.ls0_c00041{letter-spacing:0.720000px;}
.ls1_c00041{letter-spacing:0.840000px;}
.ls3_c00041{letter-spacing:1.500000px;}
.ls2_c00041{letter-spacing:1.650000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00041{word-spacing:-21.276000px;}
.ws2_c00041{word-spacing:-17.640000px;}
.ws3_c00041{word-spacing:-14.850000px;}
.ws0_c00041{word-spacing:-10.200000px;}
.ws13_c00041{word-spacing:-1.500000px;}
.ws5_c00041{word-spacing:-0.840000px;}
.ws12_c00041{word-spacing:-0.720000px;}
.ws4_c00041{word-spacing:0.000000px;}
.ws9_c00041{word-spacing:0.072000px;}
.ws8_c00041{word-spacing:0.432000px;}
.ws6_c00041{word-spacing:1.368000px;}
.wsd_c00041{word-spacing:2.088000px;}
.wse_c00041{word-spacing:2.304000px;}
.wsc_c00041{word-spacing:3.096000px;}
.ws7_c00041{word-spacing:3.312000px;}
.wsf_c00041{word-spacing:3.600000px;}
.wsa_c00041{word-spacing:6.120000px;}
.ws11_c00041{word-spacing:8.496000px;}
.ws10_c00041{word-spacing:12.744000px;}
.wsb_c00041{word-spacing:26.208000px;}
._0_c00041{margin-left:-480.336000px;}
._1_c00041{margin-left:-4.200000px;}
._3_c00041{margin-left:-2.404800px;}
._2_c00041{margin-left:-1.134000px;}
._4_c00041{width:1.958400px;}
._5_c00041{width:4.622400px;}
.fc3_c00041{color:rgb(32,32,32);}
.fc2_c00041{color:rgb(233,83,14);}
.fc1_c00041{color:rgb(232,86,17);}
.fc4_c00041{color:rgb(157,157,156);}
.fc0_c00041{color:rgb(60,60,59);}
.fs1_c00041{font-size:42.000000px;}
.fs0_c00041{font-size:60.000000px;}
.fs5_c00041{font-size:66.000000px;}
.fs4_c00041{font-size:72.000000px;}
.fs3_c00041{font-size:84.000000px;}
.fs2_c00041{font-size:108.000000px;}
.y0_c00041{bottom:0.000000px;}
.y1_c00041{bottom:41.250000px;}
.y14_c00041{bottom:196.298700px;}
.y13_c00041{bottom:226.304700px;}
.y12_c00041{bottom:256.310700px;}
.y11_c00041{bottom:286.316700px;}
.y10_c00041{bottom:316.322700px;}
.yf_c00041{bottom:346.328700px;}
.ye_c00041{bottom:376.334700px;}
.yd_c00041{bottom:436.334700px;}
.yc_c00041{bottom:526.322700px;}
.yb_c00041{bottom:556.328700px;}
.ya_c00041{bottom:586.334700px;}
.y9_c00041{bottom:646.334700px;}
.y8_c00041{bottom:736.310700px;}
.y19_c00041{bottom:736.334700px;}
.y7_c00041{bottom:766.316700px;}
.y18_c00041{bottom:766.334700px;}
.y6_c00041{bottom:796.322700px;}
.y17_c00041{bottom:796.334700px;}
.y5_c00041{bottom:826.328700px;}
.y16_c00041{bottom:826.334700px;}
.y4_c00041{bottom:856.334700px;}
.y15_c00041{bottom:856.561950px;}
.y3_c00041{bottom:916.334700px;}
.y2_c00041{bottom:1006.334700px;}
.h6_c00041{height:50.292000px;}
.h2_c00041{height:54.000000px;}
.h5_c00041{height:64.800000px;}
.h4_c00041{height:78.540000px;}
.h3_c00041{height:100.980000px;}
.h0_c00041{height:1262.835000px;}
.h1_c00041{height:1263.000000px;}
.w0_c00041{width:892.914000px;}
.w1_c00041{width:893.250000px;}
.x0_c00041{left:0.000000px;}
.x2_c00041{left:82.500000px;}
.x3_c00041{left:90.000000px;}
.x4_c00041{left:106.500000px;}
.x5_c00041{left:675.611100px;}
.x1_c00041{left:794.438550px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls5_c00041{letter-spacing:-0.288000pt;}
.ls4_c00041{letter-spacing:0.000000pt;}
.ls0_c00041{letter-spacing:0.640000pt;}
.ls1_c00041{letter-spacing:0.746667pt;}
.ls3_c00041{letter-spacing:1.333333pt;}
.ls2_c00041{letter-spacing:1.466667pt;}
.ws1_c00041{word-spacing:-18.912000pt;}
.ws2_c00041{word-spacing:-15.680000pt;}
.ws3_c00041{word-spacing:-13.200000pt;}
.ws0_c00041{word-spacing:-9.066667pt;}
.ws13_c00041{word-spacing:-1.333333pt;}
.ws5_c00041{word-spacing:-0.746667pt;}
.ws12_c00041{word-spacing:-0.640000pt;}
.ws4_c00041{word-spacing:0.000000pt;}
.ws9_c00041{word-spacing:0.064000pt;}
.ws8_c00041{word-spacing:0.384000pt;}
.ws6_c00041{word-spacing:1.216000pt;}
.wsd_c00041{word-spacing:1.856000pt;}
.wse_c00041{word-spacing:2.048000pt;}
.wsc_c00041{word-spacing:2.752000pt;}
.ws7_c00041{word-spacing:2.944000pt;}
.wsf_c00041{word-spacing:3.200000pt;}
.wsa_c00041{word-spacing:5.440000pt;}
.ws11_c00041{word-spacing:7.552000pt;}
.ws10_c00041{word-spacing:11.328000pt;}
.wsb_c00041{word-spacing:23.296000pt;}
._0_c00041{margin-left:-426.965333pt;}
._1_c00041{margin-left:-3.733333pt;}
._3_c00041{margin-left:-2.137600pt;}
._2_c00041{margin-left:-1.008000pt;}
._4_c00041{width:1.740800pt;}
._5_c00041{width:4.108800pt;}
.fs1_c00041{font-size:37.333333pt;}
.fs0_c00041{font-size:53.333333pt;}
.fs5_c00041{font-size:58.666667pt;}
.fs4_c00041{font-size:64.000000pt;}
.fs3_c00041{font-size:74.666667pt;}
.fs2_c00041{font-size:96.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y1_c00041{bottom:36.666667pt;}
.y14_c00041{bottom:174.487733pt;}
.y13_c00041{bottom:201.159733pt;}
.y12_c00041{bottom:227.831733pt;}
.y11_c00041{bottom:254.503733pt;}
.y10_c00041{bottom:281.175733pt;}
.yf_c00041{bottom:307.847733pt;}
.ye_c00041{bottom:334.519733pt;}
.yd_c00041{bottom:387.853067pt;}
.yc_c00041{bottom:467.842400pt;}
.yb_c00041{bottom:494.514400pt;}
.ya_c00041{bottom:521.186400pt;}
.y9_c00041{bottom:574.519733pt;}
.y8_c00041{bottom:654.498400pt;}
.y19_c00041{bottom:654.519733pt;}
.y7_c00041{bottom:681.170400pt;}
.y18_c00041{bottom:681.186400pt;}
.y6_c00041{bottom:707.842400pt;}
.y17_c00041{bottom:707.853067pt;}
.y5_c00041{bottom:734.514400pt;}
.y16_c00041{bottom:734.519733pt;}
.y4_c00041{bottom:761.186400pt;}
.y15_c00041{bottom:761.388400pt;}
.y3_c00041{bottom:814.519733pt;}
.y2_c00041{bottom:894.519733pt;}
.h6_c00041{height:44.704000pt;}
.h2_c00041{height:48.000000pt;}
.h5_c00041{height:57.600000pt;}
.h4_c00041{height:69.813333pt;}
.h3_c00041{height:89.760000pt;}
.h0_c00041{height:1122.520000pt;}
.h1_c00041{height:1122.666667pt;}
.w0_c00041{width:793.701333pt;}
.w1_c00041{width:794.000000pt;}
.x0_c00041{left:0.000000pt;}
.x2_c00041{left:73.333333pt;}
.x3_c00041{left:80.000000pt;}
.x4_c00041{left:94.666667pt;}
.x5_c00041{left:600.543200pt;}
.x1_c00041{left:706.167600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b2b5c6dbdb777dcd589d3e8.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls1_c00042{letter-spacing:0.000000px;}
.ls0_c00042{letter-spacing:0.720000px;}
.ls2_c00042{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws11_c00042{word-spacing:-2.016000px;}
.ws5_c00042{word-spacing:-1.008000px;}
.ws2_c00042{word-spacing:-0.840000px;}
.ws8_c00042{word-spacing:-0.720000px;}
.ws1_c00042{word-spacing:0.000000px;}
.wsd_c00042{word-spacing:0.144000px;}
.ws7_c00042{word-spacing:1.080000px;}
.ws9_c00042{word-spacing:1.152000px;}
.wsb_c00042{word-spacing:1.872000px;}
.ws10_c00042{word-spacing:2.232000px;}
.ws6_c00042{word-spacing:2.880000px;}
.wsf_c00042{word-spacing:4.536000px;}
.wsc_c00042{word-spacing:4.968000px;}
.ws3_c00042{word-spacing:7.632000px;}
.ws4_c00042{word-spacing:11.376000px;}
.wsa_c00042{word-spacing:12.168000px;}
.wse_c00042{word-spacing:19.944000px;}
._0_c00042{margin-left:-480.336600px;}
._1_c00042{margin-left:-4.200000px;}
._2_c00042{margin-left:-1.440000px;}
._3_c00042{width:1.418400px;}
._5_c00042{width:2.923200px;}
._4_c00042{width:4.874400px;}
.fc2_c00042{color:rgb(32,32,32);}
.fc1_c00042{color:rgb(232,86,17);}
.fc0_c00042{color:rgb(60,60,59);}
.fs1_c00042{font-size:42.000000px;}
.fs0_c00042{font-size:60.000000px;}
.fs3_c00042{font-size:72.000000px;}
.fs2_c00042{font-size:84.000000px;}
.y0_c00042{bottom:0.000000px;}
.y1_c00042{bottom:41.250000px;}
.y12_c00042{bottom:406.286700px;}
.y11_c00042{bottom:436.292700px;}
.y10_c00042{bottom:466.298700px;}
.yf_c00042{bottom:496.304700px;}
.ye_c00042{bottom:526.310700px;}
.yd_c00042{bottom:556.316700px;}
.yc_c00042{bottom:586.322700px;}
.yb_c00042{bottom:616.328700px;}
.ya_c00042{bottom:646.334700px;}
.y9_c00042{bottom:706.334700px;}
.y8_c00042{bottom:796.304700px;}
.y7_c00042{bottom:826.310700px;}
.y6_c00042{bottom:856.316700px;}
.y5_c00042{bottom:886.322700px;}
.y4_c00042{bottom:916.328700px;}
.y3_c00042{bottom:946.334700px;}
.y2_c00042{bottom:1006.334700px;}
.h2_c00042{height:54.000000px;}
.h4_c00042{height:64.800000px;}
.h3_c00042{height:78.540000px;}
.h0_c00042{height:1262.835000px;}
.h1_c00042{height:1263.000000px;}
.w0_c00042{width:892.914000px;}
.w1_c00042{width:893.250000px;}
.x0_c00042{left:0.000000px;}
.x2_c00042{left:90.000000px;}
.x3_c00042{left:106.500000px;}
.x1_c00042{left:794.288700px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls1_c00042{letter-spacing:0.000000pt;}
.ls0_c00042{letter-spacing:0.640000pt;}
.ls2_c00042{letter-spacing:0.746667pt;}
.ws0_c00042{word-spacing:-9.066667pt;}
.ws11_c00042{word-spacing:-1.792000pt;}
.ws5_c00042{word-spacing:-0.896000pt;}
.ws2_c00042{word-spacing:-0.746667pt;}
.ws8_c00042{word-spacing:-0.640000pt;}
.ws1_c00042{word-spacing:0.000000pt;}
.wsd_c00042{word-spacing:0.128000pt;}
.ws7_c00042{word-spacing:0.960000pt;}
.ws9_c00042{word-spacing:1.024000pt;}
.wsb_c00042{word-spacing:1.664000pt;}
.ws10_c00042{word-spacing:1.984000pt;}
.ws6_c00042{word-spacing:2.560000pt;}
.wsf_c00042{word-spacing:4.032000pt;}
.wsc_c00042{word-spacing:4.416000pt;}
.ws3_c00042{word-spacing:6.784000pt;}
.ws4_c00042{word-spacing:10.112000pt;}
.wsa_c00042{word-spacing:10.816000pt;}
.wse_c00042{word-spacing:17.728000pt;}
._0_c00042{margin-left:-426.965867pt;}
._1_c00042{margin-left:-3.733333pt;}
._2_c00042{margin-left:-1.280000pt;}
._3_c00042{width:1.260800pt;}
._5_c00042{width:2.598400pt;}
._4_c00042{width:4.332800pt;}
.fs1_c00042{font-size:37.333333pt;}
.fs0_c00042{font-size:53.333333pt;}
.fs3_c00042{font-size:64.000000pt;}
.fs2_c00042{font-size:74.666667pt;}
.y0_c00042{bottom:0.000000pt;}
.y1_c00042{bottom:36.666667pt;}
.y12_c00042{bottom:361.143733pt;}
.y11_c00042{bottom:387.815733pt;}
.y10_c00042{bottom:414.487733pt;}
.yf_c00042{bottom:441.159733pt;}
.ye_c00042{bottom:467.831733pt;}
.yd_c00042{bottom:494.503733pt;}
.yc_c00042{bottom:521.175733pt;}
.yb_c00042{bottom:547.847733pt;}
.ya_c00042{bottom:574.519733pt;}
.y9_c00042{bottom:627.853067pt;}
.y8_c00042{bottom:707.826400pt;}
.y7_c00042{bottom:734.498400pt;}
.y6_c00042{bottom:761.170400pt;}
.y5_c00042{bottom:787.842400pt;}
.y4_c00042{bottom:814.514400pt;}
.y3_c00042{bottom:841.186400pt;}
.y2_c00042{bottom:894.519733pt;}
.h2_c00042{height:48.000000pt;}
.h4_c00042{height:57.600000pt;}
.h3_c00042{height:69.813333pt;}
.h0_c00042{height:1122.520000pt;}
.h1_c00042{height:1122.666667pt;}
.w0_c00042{width:793.701333pt;}
.w1_c00042{width:794.000000pt;}
.x0_c00042{left:0.000000pt;}
.x2_c00042{left:80.000000pt;}
.x3_c00042{left:94.666667pt;}
.x1_c00042{left:706.034400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00043;src:url('chunks/assets/font_d219d4c1976e9292b4fdff88.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00043;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00043{font-family:ff5_c00043;line-height:1.155000;font-style: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);}
.m1_c00043{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls2_c00043{letter-spacing:0.000000px;}
.ls0_c00043{letter-spacing:0.864000px;}
.ls1_c00043{letter-spacing:1.200000px;}
.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:-10.200000px;}
.ws6_c00043{word-spacing:-7.560000px;}
.ws5_c00043{word-spacing:-5.400000px;}
.ws7_c00043{word-spacing:-3.720000px;}
.ws4_c00043{word-spacing:-1.440000px;}
.ws3_c00043{word-spacing:-0.864000px;}
.ws2_c00043{word-spacing:-0.576000px;}
.ws1_c00043{word-spacing:0.000000px;}
._0_c00043{margin-left:-480.336600px;}
._9_c00043{margin-left:-10.800000px;}
._3_c00043{margin-left:-8.784000px;}
._4_c00043{margin-left:-6.480000px;}
._1_c00043{margin-left:-4.200000px;}
._7_c00043{margin-left:-3.000000px;}
._2_c00043{margin-left:-1.440000px;}
._6_c00043{width:1.152000px;}
._5_c00043{width:5.400000px;}
._8_c00043{width:8.160000px;}
.fc3_c00043{color:rgb(255,255,255);}
.fc2_c00043{color:rgb(233,83,14);}
.fc1_c00043{color:rgb(232,86,17);}
.fc0_c00043{color:rgb(60,60,59);}
.fs1_c00043{font-size:42.000000px;}
.fs0_c00043{font-size:60.000000px;}
.fs3_c00043{font-size:72.000000px;}
.fs4_c00043{font-size:120.000000px;}
.fs2_c00043{font-size:360.000000px;}
.y0_c00043{bottom:0.000000px;}
.y1_c00043{bottom:41.250000px;}
.y9_c00043{bottom:574.310700px;}
.y8_c00043{bottom:595.316700px;}
.y7_c00043{bottom:616.322700px;}
.y6_c00043{bottom:664.328700px;}
.y5_c00043{bottom:685.334700px;}
.y4_c00043{bottom:706.340700px;}
.y3_c00043{bottom:752.834700px;}
.yc_c00043{bottom:946.334700px;}
.yb_c00043{bottom:976.334700px;}
.ya_c00043{bottom:1006.334700px;}
.y2_c00043{bottom:1093.526700px;}
.h2_c00043{height:54.000000px;}
.h5_c00043{height:64.800000px;}
.h4_c00043{height:66.456000px;}
.h6_c00043{height:112.200000px;}
.h3_c00043{height:324.000000px;}
.h0_c00043{height:1262.835000px;}
.h1_c00043{height:1263.000000px;}
.w0_c00043{width:892.914000px;}
.w1_c00043{width:893.250000px;}
.x0_c00043{left:0.000000px;}
.x2_c00043{left:81.290250px;}
.x3_c00043{left:82.393650px;}
.x5_c00043{left:112.287450px;}
.x4_c00043{left:127.393650px;}
.x1_c00043{left:793.313700px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls2_c00043{letter-spacing:0.000000pt;}
.ls0_c00043{letter-spacing:0.768000pt;}
.ls1_c00043{letter-spacing:1.066667pt;}
.ws0_c00043{word-spacing:-9.066667pt;}
.ws6_c00043{word-spacing:-6.720000pt;}
.ws5_c00043{word-spacing:-4.800000pt;}
.ws7_c00043{word-spacing:-3.306667pt;}
.ws4_c00043{word-spacing:-1.280000pt;}
.ws3_c00043{word-spacing:-0.768000pt;}
.ws2_c00043{word-spacing:-0.512000pt;}
.ws1_c00043{word-spacing:0.000000pt;}
._0_c00043{margin-left:-426.965867pt;}
._9_c00043{margin-left:-9.600000pt;}
._3_c00043{margin-left:-7.808000pt;}
._4_c00043{margin-left:-5.760000pt;}
._1_c00043{margin-left:-3.733333pt;}
._7_c00043{margin-left:-2.666667pt;}
._2_c00043{margin-left:-1.280000pt;}
._6_c00043{width:1.024000pt;}
._5_c00043{width:4.800000pt;}
._8_c00043{width:7.253333pt;}
.fs1_c00043{font-size:37.333333pt;}
.fs0_c00043{font-size:53.333333pt;}
.fs3_c00043{font-size:64.000000pt;}
.fs4_c00043{font-size:106.666667pt;}
.fs2_c00043{font-size:320.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y1_c00043{bottom:36.666667pt;}
.y9_c00043{bottom:510.498400pt;}
.y8_c00043{bottom:529.170400pt;}
.y7_c00043{bottom:547.842400pt;}
.y6_c00043{bottom:590.514400pt;}
.y5_c00043{bottom:609.186400pt;}
.y4_c00043{bottom:627.858400pt;}
.y3_c00043{bottom:669.186400pt;}
.yc_c00043{bottom:841.186400pt;}
.yb_c00043{bottom:867.853067pt;}
.ya_c00043{bottom:894.519733pt;}
.y2_c00043{bottom:972.023733pt;}
.h2_c00043{height:48.000000pt;}
.h5_c00043{height:57.600000pt;}
.h4_c00043{height:59.072000pt;}
.h6_c00043{height:99.733333pt;}
.h3_c00043{height:288.000000pt;}
.h0_c00043{height:1122.520000pt;}
.h1_c00043{height:1122.666667pt;}
.w0_c00043{width:793.701333pt;}
.w1_c00043{width:794.000000pt;}
.x0_c00043{left:0.000000pt;}
.x2_c00043{left:72.258000pt;}
.x3_c00043{left:73.238800pt;}
.x5_c00043{left:99.811067pt;}
.x4_c00043{left:113.238800pt;}
.x1_c00043{left:705.167733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_8044500461936b1776693626.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00044;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_c9b8fdba265e8fff572ae7ce.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.161000;font-style: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);}
.m1_c00044{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls5_c00044{letter-spacing:-0.540000px;}
.ls4_c00044{letter-spacing:0.000000px;}
.ls0_c00044{letter-spacing:0.720000px;}
.ls1_c00044{letter-spacing:0.840000px;}
.ls3_c00044{letter-spacing:1.500000px;}
.ls2_c00044{letter-spacing:1.650000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00044{word-spacing:-21.060000px;}
.ws2_c00044{word-spacing:-17.640000px;}
.ws3_c00044{word-spacing:-11.700000px;}
.ws0_c00044{word-spacing:-10.200000px;}
.wsd_c00044{word-spacing:-3.528000px;}
.ws13_c00044{word-spacing:-3.240000px;}
.ws12_c00044{word-spacing:-2.376000px;}
.ws10_c00044{word-spacing:-1.656000px;}
.ws11_c00044{word-spacing:-1.440000px;}
.ws5_c00044{word-spacing:-0.840000px;}
.ws6_c00044{word-spacing:-0.792000px;}
.ws7_c00044{word-spacing:-0.720000px;}
.ws4_c00044{word-spacing:0.000000px;}
.wse_c00044{word-spacing:1.872000px;}
.wsf_c00044{word-spacing:2.376000px;}
.wsc_c00044{word-spacing:3.096000px;}
.wsa_c00044{word-spacing:3.384000px;}
.ws9_c00044{word-spacing:5.688000px;}
.ws8_c00044{word-spacing:6.912000px;}
.wsb_c00044{word-spacing:7.488000px;}
._0_c00044{margin-left:-480.336000px;}
._3_c00044{margin-left:-6.472800px;}
._1_c00044{margin-left:-4.200000px;}
._2_c00044{margin-left:-1.440000px;}
.fc3_c00044{color:rgb(32,32,32);}
.fc2_c00044{color:rgb(233,83,14);}
.fc1_c00044{color:rgb(232,86,17);}
.fc4_c00044{color:rgb(157,157,156);}
.fc0_c00044{color:rgb(60,60,59);}
.fs1_c00044{font-size:42.000000px;}
.fs0_c00044{font-size:60.000000px;}
.fs5_c00044{font-size:66.000000px;}
.fs4_c00044{font-size:72.000000px;}
.fs3_c00044{font-size:84.000000px;}
.fs2_c00044{font-size:108.000000px;}
.y0_c00044{bottom:0.000000px;}
.y1_c00044{bottom:41.250000px;}
.y17_c00044{bottom:106.316700px;}
.y16_c00044{bottom:136.322700px;}
.y15_c00044{bottom:166.328700px;}
.y14_c00044{bottom:196.334700px;}
.y13_c00044{bottom:256.334700px;}
.y12_c00044{bottom:346.328700px;}
.y11_c00044{bottom:376.334700px;}
.y10_c00044{bottom:436.334700px;}
.yf_c00044{bottom:526.268700px;}
.ye_c00044{bottom:556.274700px;}
.yd_c00044{bottom:586.280700px;}
.yc_c00044{bottom:616.286700px;}
.yb_c00044{bottom:646.292700px;}
.ya_c00044{bottom:676.298700px;}
.y9_c00044{bottom:706.304700px;}
.y8_c00044{bottom:736.310700px;}
.y7_c00044{bottom:766.316700px;}
.y1b_c00044{bottom:766.334700px;}
.y6_c00044{bottom:796.322700px;}
.y1a_c00044{bottom:796.334700px;}
.y5_c00044{bottom:826.328700px;}
.y19_c00044{bottom:826.334700px;}
.y4_c00044{bottom:856.334700px;}
.y18_c00044{bottom:856.561950px;}
.y3_c00044{bottom:916.334700px;}
.y2_c00044{bottom:1006.334700px;}
.h6_c00044{height:50.292000px;}
.h2_c00044{height:54.000000px;}
.h5_c00044{height:64.800000px;}
.h4_c00044{height:78.540000px;}
.h3_c00044{height:100.980000px;}
.h0_c00044{height:1262.835000px;}
.h1_c00044{height:1263.000000px;}
.w0_c00044{width:892.914000px;}
.w1_c00044{width:893.250000px;}
.x0_c00044{left:0.000000px;}
.x2_c00044{left:82.500000px;}
.x3_c00044{left:90.000000px;}
.x4_c00044{left:106.500000px;}
.x5_c00044{left:675.611100px;}
.x1_c00044{left:794.363550px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls5_c00044{letter-spacing:-0.480000pt;}
.ls4_c00044{letter-spacing:0.000000pt;}
.ls0_c00044{letter-spacing:0.640000pt;}
.ls1_c00044{letter-spacing:0.746667pt;}
.ls3_c00044{letter-spacing:1.333333pt;}
.ls2_c00044{letter-spacing:1.466667pt;}
.ws1_c00044{word-spacing:-18.720000pt;}
.ws2_c00044{word-spacing:-15.680000pt;}
.ws3_c00044{word-spacing:-10.400000pt;}
.ws0_c00044{word-spacing:-9.066667pt;}
.wsd_c00044{word-spacing:-3.136000pt;}
.ws13_c00044{word-spacing:-2.880000pt;}
.ws12_c00044{word-spacing:-2.112000pt;}
.ws10_c00044{word-spacing:-1.472000pt;}
.ws11_c00044{word-spacing:-1.280000pt;}
.ws5_c00044{word-spacing:-0.746667pt;}
.ws6_c00044{word-spacing:-0.704000pt;}
.ws7_c00044{word-spacing:-0.640000pt;}
.ws4_c00044{word-spacing:0.000000pt;}
.wse_c00044{word-spacing:1.664000pt;}
.wsf_c00044{word-spacing:2.112000pt;}
.wsc_c00044{word-spacing:2.752000pt;}
.wsa_c00044{word-spacing:3.008000pt;}
.ws9_c00044{word-spacing:5.056000pt;}
.ws8_c00044{word-spacing:6.144000pt;}
.wsb_c00044{word-spacing:6.656000pt;}
._0_c00044{margin-left:-426.965333pt;}
._3_c00044{margin-left:-5.753600pt;}
._1_c00044{margin-left:-3.733333pt;}
._2_c00044{margin-left:-1.280000pt;}
.fs1_c00044{font-size:37.333333pt;}
.fs0_c00044{font-size:53.333333pt;}
.fs5_c00044{font-size:58.666667pt;}
.fs4_c00044{font-size:64.000000pt;}
.fs3_c00044{font-size:74.666667pt;}
.fs2_c00044{font-size:96.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y1_c00044{bottom:36.666667pt;}
.y17_c00044{bottom:94.503733pt;}
.y16_c00044{bottom:121.175733pt;}
.y15_c00044{bottom:147.847733pt;}
.y14_c00044{bottom:174.519733pt;}
.y13_c00044{bottom:227.853067pt;}
.y12_c00044{bottom:307.847733pt;}
.y11_c00044{bottom:334.519733pt;}
.y10_c00044{bottom:387.853067pt;}
.yf_c00044{bottom:467.794400pt;}
.ye_c00044{bottom:494.466400pt;}
.yd_c00044{bottom:521.138400pt;}
.yc_c00044{bottom:547.810400pt;}
.yb_c00044{bottom:574.482400pt;}
.ya_c00044{bottom:601.154400pt;}
.y9_c00044{bottom:627.826400pt;}
.y8_c00044{bottom:654.498400pt;}
.y7_c00044{bottom:681.170400pt;}
.y1b_c00044{bottom:681.186400pt;}
.y6_c00044{bottom:707.842400pt;}
.y1a_c00044{bottom:707.853067pt;}
.y5_c00044{bottom:734.514400pt;}
.y19_c00044{bottom:734.519733pt;}
.y4_c00044{bottom:761.186400pt;}
.y18_c00044{bottom:761.388400pt;}
.y3_c00044{bottom:814.519733pt;}
.y2_c00044{bottom:894.519733pt;}
.h6_c00044{height:44.704000pt;}
.h2_c00044{height:48.000000pt;}
.h5_c00044{height:57.600000pt;}
.h4_c00044{height:69.813333pt;}
.h3_c00044{height:89.760000pt;}
.h0_c00044{height:1122.520000pt;}
.h1_c00044{height:1122.666667pt;}
.w0_c00044{width:793.701333pt;}
.w1_c00044{width:794.000000pt;}
.x0_c00044{left:0.000000pt;}
.x2_c00044{left:73.333333pt;}
.x3_c00044{left:80.000000pt;}
.x4_c00044{left:94.666667pt;}
.x5_c00044{left:600.543200pt;}
.x1_c00044{left:706.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.199000;font-style: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);}
.m1_c00045{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls1_c00045{letter-spacing:0.000000px;}
.ls0_c00045{letter-spacing:0.720000px;}
.ls2_c00045{letter-spacing:0.840000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00045{word-spacing:-10.200000px;}
.wsc_c00045{word-spacing:-2.520000px;}
.wsb_c00045{word-spacing:-1.872000px;}
.ws2_c00045{word-spacing:-0.840000px;}
.ws6_c00045{word-spacing:-0.720000px;}
.ws1_c00045{word-spacing:0.000000px;}
.ws7_c00045{word-spacing:4.104000px;}
.ws5_c00045{word-spacing:4.392000px;}
.ws9_c00045{word-spacing:5.832000px;}
.ws8_c00045{word-spacing:7.920000px;}
.wsa_c00045{word-spacing:9.072000px;}
.ws4_c00045{word-spacing:22.320000px;}
.ws3_c00045{word-spacing:23.400000px;}
._0_c00045{margin-left:-480.336000px;}
._1_c00045{margin-left:-4.200000px;}
._2_c00045{margin-left:-1.440000px;}
.fc2_c00045{color:rgb(32,32,32);}
.fc1_c00045{color:rgb(232,86,17);}
.fc0_c00045{color:rgb(60,60,59);}
.fs1_c00045{font-size:42.000000px;}
.fs0_c00045{font-size:60.000000px;}
.fs3_c00045{font-size:72.000000px;}
.fs2_c00045{font-size:84.000000px;}
.y0_c00045{bottom:0.000000px;}
.y1_c00045{bottom:41.250000px;}
.y10_c00045{bottom:466.292700px;}
.yf_c00045{bottom:496.298700px;}
.ye_c00045{bottom:526.304700px;}
.yd_c00045{bottom:556.310700px;}
.yc_c00045{bottom:586.316700px;}
.yb_c00045{bottom:616.322700px;}
.ya_c00045{bottom:646.328700px;}
.y9_c00045{bottom:676.334700px;}
.y8_c00045{bottom:736.334700px;}
.y7_c00045{bottom:826.310700px;}
.y6_c00045{bottom:856.316700px;}
.y5_c00045{bottom:886.322700px;}
.y4_c00045{bottom:916.328700px;}
.y3_c00045{bottom:946.334700px;}
.y2_c00045{bottom:1006.334700px;}
.h2_c00045{height:54.000000px;}
.h4_c00045{height:64.800000px;}
.h3_c00045{height:78.540000px;}
.h0_c00045{height:1262.835000px;}
.h1_c00045{height:1263.000000px;}
.w0_c00045{width:892.914000px;}
.w1_c00045{width:893.250000px;}
.x0_c00045{left:0.000000px;}
.x2_c00045{left:90.000000px;}
.x3_c00045{left:106.500000px;}
.x1_c00045{left:793.238550px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls1_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:0.640000pt;}
.ls2_c00045{letter-spacing:0.746667pt;}
.ws0_c00045{word-spacing:-9.066667pt;}
.wsc_c00045{word-spacing:-2.240000pt;}
.wsb_c00045{word-spacing:-1.664000pt;}
.ws2_c00045{word-spacing:-0.746667pt;}
.ws6_c00045{word-spacing:-0.640000pt;}
.ws1_c00045{word-spacing:0.000000pt;}
.ws7_c00045{word-spacing:3.648000pt;}
.ws5_c00045{word-spacing:3.904000pt;}
.ws9_c00045{word-spacing:5.184000pt;}
.ws8_c00045{word-spacing:7.040000pt;}
.wsa_c00045{word-spacing:8.064000pt;}
.ws4_c00045{word-spacing:19.840000pt;}
.ws3_c00045{word-spacing:20.800000pt;}
._0_c00045{margin-left:-426.965333pt;}
._1_c00045{margin-left:-3.733333pt;}
._2_c00045{margin-left:-1.280000pt;}
.fs1_c00045{font-size:37.333333pt;}
.fs0_c00045{font-size:53.333333pt;}
.fs3_c00045{font-size:64.000000pt;}
.fs2_c00045{font-size:74.666667pt;}
.y0_c00045{bottom:0.000000pt;}
.y1_c00045{bottom:36.666667pt;}
.y10_c00045{bottom:414.482400pt;}
.yf_c00045{bottom:441.154400pt;}
.ye_c00045{bottom:467.826400pt;}
.yd_c00045{bottom:494.498400pt;}
.yc_c00045{bottom:521.170400pt;}
.yb_c00045{bottom:547.842400pt;}
.ya_c00045{bottom:574.514400pt;}
.y9_c00045{bottom:601.186400pt;}
.y8_c00045{bottom:654.519733pt;}
.y7_c00045{bottom:734.498400pt;}
.y6_c00045{bottom:761.170400pt;}
.y5_c00045{bottom:787.842400pt;}
.y4_c00045{bottom:814.514400pt;}
.y3_c00045{bottom:841.186400pt;}
.y2_c00045{bottom:894.519733pt;}
.h2_c00045{height:48.000000pt;}
.h4_c00045{height:57.600000pt;}
.h3_c00045{height:69.813333pt;}
.h0_c00045{height:1122.520000pt;}
.h1_c00045{height:1122.666667pt;}
.w0_c00045{width:793.701333pt;}
.w1_c00045{width:794.000000pt;}
.x0_c00045{left:0.000000pt;}
.x2_c00045{left:80.000000pt;}
.x3_c00045{left:94.666667pt;}
.x1_c00045{left:705.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_923861bcc91c45bbc60b5cd8.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00046;src:url('chunks/assets/font_e04a0991b070062a3f74fe43.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00046;src:url('chunks/assets/font_c9b8fdba265e8fff572ae7ce.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.161000;font-style: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);}
.m1_c00046{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls5_c00046{letter-spacing:-0.324000px;}
.ls4_c00046{letter-spacing:0.000000px;}
.ls0_c00046{letter-spacing:0.720000px;}
.ls1_c00046{letter-spacing:0.840000px;}
.ls3_c00046{letter-spacing:1.500000px;}
.ls2_c00046{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00046{word-spacing:-21.276000px;}
.ws2_c00046{word-spacing:-17.640000px;}
.ws3_c00046{word-spacing:-14.850000px;}
.ws4_c00046{word-spacing:-11.700000px;}
.ws0_c00046{word-spacing:-10.200000px;}
.ws7_c00046{word-spacing:-3.240000px;}
.wsd_c00046{word-spacing:-0.936000px;}
.ws6_c00046{word-spacing:-0.840000px;}
.ws9_c00046{word-spacing:-0.720000px;}
.ws5_c00046{word-spacing:0.000000px;}
.ws11_c00046{word-spacing:0.360000px;}
.wsa_c00046{word-spacing:1.152000px;}
.wsf_c00046{word-spacing:1.872000px;}
.ws10_c00046{word-spacing:3.096000px;}
.ws14_c00046{word-spacing:3.600000px;}
.ws13_c00046{word-spacing:5.112000px;}
.ws12_c00046{word-spacing:7.560000px;}
.wsc_c00046{word-spacing:8.928000px;}
.wse_c00046{word-spacing:9.360000px;}
.ws8_c00046{word-spacing:9.936000px;}
.wsb_c00046{word-spacing:17.568000px;}
._0_c00046{margin-left:-480.336000px;}
._4_c00046{margin-left:-5.706000px;}
._1_c00046{margin-left:-4.200000px;}
._3_c00046{margin-left:-2.160000px;}
._2_c00046{margin-left:-1.134000px;}
.fc3_c00046{color:rgb(32,32,32);}
.fc2_c00046{color:rgb(233,83,14);}
.fc1_c00046{color:rgb(232,86,17);}
.fc4_c00046{color:rgb(157,157,156);}
.fc0_c00046{color:rgb(60,60,59);}
.fs1_c00046{font-size:42.000000px;}
.fs0_c00046{font-size:60.000000px;}
.fs5_c00046{font-size:66.000000px;}
.fs4_c00046{font-size:72.000000px;}
.fs3_c00046{font-size:84.000000px;}
.fs2_c00046{font-size:108.000000px;}
.y0_c00046{bottom:0.000000px;}
.y1_c00046{bottom:41.250000px;}
.y16_c00046{bottom:136.316700px;}
.y15_c00046{bottom:166.322700px;}
.y14_c00046{bottom:196.328700px;}
.y13_c00046{bottom:226.334700px;}
.y12_c00046{bottom:286.334700px;}
.y11_c00046{bottom:376.328700px;}
.y10_c00046{bottom:406.334700px;}
.yf_c00046{bottom:466.334700px;}
.ye_c00046{bottom:556.274700px;}
.yd_c00046{bottom:586.280700px;}
.yc_c00046{bottom:616.286700px;}
.yb_c00046{bottom:646.292700px;}
.ya_c00046{bottom:676.298700px;}
.y9_c00046{bottom:706.304700px;}
.y8_c00046{bottom:736.310700px;}
.y7_c00046{bottom:766.316700px;}
.y1a_c00046{bottom:766.334700px;}
.y6_c00046{bottom:796.322700px;}
.y19_c00046{bottom:796.334700px;}
.y5_c00046{bottom:826.328700px;}
.y18_c00046{bottom:826.334700px;}
.y4_c00046{bottom:856.334700px;}
.y17_c00046{bottom:856.561950px;}
.y3_c00046{bottom:916.334700px;}
.y2_c00046{bottom:1006.334700px;}
.h6_c00046{height:50.292000px;}
.h2_c00046{height:54.000000px;}
.h5_c00046{height:64.800000px;}
.h4_c00046{height:78.540000px;}
.h3_c00046{height:100.980000px;}
.h0_c00046{height:1262.835000px;}
.h1_c00046{height:1263.000000px;}
.w0_c00046{width:892.914000px;}
.w1_c00046{width:893.250000px;}
.x0_c00046{left:0.000000px;}
.x2_c00046{left:82.500000px;}
.x3_c00046{left:90.000000px;}
.x4_c00046{left:106.500000px;}
.x5_c00046{left:675.611100px;}
.x1_c00046{left:795.338550px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls5_c00046{letter-spacing:-0.288000pt;}
.ls4_c00046{letter-spacing:0.000000pt;}
.ls0_c00046{letter-spacing:0.640000pt;}
.ls1_c00046{letter-spacing:0.746667pt;}
.ls3_c00046{letter-spacing:1.333333pt;}
.ls2_c00046{letter-spacing:1.466667pt;}
.ws1_c00046{word-spacing:-18.912000pt;}
.ws2_c00046{word-spacing:-15.680000pt;}
.ws3_c00046{word-spacing:-13.200000pt;}
.ws4_c00046{word-spacing:-10.400000pt;}
.ws0_c00046{word-spacing:-9.066667pt;}
.ws7_c00046{word-spacing:-2.880000pt;}
.wsd_c00046{word-spacing:-0.832000pt;}
.ws6_c00046{word-spacing:-0.746667pt;}
.ws9_c00046{word-spacing:-0.640000pt;}
.ws5_c00046{word-spacing:0.000000pt;}
.ws11_c00046{word-spacing:0.320000pt;}
.wsa_c00046{word-spacing:1.024000pt;}
.wsf_c00046{word-spacing:1.664000pt;}
.ws10_c00046{word-spacing:2.752000pt;}
.ws14_c00046{word-spacing:3.200000pt;}
.ws13_c00046{word-spacing:4.544000pt;}
.ws12_c00046{word-spacing:6.720000pt;}
.wsc_c00046{word-spacing:7.936000pt;}
.wse_c00046{word-spacing:8.320000pt;}
.ws8_c00046{word-spacing:8.832000pt;}
.wsb_c00046{word-spacing:15.616000pt;}
._0_c00046{margin-left:-426.965333pt;}
._4_c00046{margin-left:-5.072000pt;}
._1_c00046{margin-left:-3.733333pt;}
._3_c00046{margin-left:-1.920000pt;}
._2_c00046{margin-left:-1.008000pt;}
.fs1_c00046{font-size:37.333333pt;}
.fs0_c00046{font-size:53.333333pt;}
.fs5_c00046{font-size:58.666667pt;}
.fs4_c00046{font-size:64.000000pt;}
.fs3_c00046{font-size:74.666667pt;}
.fs2_c00046{font-size:96.000000pt;}
.y0_c00046{bottom:0.000000pt;}
.y1_c00046{bottom:36.666667pt;}
.y16_c00046{bottom:121.170400pt;}
.y15_c00046{bottom:147.842400pt;}
.y14_c00046{bottom:174.514400pt;}
.y13_c00046{bottom:201.186400pt;}
.y12_c00046{bottom:254.519733pt;}
.y11_c00046{bottom:334.514400pt;}
.y10_c00046{bottom:361.186400pt;}
.yf_c00046{bottom:414.519733pt;}
.ye_c00046{bottom:494.466400pt;}
.yd_c00046{bottom:521.138400pt;}
.yc_c00046{bottom:547.810400pt;}
.yb_c00046{bottom:574.482400pt;}
.ya_c00046{bottom:601.154400pt;}
.y9_c00046{bottom:627.826400pt;}
.y8_c00046{bottom:654.498400pt;}
.y7_c00046{bottom:681.170400pt;}
.y1a_c00046{bottom:681.186400pt;}
.y6_c00046{bottom:707.842400pt;}
.y19_c00046{bottom:707.853067pt;}
.y5_c00046{bottom:734.514400pt;}
.y18_c00046{bottom:734.519733pt;}
.y4_c00046{bottom:761.186400pt;}
.y17_c00046{bottom:761.388400pt;}
.y3_c00046{bottom:814.519733pt;}
.y2_c00046{bottom:894.519733pt;}
.h6_c00046{height:44.704000pt;}
.h2_c00046{height:48.000000pt;}
.h5_c00046{height:57.600000pt;}
.h4_c00046{height:69.813333pt;}
.h3_c00046{height:89.760000pt;}
.h0_c00046{height:1122.520000pt;}
.h1_c00046{height:1122.666667pt;}
.w0_c00046{width:793.701333pt;}
.w1_c00046{width:794.000000pt;}
.x0_c00046{left:0.000000pt;}
.x2_c00046{left:73.333333pt;}
.x3_c00046{left:80.000000pt;}
.x4_c00046{left:94.666667pt;}
.x5_c00046{left:600.543200pt;}
.x1_c00046{left:706.967600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a6dd397fda73dff24bccf6c.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00047;src:url('chunks/assets/font_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.199000;font-style: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);}
.m1_c00047{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls1_c00047{letter-spacing:0.000000px;}
.ls0_c00047{letter-spacing:0.720000px;}
.ls2_c00047{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsb_c00047{word-spacing:-1.368000px;}
.ws2_c00047{word-spacing:-0.840000px;}
.ws1_c00047{word-spacing:0.000000px;}
.ws5_c00047{word-spacing:0.504000px;}
.ws8_c00047{word-spacing:3.456000px;}
.ws3_c00047{word-spacing:3.744000px;}
.ws7_c00047{word-spacing:5.616000px;}
.wsa_c00047{word-spacing:6.264000px;}
.ws9_c00047{word-spacing:11.592000px;}
.ws6_c00047{word-spacing:13.176000px;}
.ws4_c00047{word-spacing:16.848000px;}
._0_c00047{margin-left:-480.336600px;}
._1_c00047{margin-left:-4.200000px;}
._2_c00047{margin-left:-1.440000px;}
._3_c00047{width:1.368000px;}
.fc2_c00047{color:rgb(32,32,32);}
.fc1_c00047{color:rgb(232,86,17);}
.fc0_c00047{color:rgb(60,60,59);}
.fs1_c00047{font-size:42.000000px;}
.fs0_c00047{font-size:60.000000px;}
.fs3_c00047{font-size:72.000000px;}
.fs2_c00047{font-size:84.000000px;}
.y0_c00047{bottom:0.000000px;}
.y1_c00047{bottom:41.250000px;}
.ye_c00047{bottom:496.310700px;}
.yd_c00047{bottom:526.316700px;}
.yc_c00047{bottom:556.322700px;}
.yb_c00047{bottom:616.316700px;}
.ya_c00047{bottom:646.322700px;}
.y9_c00047{bottom:676.328700px;}
.y8_c00047{bottom:706.334700px;}
.y7_c00047{bottom:766.334700px;}
.y6_c00047{bottom:856.316700px;}
.y5_c00047{bottom:886.322700px;}
.y4_c00047{bottom:916.328700px;}
.y3_c00047{bottom:946.334700px;}
.y2_c00047{bottom:1006.334700px;}
.h2_c00047{height:54.000000px;}
.h4_c00047{height:64.800000px;}
.h3_c00047{height:78.540000px;}
.h0_c00047{height:1262.835000px;}
.h1_c00047{height:1263.000000px;}
.w0_c00047{width:892.914000px;}
.w1_c00047{width:893.250000px;}
.x0_c00047{left:0.000000px;}
.x2_c00047{left:90.000000px;}
.x3_c00047{left:106.500000px;}
.x1_c00047{left:793.313700px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls1_c00047{letter-spacing:0.000000pt;}
.ls0_c00047{letter-spacing:0.640000pt;}
.ls2_c00047{letter-spacing:0.746667pt;}
.ws0_c00047{word-spacing:-9.066667pt;}
.wsb_c00047{word-spacing:-1.216000pt;}
.ws2_c00047{word-spacing:-0.746667pt;}
.ws1_c00047{word-spacing:0.000000pt;}
.ws5_c00047{word-spacing:0.448000pt;}
.ws8_c00047{word-spacing:3.072000pt;}
.ws3_c00047{word-spacing:3.328000pt;}
.ws7_c00047{word-spacing:4.992000pt;}
.wsa_c00047{word-spacing:5.568000pt;}
.ws9_c00047{word-spacing:10.304000pt;}
.ws6_c00047{word-spacing:11.712000pt;}
.ws4_c00047{word-spacing:14.976000pt;}
._0_c00047{margin-left:-426.965867pt;}
._1_c00047{margin-left:-3.733333pt;}
._2_c00047{margin-left:-1.280000pt;}
._3_c00047{width:1.216000pt;}
.fs1_c00047{font-size:37.333333pt;}
.fs0_c00047{font-size:53.333333pt;}
.fs3_c00047{font-size:64.000000pt;}
.fs2_c00047{font-size:74.666667pt;}
.y0_c00047{bottom:0.000000pt;}
.y1_c00047{bottom:36.666667pt;}
.ye_c00047{bottom:441.165067pt;}
.yd_c00047{bottom:467.837067pt;}
.yc_c00047{bottom:494.509067pt;}
.yb_c00047{bottom:547.837067pt;}
.ya_c00047{bottom:574.509067pt;}
.y9_c00047{bottom:601.181067pt;}
.y8_c00047{bottom:627.853067pt;}
.y7_c00047{bottom:681.186400pt;}
.y6_c00047{bottom:761.170400pt;}
.y5_c00047{bottom:787.842400pt;}
.y4_c00047{bottom:814.514400pt;}
.y3_c00047{bottom:841.186400pt;}
.y2_c00047{bottom:894.519733pt;}
.h2_c00047{height:48.000000pt;}
.h4_c00047{height:57.600000pt;}
.h3_c00047{height:69.813333pt;}
.h0_c00047{height:1122.520000pt;}
.h1_c00047{height:1122.666667pt;}
.w0_c00047{width:793.701333pt;}
.w1_c00047{width:794.000000pt;}
.x0_c00047{left:0.000000pt;}
.x2_c00047{left:80.000000pt;}
.x3_c00047{left:94.666667pt;}
.x1_c00047{left:705.167733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.160000;font-style:normal;font-weight:normal;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_e509564154f0d9e81f5e90d4.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_cbd962b9ce19620b663cf586.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00048;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00048;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00048{font-family:ff5_c00048;line-height:1.155000;font-style: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);}
.m1_c00048{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls2_c00048{letter-spacing:0.000000px;}
.ls0_c00048{letter-spacing:0.864000px;}
.ls1_c00048{letter-spacing:1.200000px;}
.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;}
}
.ws2_c00048{word-spacing:-21.600000px;}
.ws7_c00048{word-spacing:-18.240000px;}
.ws1_c00048{word-spacing:-13.104000px;}
.ws8_c00048{word-spacing:-12.720000px;}
.ws9_c00048{word-spacing:-10.440000px;}
.ws0_c00048{word-spacing:-10.200000px;}
.ws6_c00048{word-spacing:-7.128000px;}
.ws4_c00048{word-spacing:-2.664000px;}
.ws5_c00048{word-spacing:-0.864000px;}
.ws3_c00048{word-spacing:0.000000px;}
._0_c00048{margin-left:-480.336000px;}
._a_c00048{margin-left:-10.440000px;}
._6_c00048{margin-left:-9.360000px;}
._5_c00048{margin-left:-7.200000px;}
._1_c00048{margin-left:-4.200000px;}
._3_c00048{margin-left:-2.160000px;}
._2_c00048{margin-left:-1.065600px;}
._4_c00048{width:2.736000px;}
._9_c00048{width:6.480000px;}
._7_c00048{width:15.720000px;}
._8_c00048{width:18.240000px;}
.fc3_c00048{color:rgb(255,255,255);}
.fc2_c00048{color:rgb(233,83,14);}
.fc1_c00048{color:rgb(232,86,17);}
.fc0_c00048{color:rgb(60,60,59);}
.fs1_c00048{font-size:42.000000px;}
.fs0_c00048{font-size:60.000000px;}
.fs3_c00048{font-size:72.000000px;}
.fs4_c00048{font-size:120.000000px;}
.fs2_c00048{font-size:360.000000px;}
.y0_c00048{bottom:0.000000px;}
.y1_c00048{bottom:41.250000px;}
.y11_c00048{bottom:319.255200px;}
.y10_c00048{bottom:340.261200px;}
.yf_c00048{bottom:361.267200px;}
.ye_c00048{bottom:382.273200px;}
.yd_c00048{bottom:403.279200px;}
.yc_c00048{bottom:424.285200px;}
.yb_c00048{bottom:445.291200px;}
.ya_c00048{bottom:466.297200px;}
.y9_c00048{bottom:511.297200px;}
.y8_c00048{bottom:532.303200px;}
.y7_c00048{bottom:553.309200px;}
.y6_c00048{bottom:574.315200px;}
.y5_c00048{bottom:595.321200px;}
.y4_c00048{bottom:616.327200px;}
.y3_c00048{bottom:661.723200px;}
.y19_c00048{bottom:766.334700px;}
.y18_c00048{bottom:796.334700px;}
.y17_c00048{bottom:826.334700px;}
.y16_c00048{bottom:856.334700px;}
.y15_c00048{bottom:916.334700px;}
.y14_c00048{bottom:946.334700px;}
.y13_c00048{bottom:976.334700px;}
.y12_c00048{bottom:1006.334700px;}
.y2_c00048{bottom:1093.526700px;}
.h2_c00048{height:54.000000px;}
.h5_c00048{height:64.800000px;}
.h4_c00048{height:66.456000px;}
.h7_c00048{height:108.000000px;}
.h6_c00048{height:112.200000px;}
.h3_c00048{height:324.000000px;}
.h0_c00048{height:1262.835000px;}
.h1_c00048{height:1263.000000px;}
.w0_c00048{width:892.914000px;}
.w1_c00048{width:893.250000px;}
.x0_c00048{left:0.000000px;}
.x2_c00048{left:81.290250px;}
.x3_c00048{left:82.393650px;}
.x5_c00048{left:112.287450px;}
.x4_c00048{left:127.393650px;}
.x1_c00048{left:793.238550px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls2_c00048{letter-spacing:0.000000pt;}
.ls0_c00048{letter-spacing:0.768000pt;}
.ls1_c00048{letter-spacing:1.066667pt;}
.ws2_c00048{word-spacing:-19.200000pt;}
.ws7_c00048{word-spacing:-16.213333pt;}
.ws1_c00048{word-spacing:-11.648000pt;}
.ws8_c00048{word-spacing:-11.306667pt;}
.ws9_c00048{word-spacing:-9.280000pt;}
.ws0_c00048{word-spacing:-9.066667pt;}
.ws6_c00048{word-spacing:-6.336000pt;}
.ws4_c00048{word-spacing:-2.368000pt;}
.ws5_c00048{word-spacing:-0.768000pt;}
.ws3_c00048{word-spacing:0.000000pt;}
._0_c00048{margin-left:-426.965333pt;}
._a_c00048{margin-left:-9.280000pt;}
._6_c00048{margin-left:-8.320000pt;}
._5_c00048{margin-left:-6.400000pt;}
._1_c00048{margin-left:-3.733333pt;}
._3_c00048{margin-left:-1.920000pt;}
._2_c00048{margin-left:-0.947200pt;}
._4_c00048{width:2.432000pt;}
._9_c00048{width:5.760000pt;}
._7_c00048{width:13.973333pt;}
._8_c00048{width:16.213333pt;}
.fs1_c00048{font-size:37.333333pt;}
.fs0_c00048{font-size:53.333333pt;}
.fs3_c00048{font-size:64.000000pt;}
.fs4_c00048{font-size:106.666667pt;}
.fs2_c00048{font-size:320.000000pt;}
.y0_c00048{bottom:0.000000pt;}
.y1_c00048{bottom:36.666667pt;}
.y11_c00048{bottom:283.782400pt;}
.y10_c00048{bottom:302.454400pt;}
.yf_c00048{bottom:321.126400pt;}
.ye_c00048{bottom:339.798400pt;}
.yd_c00048{bottom:358.470400pt;}
.yc_c00048{bottom:377.142400pt;}
.yb_c00048{bottom:395.814400pt;}
.ya_c00048{bottom:414.486400pt;}
.y9_c00048{bottom:454.486400pt;}
.y8_c00048{bottom:473.158400pt;}
.y7_c00048{bottom:491.830400pt;}
.y6_c00048{bottom:510.502400pt;}
.y5_c00048{bottom:529.174400pt;}
.y4_c00048{bottom:547.846400pt;}
.y3_c00048{bottom:588.198400pt;}
.y19_c00048{bottom:681.186400pt;}
.y18_c00048{bottom:707.853067pt;}
.y17_c00048{bottom:734.519733pt;}
.y16_c00048{bottom:761.186400pt;}
.y15_c00048{bottom:814.519733pt;}
.y14_c00048{bottom:841.186400pt;}
.y13_c00048{bottom:867.853067pt;}
.y12_c00048{bottom:894.519733pt;}
.y2_c00048{bottom:972.023733pt;}
.h2_c00048{height:48.000000pt;}
.h5_c00048{height:57.600000pt;}
.h4_c00048{height:59.072000pt;}
.h7_c00048{height:96.000000pt;}
.h6_c00048{height:99.733333pt;}
.h3_c00048{height:288.000000pt;}
.h0_c00048{height:1122.520000pt;}
.h1_c00048{height:1122.666667pt;}
.w0_c00048{width:793.701333pt;}
.w1_c00048{width:794.000000pt;}
.x0_c00048{left:0.000000pt;}
.x2_c00048{left:72.258000pt;}
.x3_c00048{left:73.238800pt;}
.x5_c00048{left:99.811067pt;}
.x4_c00048{left:113.238800pt;}
.x1_c00048{left:705.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.160000;font-style:normal;font-weight:normal;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_8044500461936b1776693626.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00049;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00049;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:1.161000;font-style: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);}
.m1_c00049{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls5_c00049{letter-spacing:-0.540000px;}
.ls4_c00049{letter-spacing:0.000000px;}
.ls0_c00049{letter-spacing:0.720000px;}
.ls1_c00049{letter-spacing:0.840000px;}
.ls3_c00049{letter-spacing:1.500000px;}
.ls2_c00049{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00049{word-spacing:-21.060000px;}
.ws2_c00049{word-spacing:-17.640000px;}
.ws0_c00049{word-spacing:-10.200000px;}
.ws10_c00049{word-spacing:-2.952000px;}
.ws11_c00049{word-spacing:-1.500000px;}
.ws4_c00049{word-spacing:-0.840000px;}
.wse_c00049{word-spacing:-0.720000px;}
.ws5_c00049{word-spacing:-0.648000px;}
.wsf_c00049{word-spacing:-0.504000px;}
.ws3_c00049{word-spacing:0.000000px;}
.ws7_c00049{word-spacing:1.296000px;}
.wsc_c00049{word-spacing:5.544000px;}
.wsb_c00049{word-spacing:7.416000px;}
.ws6_c00049{word-spacing:9.432000px;}
.ws8_c00049{word-spacing:9.864000px;}
.wsa_c00049{word-spacing:10.296000px;}
.wsd_c00049{word-spacing:10.944000px;}
.ws9_c00049{word-spacing:16.632000px;}
._0_c00049{margin-left:-480.336600px;}
._1_c00049{margin-left:-4.200000px;}
._2_c00049{margin-left:-2.160000px;}
._4_c00049{margin-left:-1.140000px;}
._3_c00049{width:2.952000px;}
.fc3_c00049{color:rgb(32,32,32);}
.fc2_c00049{color:rgb(233,83,14);}
.fc1_c00049{color:rgb(232,86,17);}
.fc4_c00049{color:rgb(157,157,156);}
.fc0_c00049{color:rgb(60,60,59);}
.fs1_c00049{font-size:42.000000px;}
.fs0_c00049{font-size:60.000000px;}
.fs5_c00049{font-size:66.000000px;}
.fs4_c00049{font-size:72.000000px;}
.fs3_c00049{font-size:84.000000px;}
.fs2_c00049{font-size:108.000000px;}
.y0_c00049{bottom:0.000000px;}
.y1_c00049{bottom:41.250000px;}
.y11_c00049{bottom:376.322700px;}
.y10_c00049{bottom:406.328700px;}
.yf_c00049{bottom:436.334700px;}
.ye_c00049{bottom:496.334700px;}
.yd_c00049{bottom:586.280700px;}
.yc_c00049{bottom:616.286700px;}
.yb_c00049{bottom:646.292700px;}
.ya_c00049{bottom:676.298700px;}
.y9_c00049{bottom:706.304700px;}
.y17_c00049{bottom:706.334700px;}
.y8_c00049{bottom:736.310700px;}
.y16_c00049{bottom:736.334700px;}
.y7_c00049{bottom:766.316700px;}
.y15_c00049{bottom:766.334700px;}
.y6_c00049{bottom:796.322700px;}
.y14_c00049{bottom:796.334700px;}
.y5_c00049{bottom:826.328700px;}
.y13_c00049{bottom:826.334700px;}
.y4_c00049{bottom:856.334700px;}
.y12_c00049{bottom:856.561950px;}
.y3_c00049{bottom:916.334700px;}
.y2_c00049{bottom:1006.334700px;}
.h6_c00049{height:50.292000px;}
.h2_c00049{height:54.000000px;}
.h5_c00049{height:64.800000px;}
.h4_c00049{height:78.540000px;}
.h3_c00049{height:100.980000px;}
.h0_c00049{height:1262.835000px;}
.h1_c00049{height:1263.000000px;}
.w0_c00049{width:892.914000px;}
.w1_c00049{width:893.250000px;}
.x0_c00049{left:0.000000px;}
.x2_c00049{left:82.500000px;}
.x3_c00049{left:90.000000px;}
.x4_c00049{left:106.500000px;}
.x5_c00049{left:675.611100px;}
.x1_c00049{left:794.303700px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls5_c00049{letter-spacing:-0.480000pt;}
.ls4_c00049{letter-spacing:0.000000pt;}
.ls0_c00049{letter-spacing:0.640000pt;}
.ls1_c00049{letter-spacing:0.746667pt;}
.ls3_c00049{letter-spacing:1.333333pt;}
.ls2_c00049{letter-spacing:1.466667pt;}
.ws1_c00049{word-spacing:-18.720000pt;}
.ws2_c00049{word-spacing:-15.680000pt;}
.ws0_c00049{word-spacing:-9.066667pt;}
.ws10_c00049{word-spacing:-2.624000pt;}
.ws11_c00049{word-spacing:-1.333333pt;}
.ws4_c00049{word-spacing:-0.746667pt;}
.wse_c00049{word-spacing:-0.640000pt;}
.ws5_c00049{word-spacing:-0.576000pt;}
.wsf_c00049{word-spacing:-0.448000pt;}
.ws3_c00049{word-spacing:0.000000pt;}
.ws7_c00049{word-spacing:1.152000pt;}
.wsc_c00049{word-spacing:4.928000pt;}
.wsb_c00049{word-spacing:6.592000pt;}
.ws6_c00049{word-spacing:8.384000pt;}
.ws8_c00049{word-spacing:8.768000pt;}
.wsa_c00049{word-spacing:9.152000pt;}
.wsd_c00049{word-spacing:9.728000pt;}
.ws9_c00049{word-spacing:14.784000pt;}
._0_c00049{margin-left:-426.965867pt;}
._1_c00049{margin-left:-3.733333pt;}
._2_c00049{margin-left:-1.920000pt;}
._4_c00049{margin-left:-1.013333pt;}
._3_c00049{width:2.624000pt;}
.fs1_c00049{font-size:37.333333pt;}
.fs0_c00049{font-size:53.333333pt;}
.fs5_c00049{font-size:58.666667pt;}
.fs4_c00049{font-size:64.000000pt;}
.fs3_c00049{font-size:74.666667pt;}
.fs2_c00049{font-size:96.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y1_c00049{bottom:36.666667pt;}
.y11_c00049{bottom:334.509067pt;}
.y10_c00049{bottom:361.181067pt;}
.yf_c00049{bottom:387.853067pt;}
.ye_c00049{bottom:441.186400pt;}
.yd_c00049{bottom:521.138400pt;}
.yc_c00049{bottom:547.810400pt;}
.yb_c00049{bottom:574.482400pt;}
.ya_c00049{bottom:601.154400pt;}
.y9_c00049{bottom:627.826400pt;}
.y17_c00049{bottom:627.853067pt;}
.y8_c00049{bottom:654.498400pt;}
.y16_c00049{bottom:654.519733pt;}
.y7_c00049{bottom:681.170400pt;}
.y15_c00049{bottom:681.186400pt;}
.y6_c00049{bottom:707.842400pt;}
.y14_c00049{bottom:707.853067pt;}
.y5_c00049{bottom:734.514400pt;}
.y13_c00049{bottom:734.519733pt;}
.y4_c00049{bottom:761.186400pt;}
.y12_c00049{bottom:761.388400pt;}
.y3_c00049{bottom:814.519733pt;}
.y2_c00049{bottom:894.519733pt;}
.h6_c00049{height:44.704000pt;}
.h2_c00049{height:48.000000pt;}
.h5_c00049{height:57.600000pt;}
.h4_c00049{height:69.813333pt;}
.h3_c00049{height:89.760000pt;}
.h0_c00049{height:1122.520000pt;}
.h1_c00049{height:1122.666667pt;}
.w0_c00049{width:793.701333pt;}
.w1_c00049{width:794.000000pt;}
.x0_c00049{left:0.000000pt;}
.x2_c00049{left:73.333333pt;}
.x3_c00049{left:80.000000pt;}
.x4_c00049{left:94.666667pt;}
.x5_c00049{left:600.543200pt;}
.x1_c00049{left:706.047733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_a68ad7a870d15bf4aca4d2a2.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.199000;font-style: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);}
.m1_c00050{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls2_c00050{letter-spacing:0.000000px;}
.ls0_c00050{letter-spacing:0.720000px;}
.ls1_c00050{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws16_c00050{word-spacing:-10.152000px;}
.ws10_c00050{word-spacing:-5.256000px;}
.wsf_c00050{word-spacing:-1.800000px;}
.wsc_c00050{word-spacing:-1.656000px;}
.ws2_c00050{word-spacing:-0.840000px;}
.ws1_c00050{word-spacing:0.000000px;}
.ws6_c00050{word-spacing:0.792000px;}
.ws4_c00050{word-spacing:0.936000px;}
.ws3_c00050{word-spacing:2.304000px;}
.ws11_c00050{word-spacing:2.592000px;}
.wsd_c00050{word-spacing:3.024000px;}
.wsa_c00050{word-spacing:3.240000px;}
.ws5_c00050{word-spacing:4.104000px;}
.ws9_c00050{word-spacing:4.176000px;}
.ws13_c00050{word-spacing:5.472000px;}
.wse_c00050{word-spacing:6.768000px;}
.ws7_c00050{word-spacing:7.272000px;}
.ws12_c00050{word-spacing:7.488000px;}
.wsb_c00050{word-spacing:7.920000px;}
.ws14_c00050{word-spacing:8.784000px;}
.ws8_c00050{word-spacing:16.920000px;}
.ws15_c00050{word-spacing:17.424000px;}
._0_c00050{margin-left:-480.336600px;}
._6_c00050{margin-left:-5.426400px;}
._1_c00050{margin-left:-4.200000px;}
._2_c00050{margin-left:-2.160000px;}
._5_c00050{margin-left:-1.036800px;}
._3_c00050{width:1.267200px;}
._4_c00050{width:3.297600px;}
._7_c00050{width:5.256000px;}
.fc2_c00050{color:rgb(32,32,32);}
.fc1_c00050{color:rgb(232,86,17);}
.fc0_c00050{color:rgb(60,60,59);}
.fs1_c00050{font-size:42.000000px;}
.fs0_c00050{font-size:60.000000px;}
.fs3_c00050{font-size:72.000000px;}
.fs2_c00050{font-size:84.000000px;}
.y0_c00050{bottom:0.000000px;}
.y1_c00050{bottom:41.250000px;}
.y19_c00050{bottom:106.304700px;}
.y18_c00050{bottom:136.310700px;}
.y17_c00050{bottom:166.316700px;}
.y16_c00050{bottom:196.322700px;}
.y15_c00050{bottom:226.328700px;}
.y14_c00050{bottom:256.334700px;}
.y13_c00050{bottom:316.334700px;}
.y12_c00050{bottom:406.298700px;}
.y11_c00050{bottom:436.304700px;}
.y10_c00050{bottom:466.310700px;}
.yf_c00050{bottom:496.316700px;}
.ye_c00050{bottom:526.322700px;}
.yd_c00050{bottom:556.328700px;}
.yc_c00050{bottom:586.334700px;}
.yb_c00050{bottom:646.334700px;}
.ya_c00050{bottom:736.292700px;}
.y9_c00050{bottom:766.298700px;}
.y8_c00050{bottom:796.304700px;}
.y7_c00050{bottom:826.310700px;}
.y6_c00050{bottom:856.316700px;}
.y5_c00050{bottom:886.322700px;}
.y4_c00050{bottom:916.328700px;}
.y3_c00050{bottom:946.334700px;}
.y2_c00050{bottom:1006.334700px;}
.h2_c00050{height:54.000000px;}
.h4_c00050{height:64.800000px;}
.h3_c00050{height:78.540000px;}
.h0_c00050{height:1262.835000px;}
.h1_c00050{height:1263.000000px;}
.w0_c00050{width:892.914000px;}
.w1_c00050{width:893.250000px;}
.x0_c00050{left:0.000000px;}
.x2_c00050{left:90.000000px;}
.x3_c00050{left:106.500000px;}
.x1_c00050{left:797.963700px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls2_c00050{letter-spacing:0.000000pt;}
.ls0_c00050{letter-spacing:0.640000pt;}
.ls1_c00050{letter-spacing:0.746667pt;}
.ws0_c00050{word-spacing:-9.066667pt;}
.ws16_c00050{word-spacing:-9.024000pt;}
.ws10_c00050{word-spacing:-4.672000pt;}
.wsf_c00050{word-spacing:-1.600000pt;}
.wsc_c00050{word-spacing:-1.472000pt;}
.ws2_c00050{word-spacing:-0.746667pt;}
.ws1_c00050{word-spacing:0.000000pt;}
.ws6_c00050{word-spacing:0.704000pt;}
.ws4_c00050{word-spacing:0.832000pt;}
.ws3_c00050{word-spacing:2.048000pt;}
.ws11_c00050{word-spacing:2.304000pt;}
.wsd_c00050{word-spacing:2.688000pt;}
.wsa_c00050{word-spacing:2.880000pt;}
.ws5_c00050{word-spacing:3.648000pt;}
.ws9_c00050{word-spacing:3.712000pt;}
.ws13_c00050{word-spacing:4.864000pt;}
.wse_c00050{word-spacing:6.016000pt;}
.ws7_c00050{word-spacing:6.464000pt;}
.ws12_c00050{word-spacing:6.656000pt;}
.wsb_c00050{word-spacing:7.040000pt;}
.ws14_c00050{word-spacing:7.808000pt;}
.ws8_c00050{word-spacing:15.040000pt;}
.ws15_c00050{word-spacing:15.488000pt;}
._0_c00050{margin-left:-426.965867pt;}
._6_c00050{margin-left:-4.823467pt;}
._1_c00050{margin-left:-3.733333pt;}
._2_c00050{margin-left:-1.920000pt;}
._5_c00050{margin-left:-0.921600pt;}
._3_c00050{width:1.126400pt;}
._4_c00050{width:2.931200pt;}
._7_c00050{width:4.672000pt;}
.fs1_c00050{font-size:37.333333pt;}
.fs0_c00050{font-size:53.333333pt;}
.fs3_c00050{font-size:64.000000pt;}
.fs2_c00050{font-size:74.666667pt;}
.y0_c00050{bottom:0.000000pt;}
.y1_c00050{bottom:36.666667pt;}
.y19_c00050{bottom:94.493067pt;}
.y18_c00050{bottom:121.165067pt;}
.y17_c00050{bottom:147.837067pt;}
.y16_c00050{bottom:174.509067pt;}
.y15_c00050{bottom:201.181067pt;}
.y14_c00050{bottom:227.853067pt;}
.y13_c00050{bottom:281.186400pt;}
.y12_c00050{bottom:361.154400pt;}
.y11_c00050{bottom:387.826400pt;}
.y10_c00050{bottom:414.498400pt;}
.yf_c00050{bottom:441.170400pt;}
.ye_c00050{bottom:467.842400pt;}
.yd_c00050{bottom:494.514400pt;}
.yc_c00050{bottom:521.186400pt;}
.yb_c00050{bottom:574.519733pt;}
.ya_c00050{bottom:654.482400pt;}
.y9_c00050{bottom:681.154400pt;}
.y8_c00050{bottom:707.826400pt;}
.y7_c00050{bottom:734.498400pt;}
.y6_c00050{bottom:761.170400pt;}
.y5_c00050{bottom:787.842400pt;}
.y4_c00050{bottom:814.514400pt;}
.y3_c00050{bottom:841.186400pt;}
.y2_c00050{bottom:894.519733pt;}
.h2_c00050{height:48.000000pt;}
.h4_c00050{height:57.600000pt;}
.h3_c00050{height:69.813333pt;}
.h0_c00050{height:1122.520000pt;}
.h1_c00050{height:1122.666667pt;}
.w0_c00050{width:793.701333pt;}
.w1_c00050{width:794.000000pt;}
.x0_c00050{left:0.000000pt;}
.x2_c00050{left:80.000000pt;}
.x3_c00050{left:94.666667pt;}
.x1_c00050{left:709.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d3858bf47fa96fd79ea398f.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00051;src:url('chunks/assets/font_e04a0991b070062a3f74fe43.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00051;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls5_c00051{letter-spacing:-0.324000px;}
.ls4_c00051{letter-spacing:0.000000px;}
.ls0_c00051{letter-spacing:0.720000px;}
.ls1_c00051{letter-spacing:0.840000px;}
.ls3_c00051{letter-spacing:1.500000px;}
.ls2_c00051{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00051{word-spacing:-21.276000px;}
.ws2_c00051{word-spacing:-17.640000px;}
.ws3_c00051{word-spacing:-14.850000px;}
.ws0_c00051{word-spacing:-10.200000px;}
.wsb_c00051{word-spacing:-3.816000px;}
.wsd_c00051{word-spacing:-3.312000px;}
.ws8_c00051{word-spacing:-1.512000px;}
.ws15_c00051{word-spacing:-1.500000px;}
.ws5_c00051{word-spacing:-0.840000px;}
.ws4_c00051{word-spacing:0.000000px;}
.ws12_c00051{word-spacing:1.296000px;}
.ws14_c00051{word-spacing:1.728000px;}
.ws10_c00051{word-spacing:3.240000px;}
.wsc_c00051{word-spacing:4.248000px;}
.ws9_c00051{word-spacing:4.752000px;}
.ws13_c00051{word-spacing:5.040000px;}
.wse_c00051{word-spacing:6.336000px;}
.wsf_c00051{word-spacing:6.408000px;}
.ws7_c00051{word-spacing:7.704000px;}
.ws6_c00051{word-spacing:9.936000px;}
.wsa_c00051{word-spacing:10.080000px;}
.ws11_c00051{word-spacing:13.824000px;}
._0_c00051{margin-left:-480.336000px;}
._5_c00051{margin-left:-10.072800px;}
._4_c00051{margin-left:-5.760000px;}
._1_c00051{margin-left:-4.200000px;}
._3_c00051{margin-left:-2.772000px;}
._2_c00051{margin-left:-1.134000px;}
._6_c00051{width:1.206000px;}
._8_c00051{width:3.279600px;}
._7_c00051{width:4.312800px;}
.fc3_c00051{color:rgb(32,32,32);}
.fc2_c00051{color:rgb(233,83,14);}
.fc1_c00051{color:rgb(232,86,17);}
.fc4_c00051{color:rgb(157,157,156);}
.fc0_c00051{color:rgb(60,60,59);}
.fs1_c00051{font-size:42.000000px;}
.fs0_c00051{font-size:60.000000px;}
.fs5_c00051{font-size:66.000000px;}
.fs4_c00051{font-size:72.000000px;}
.fs3_c00051{font-size:84.000000px;}
.fs2_c00051{font-size:108.000000px;}
.y0_c00051{bottom:0.000000px;}
.y1_c00051{bottom:41.250000px;}
.y17_c00051{bottom:106.298700px;}
.y16_c00051{bottom:136.304700px;}
.y15_c00051{bottom:166.310700px;}
.y14_c00051{bottom:196.316700px;}
.y13_c00051{bottom:226.322700px;}
.y12_c00051{bottom:256.328700px;}
.y11_c00051{bottom:286.334700px;}
.y10_c00051{bottom:346.334700px;}
.yf_c00051{bottom:436.322700px;}
.ye_c00051{bottom:466.328700px;}
.yd_c00051{bottom:496.334700px;}
.yc_c00051{bottom:556.334700px;}
.yb_c00051{bottom:646.292700px;}
.ya_c00051{bottom:676.298700px;}
.y9_c00051{bottom:706.304700px;}
.y8_c00051{bottom:736.310700px;}
.y1c_c00051{bottom:736.334700px;}
.y7_c00051{bottom:766.316700px;}
.y1b_c00051{bottom:766.334700px;}
.y6_c00051{bottom:796.322700px;}
.y1a_c00051{bottom:796.334700px;}
.y5_c00051{bottom:826.328700px;}
.y19_c00051{bottom:826.334700px;}
.y4_c00051{bottom:856.334700px;}
.y18_c00051{bottom:856.561950px;}
.y3_c00051{bottom:916.334700px;}
.y2_c00051{bottom:1006.334700px;}
.h6_c00051{height:50.292000px;}
.h2_c00051{height:54.000000px;}
.h5_c00051{height:64.800000px;}
.h4_c00051{height:78.540000px;}
.h3_c00051{height:100.980000px;}
.h0_c00051{height:1262.835000px;}
.h1_c00051{height:1263.000000px;}
.w0_c00051{width:892.914000px;}
.w1_c00051{width:893.250000px;}
.x0_c00051{left:0.000000px;}
.x2_c00051{left:82.500000px;}
.x3_c00051{left:90.000000px;}
.x4_c00051{left:106.500000px;}
.x5_c00051{left:675.611100px;}
.x1_c00051{left:795.488550px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls5_c00051{letter-spacing:-0.288000pt;}
.ls4_c00051{letter-spacing:0.000000pt;}
.ls0_c00051{letter-spacing:0.640000pt;}
.ls1_c00051{letter-spacing:0.746667pt;}
.ls3_c00051{letter-spacing:1.333333pt;}
.ls2_c00051{letter-spacing:1.466667pt;}
.ws1_c00051{word-spacing:-18.912000pt;}
.ws2_c00051{word-spacing:-15.680000pt;}
.ws3_c00051{word-spacing:-13.200000pt;}
.ws0_c00051{word-spacing:-9.066667pt;}
.wsb_c00051{word-spacing:-3.392000pt;}
.wsd_c00051{word-spacing:-2.944000pt;}
.ws8_c00051{word-spacing:-1.344000pt;}
.ws15_c00051{word-spacing:-1.333333pt;}
.ws5_c00051{word-spacing:-0.746667pt;}
.ws4_c00051{word-spacing:0.000000pt;}
.ws12_c00051{word-spacing:1.152000pt;}
.ws14_c00051{word-spacing:1.536000pt;}
.ws10_c00051{word-spacing:2.880000pt;}
.wsc_c00051{word-spacing:3.776000pt;}
.ws9_c00051{word-spacing:4.224000pt;}
.ws13_c00051{word-spacing:4.480000pt;}
.wse_c00051{word-spacing:5.632000pt;}
.wsf_c00051{word-spacing:5.696000pt;}
.ws7_c00051{word-spacing:6.848000pt;}
.ws6_c00051{word-spacing:8.832000pt;}
.wsa_c00051{word-spacing:8.960000pt;}
.ws11_c00051{word-spacing:12.288000pt;}
._0_c00051{margin-left:-426.965333pt;}
._5_c00051{margin-left:-8.953600pt;}
._4_c00051{margin-left:-5.120000pt;}
._1_c00051{margin-left:-3.733333pt;}
._3_c00051{margin-left:-2.464000pt;}
._2_c00051{margin-left:-1.008000pt;}
._6_c00051{width:1.072000pt;}
._8_c00051{width:2.915200pt;}
._7_c00051{width:3.833600pt;}
.fs1_c00051{font-size:37.333333pt;}
.fs0_c00051{font-size:53.333333pt;}
.fs5_c00051{font-size:58.666667pt;}
.fs4_c00051{font-size:64.000000pt;}
.fs3_c00051{font-size:74.666667pt;}
.fs2_c00051{font-size:96.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y1_c00051{bottom:36.666667pt;}
.y17_c00051{bottom:94.487733pt;}
.y16_c00051{bottom:121.159733pt;}
.y15_c00051{bottom:147.831733pt;}
.y14_c00051{bottom:174.503733pt;}
.y13_c00051{bottom:201.175733pt;}
.y12_c00051{bottom:227.847733pt;}
.y11_c00051{bottom:254.519733pt;}
.y10_c00051{bottom:307.853067pt;}
.yf_c00051{bottom:387.842400pt;}
.ye_c00051{bottom:414.514400pt;}
.yd_c00051{bottom:441.186400pt;}
.yc_c00051{bottom:494.519733pt;}
.yb_c00051{bottom:574.482400pt;}
.ya_c00051{bottom:601.154400pt;}
.y9_c00051{bottom:627.826400pt;}
.y8_c00051{bottom:654.498400pt;}
.y1c_c00051{bottom:654.519733pt;}
.y7_c00051{bottom:681.170400pt;}
.y1b_c00051{bottom:681.186400pt;}
.y6_c00051{bottom:707.842400pt;}
.y1a_c00051{bottom:707.853067pt;}
.y5_c00051{bottom:734.514400pt;}
.y19_c00051{bottom:734.519733pt;}
.y4_c00051{bottom:761.186400pt;}
.y18_c00051{bottom:761.388400pt;}
.y3_c00051{bottom:814.519733pt;}
.y2_c00051{bottom:894.519733pt;}
.h6_c00051{height:44.704000pt;}
.h2_c00051{height:48.000000pt;}
.h5_c00051{height:57.600000pt;}
.h4_c00051{height:69.813333pt;}
.h3_c00051{height:89.760000pt;}
.h0_c00051{height:1122.520000pt;}
.h1_c00051{height:1122.666667pt;}
.w0_c00051{width:793.701333pt;}
.w1_c00051{width:794.000000pt;}
.x0_c00051{left:0.000000pt;}
.x2_c00051{left:73.333333pt;}
.x3_c00051{left:80.000000pt;}
.x4_c00051{left:94.666667pt;}
.x5_c00051{left:600.543200pt;}
.x1_c00051{left:707.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09baf8cd2945c6e6d5da27e7.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.199000;font-style: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);}
.m1_c00052{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls1_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:0.720000px;}
.ls2_c00052{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws4_c00052{word-spacing:-2.160000px;}
.ws3_c00052{word-spacing:-2.016000px;}
.wsb_c00052{word-spacing:-1.656000px;}
.ws2_c00052{word-spacing:-0.840000px;}
.ws7_c00052{word-spacing:-0.648000px;}
.ws1_c00052{word-spacing:0.000000px;}
.ws8_c00052{word-spacing:1.512000px;}
.wsa_c00052{word-spacing:4.104000px;}
.ws9_c00052{word-spacing:6.120000px;}
.ws6_c00052{word-spacing:10.440000px;}
.ws5_c00052{word-spacing:12.744000px;}
._0_c00052{margin-left:-480.336000px;}
._4_c00052{margin-left:-9.367200px;}
._1_c00052{margin-left:-4.200000px;}
._3_c00052{margin-left:-2.880000px;}
._2_c00052{margin-left:-1.440000px;}
._5_c00052{width:1.216800px;}
.fc2_c00052{color:rgb(32,32,32);}
.fc1_c00052{color:rgb(232,86,17);}
.fc0_c00052{color:rgb(60,60,59);}
.fs1_c00052{font-size:42.000000px;}
.fs0_c00052{font-size:60.000000px;}
.fs3_c00052{font-size:72.000000px;}
.fs2_c00052{font-size:84.000000px;}
.y0_c00052{bottom:0.000000px;}
.y1_c00052{bottom:41.250000px;}
.yd_c00052{bottom:556.310700px;}
.yc_c00052{bottom:586.316700px;}
.yb_c00052{bottom:616.322700px;}
.ya_c00052{bottom:646.328700px;}
.y9_c00052{bottom:676.334700px;}
.y8_c00052{bottom:736.334700px;}
.y7_c00052{bottom:826.310700px;}
.y6_c00052{bottom:856.316700px;}
.y5_c00052{bottom:886.322700px;}
.y4_c00052{bottom:916.328700px;}
.y3_c00052{bottom:946.334700px;}
.y2_c00052{bottom:1006.334700px;}
.h2_c00052{height:54.000000px;}
.h4_c00052{height:64.800000px;}
.h3_c00052{height:78.540000px;}
.h0_c00052{height:1262.835000px;}
.h1_c00052{height:1263.000000px;}
.w0_c00052{width:892.914000px;}
.w1_c00052{width:893.250000px;}
.x0_c00052{left:0.000000px;}
.x2_c00052{left:90.000000px;}
.x3_c00052{left:106.500000px;}
.x1_c00052{left:795.338550px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls1_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:0.640000pt;}
.ls2_c00052{letter-spacing:0.746667pt;}
.ws0_c00052{word-spacing:-9.066667pt;}
.ws4_c00052{word-spacing:-1.920000pt;}
.ws3_c00052{word-spacing:-1.792000pt;}
.wsb_c00052{word-spacing:-1.472000pt;}
.ws2_c00052{word-spacing:-0.746667pt;}
.ws7_c00052{word-spacing:-0.576000pt;}
.ws1_c00052{word-spacing:0.000000pt;}
.ws8_c00052{word-spacing:1.344000pt;}
.wsa_c00052{word-spacing:3.648000pt;}
.ws9_c00052{word-spacing:5.440000pt;}
.ws6_c00052{word-spacing:9.280000pt;}
.ws5_c00052{word-spacing:11.328000pt;}
._0_c00052{margin-left:-426.965333pt;}
._4_c00052{margin-left:-8.326400pt;}
._1_c00052{margin-left:-3.733333pt;}
._3_c00052{margin-left:-2.560000pt;}
._2_c00052{margin-left:-1.280000pt;}
._5_c00052{width:1.081600pt;}
.fs1_c00052{font-size:37.333333pt;}
.fs0_c00052{font-size:53.333333pt;}
.fs3_c00052{font-size:64.000000pt;}
.fs2_c00052{font-size:74.666667pt;}
.y0_c00052{bottom:0.000000pt;}
.y1_c00052{bottom:36.666667pt;}
.yd_c00052{bottom:494.498400pt;}
.yc_c00052{bottom:521.170400pt;}
.yb_c00052{bottom:547.842400pt;}
.ya_c00052{bottom:574.514400pt;}
.y9_c00052{bottom:601.186400pt;}
.y8_c00052{bottom:654.519733pt;}
.y7_c00052{bottom:734.498400pt;}
.y6_c00052{bottom:761.170400pt;}
.y5_c00052{bottom:787.842400pt;}
.y4_c00052{bottom:814.514400pt;}
.y3_c00052{bottom:841.186400pt;}
.y2_c00052{bottom:894.519733pt;}
.h2_c00052{height:48.000000pt;}
.h4_c00052{height:57.600000pt;}
.h3_c00052{height:69.813333pt;}
.h0_c00052{height:1122.520000pt;}
.h1_c00052{height:1122.666667pt;}
.w0_c00052{width:793.701333pt;}
.w1_c00052{width:794.000000pt;}
.x0_c00052{left:0.000000pt;}
.x2_c00052{left:80.000000pt;}
.x3_c00052{left:94.666667pt;}
.x1_c00052{left:706.967600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_d219d4c1976e9292b4fdff88.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00053;src:url('chunks/assets/font_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00053;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00053;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00053{font-family:ff5_c00053;line-height:1.155000;font-style: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);}
.m1_c00053{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls2_c00053{letter-spacing:0.000000px;}
.ls0_c00053{letter-spacing:0.864000px;}
.ls1_c00053{letter-spacing:1.200000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00053{word-spacing:-13.104000px;}
.ws0_c00053{word-spacing:-10.200000px;}
.ws4_c00053{word-spacing:-9.240000px;}
.ws3_c00053{word-spacing:-1.440000px;}
.ws2_c00053{word-spacing:0.000000px;}
._0_c00053{margin-left:-480.336000px;}
._8_c00053{margin-left:-16.680000px;}
._7_c00053{margin-left:-11.400000px;}
._6_c00053{margin-left:-9.000000px;}
._3_c00053{margin-left:-6.480000px;}
._1_c00053{margin-left:-4.200000px;}
._2_c00053{margin-left:-1.440000px;}
._4_c00053{width:1.440000px;}
._5_c00053{width:10.800000px;}
.fc3_c00053{color:rgb(255,255,255);}
.fc2_c00053{color:rgb(233,83,14);}
.fc1_c00053{color:rgb(232,86,17);}
.fc0_c00053{color:rgb(60,60,59);}
.fs1_c00053{font-size:42.000000px;}
.fs0_c00053{font-size:60.000000px;}
.fs3_c00053{font-size:72.000000px;}
.fs4_c00053{font-size:120.000000px;}
.fs2_c00053{font-size:360.000000px;}
.y0_c00053{bottom:0.000000px;}
.y1_c00053{bottom:41.250000px;}
.yb_c00053{bottom:514.298700px;}
.ya_c00053{bottom:535.304700px;}
.y9_c00053{bottom:556.310700px;}
.y8_c00053{bottom:622.316700px;}
.y7_c00053{bottom:643.322700px;}
.y6_c00053{bottom:664.328700px;}
.y5_c00053{bottom:685.334700px;}
.y4_c00053{bottom:706.340700px;}
.y3_c00053{bottom:752.834700px;}
.y10_c00053{bottom:886.334700px;}
.yf_c00053{bottom:916.334700px;}
.ye_c00053{bottom:946.334700px;}
.yd_c00053{bottom:976.334700px;}
.yc_c00053{bottom:1006.334700px;}
.y2_c00053{bottom:1093.526700px;}
.h2_c00053{height:54.000000px;}
.h5_c00053{height:64.800000px;}
.h4_c00053{height:66.456000px;}
.h6_c00053{height:112.200000px;}
.h3_c00053{height:324.000000px;}
.h0_c00053{height:1262.835000px;}
.h1_c00053{height:1263.000000px;}
.w0_c00053{width:892.914000px;}
.w1_c00053{width:893.250000px;}
.x0_c00053{left:0.000000px;}
.x2_c00053{left:81.290250px;}
.x3_c00053{left:82.393650px;}
.x5_c00053{left:112.287450px;}
.x4_c00053{left:127.393650px;}
.x1_c00053{left:794.363550px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls2_c00053{letter-spacing:0.000000pt;}
.ls0_c00053{letter-spacing:0.768000pt;}
.ls1_c00053{letter-spacing:1.066667pt;}
.ws1_c00053{word-spacing:-11.648000pt;}
.ws0_c00053{word-spacing:-9.066667pt;}
.ws4_c00053{word-spacing:-8.213333pt;}
.ws3_c00053{word-spacing:-1.280000pt;}
.ws2_c00053{word-spacing:0.000000pt;}
._0_c00053{margin-left:-426.965333pt;}
._8_c00053{margin-left:-14.826667pt;}
._7_c00053{margin-left:-10.133333pt;}
._6_c00053{margin-left:-8.000000pt;}
._3_c00053{margin-left:-5.760000pt;}
._1_c00053{margin-left:-3.733333pt;}
._2_c00053{margin-left:-1.280000pt;}
._4_c00053{width:1.280000pt;}
._5_c00053{width:9.600000pt;}
.fs1_c00053{font-size:37.333333pt;}
.fs0_c00053{font-size:53.333333pt;}
.fs3_c00053{font-size:64.000000pt;}
.fs4_c00053{font-size:106.666667pt;}
.fs2_c00053{font-size:320.000000pt;}
.y0_c00053{bottom:0.000000pt;}
.y1_c00053{bottom:36.666667pt;}
.yb_c00053{bottom:457.154400pt;}
.ya_c00053{bottom:475.826400pt;}
.y9_c00053{bottom:494.498400pt;}
.y8_c00053{bottom:553.170400pt;}
.y7_c00053{bottom:571.842400pt;}
.y6_c00053{bottom:590.514400pt;}
.y5_c00053{bottom:609.186400pt;}
.y4_c00053{bottom:627.858400pt;}
.y3_c00053{bottom:669.186400pt;}
.y10_c00053{bottom:787.853067pt;}
.yf_c00053{bottom:814.519733pt;}
.ye_c00053{bottom:841.186400pt;}
.yd_c00053{bottom:867.853067pt;}
.yc_c00053{bottom:894.519733pt;}
.y2_c00053{bottom:972.023733pt;}
.h2_c00053{height:48.000000pt;}
.h5_c00053{height:57.600000pt;}
.h4_c00053{height:59.072000pt;}
.h6_c00053{height:99.733333pt;}
.h3_c00053{height:288.000000pt;}
.h0_c00053{height:1122.520000pt;}
.h1_c00053{height:1122.666667pt;}
.w0_c00053{width:793.701333pt;}
.w1_c00053{width:794.000000pt;}
.x0_c00053{left:0.000000pt;}
.x2_c00053{left:72.258000pt;}
.x3_c00053{left:73.238800pt;}
.x5_c00053{left:99.811067pt;}
.x4_c00053{left:113.238800pt;}
.x1_c00053{left:706.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_8044500461936b1776693626.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00054;src:url('chunks/assets/font_c9b8fdba265e8fff572ae7ce.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00054;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.024000;font-style: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);}
.m1_c00054{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls6_c00054{letter-spacing:-7.920000px;}
.ls5_c00054{letter-spacing:-0.540000px;}
.ls4_c00054{letter-spacing:0.000000px;}
.ls0_c00054{letter-spacing:0.720000px;}
.ls1_c00054{letter-spacing:0.840000px;}
.ls3_c00054{letter-spacing:1.500000px;}
.ls2_c00054{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00054{word-spacing:-21.060000px;}
.ws2_c00054{word-spacing:-17.640000px;}
.ws0_c00054{word-spacing:-10.200000px;}
.ws12_c00054{word-spacing:-4.608000px;}
.wsc_c00054{word-spacing:-2.088000px;}
.ws19_c00054{word-spacing:-1.800000px;}
.ws18_c00054{word-spacing:-1.500000px;}
.wse_c00054{word-spacing:-1.224000px;}
.ws4_c00054{word-spacing:-0.840000px;}
.ws16_c00054{word-spacing:-0.720000px;}
.ws3_c00054{word-spacing:0.000000px;}
.ws10_c00054{word-spacing:0.504000px;}
.ws14_c00054{word-spacing:1.080000px;}
.ws17_c00054{word-spacing:1.656000px;}
.ws13_c00054{word-spacing:2.016000px;}
.wsb_c00054{word-spacing:2.160000px;}
.wsa_c00054{word-spacing:2.520000px;}
.ws8_c00054{word-spacing:7.200000px;}
.ws15_c00054{word-spacing:7.920000px;}
.ws9_c00054{word-spacing:8.208000px;}
.ws7_c00054{word-spacing:9.792000px;}
.ws11_c00054{word-spacing:11.016000px;}
.wsd_c00054{word-spacing:11.520000px;}
.wsf_c00054{word-spacing:11.880000px;}
.ws6_c00054{word-spacing:16.056000px;}
.ws5_c00054{word-spacing:23.328000px;}
._0_c00054{margin-left:-480.335400px;}
._5_c00054{margin-left:-10.512000px;}
._8_c00054{margin-left:-8.647200px;}
._9_c00054{margin-left:-5.400000px;}
._1_c00054{margin-left:-4.200000px;}
._3_c00054{margin-left:-2.656800px;}
._2_c00054{margin-left:-1.432800px;}
._4_c00054{width:1.612800px;}
._7_c00054{width:2.851200px;}
._6_c00054{width:9.583200px;}
.fc3_c00054{color:rgb(32,32,32);}
.fc2_c00054{color:rgb(233,83,14);}
.fc1_c00054{color:rgb(232,86,17);}
.fc4_c00054{color:rgb(157,157,156);}
.fc0_c00054{color:rgb(60,60,59);}
.fs1_c00054{font-size:42.000000px;}
.fs0_c00054{font-size:60.000000px;}
.fs5_c00054{font-size:66.000000px;}
.fs4_c00054{font-size:72.000000px;}
.fs3_c00054{font-size:84.000000px;}
.fs2_c00054{font-size:108.000000px;}
.y0_c00054{bottom:0.000000px;}
.y1_c00054{bottom:41.250000px;}
.y18_c00054{bottom:76.310700px;}
.y17_c00054{bottom:106.316700px;}
.y16_c00054{bottom:136.322700px;}
.y15_c00054{bottom:166.328700px;}
.y14_c00054{bottom:196.334700px;}
.y13_c00054{bottom:256.334700px;}
.y12_c00054{bottom:346.310700px;}
.y11_c00054{bottom:376.316700px;}
.y10_c00054{bottom:406.322700px;}
.yf_c00054{bottom:436.328700px;}
.ye_c00054{bottom:466.334700px;}
.yd_c00054{bottom:526.334700px;}
.yc_c00054{bottom:616.286700px;}
.yb_c00054{bottom:646.292700px;}
.ya_c00054{bottom:676.298700px;}
.y9_c00054{bottom:706.304700px;}
.y8_c00054{bottom:736.310700px;}
.y1d_c00054{bottom:736.334700px;}
.y7_c00054{bottom:766.316700px;}
.y1c_c00054{bottom:766.334700px;}
.y6_c00054{bottom:796.322700px;}
.y1b_c00054{bottom:796.334700px;}
.y5_c00054{bottom:826.328700px;}
.y1a_c00054{bottom:826.334700px;}
.y4_c00054{bottom:856.334700px;}
.y19_c00054{bottom:856.561950px;}
.y3_c00054{bottom:916.334700px;}
.y2_c00054{bottom:1006.334700px;}
.h6_c00054{height:50.292000px;}
.h2_c00054{height:54.000000px;}
.h5_c00054{height:64.800000px;}
.h4_c00054{height:78.540000px;}
.h3_c00054{height:100.980000px;}
.h0_c00054{height:1262.835000px;}
.h1_c00054{height:1263.000000px;}
.w0_c00054{width:892.914000px;}
.w1_c00054{width:893.250000px;}
.x0_c00054{left:0.000000px;}
.x2_c00054{left:82.500000px;}
.x3_c00054{left:90.000000px;}
.x4_c00054{left:106.500000px;}
.x5_c00054{left:675.611100px;}
.x1_c00054{left:795.413400px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls6_c00054{letter-spacing:-7.040000pt;}
.ls5_c00054{letter-spacing:-0.480000pt;}
.ls4_c00054{letter-spacing:0.000000pt;}
.ls0_c00054{letter-spacing:0.640000pt;}
.ls1_c00054{letter-spacing:0.746667pt;}
.ls3_c00054{letter-spacing:1.333333pt;}
.ls2_c00054{letter-spacing:1.466667pt;}
.ws1_c00054{word-spacing:-18.720000pt;}
.ws2_c00054{word-spacing:-15.680000pt;}
.ws0_c00054{word-spacing:-9.066667pt;}
.ws12_c00054{word-spacing:-4.096000pt;}
.wsc_c00054{word-spacing:-1.856000pt;}
.ws19_c00054{word-spacing:-1.600000pt;}
.ws18_c00054{word-spacing:-1.333333pt;}
.wse_c00054{word-spacing:-1.088000pt;}
.ws4_c00054{word-spacing:-0.746667pt;}
.ws16_c00054{word-spacing:-0.640000pt;}
.ws3_c00054{word-spacing:0.000000pt;}
.ws10_c00054{word-spacing:0.448000pt;}
.ws14_c00054{word-spacing:0.960000pt;}
.ws17_c00054{word-spacing:1.472000pt;}
.ws13_c00054{word-spacing:1.792000pt;}
.wsb_c00054{word-spacing:1.920000pt;}
.wsa_c00054{word-spacing:2.240000pt;}
.ws8_c00054{word-spacing:6.400000pt;}
.ws15_c00054{word-spacing:7.040000pt;}
.ws9_c00054{word-spacing:7.296000pt;}
.ws7_c00054{word-spacing:8.704000pt;}
.ws11_c00054{word-spacing:9.792000pt;}
.wsd_c00054{word-spacing:10.240000pt;}
.wsf_c00054{word-spacing:10.560000pt;}
.ws6_c00054{word-spacing:14.272000pt;}
.ws5_c00054{word-spacing:20.736000pt;}
._0_c00054{margin-left:-426.964800pt;}
._5_c00054{margin-left:-9.344000pt;}
._8_c00054{margin-left:-7.686400pt;}
._9_c00054{margin-left:-4.800000pt;}
._1_c00054{margin-left:-3.733333pt;}
._3_c00054{margin-left:-2.361600pt;}
._2_c00054{margin-left:-1.273600pt;}
._4_c00054{width:1.433600pt;}
._7_c00054{width:2.534400pt;}
._6_c00054{width:8.518400pt;}
.fs1_c00054{font-size:37.333333pt;}
.fs0_c00054{font-size:53.333333pt;}
.fs5_c00054{font-size:58.666667pt;}
.fs4_c00054{font-size:64.000000pt;}
.fs3_c00054{font-size:74.666667pt;}
.fs2_c00054{font-size:96.000000pt;}
.y0_c00054{bottom:0.000000pt;}
.y1_c00054{bottom:36.666667pt;}
.y18_c00054{bottom:67.831733pt;}
.y17_c00054{bottom:94.503733pt;}
.y16_c00054{bottom:121.175733pt;}
.y15_c00054{bottom:147.847733pt;}
.y14_c00054{bottom:174.519733pt;}
.y13_c00054{bottom:227.853067pt;}
.y12_c00054{bottom:307.831733pt;}
.y11_c00054{bottom:334.503733pt;}
.y10_c00054{bottom:361.175733pt;}
.yf_c00054{bottom:387.847733pt;}
.ye_c00054{bottom:414.519733pt;}
.yd_c00054{bottom:467.853067pt;}
.yc_c00054{bottom:547.810400pt;}
.yb_c00054{bottom:574.482400pt;}
.ya_c00054{bottom:601.154400pt;}
.y9_c00054{bottom:627.826400pt;}
.y8_c00054{bottom:654.498400pt;}
.y1d_c00054{bottom:654.519733pt;}
.y7_c00054{bottom:681.170400pt;}
.y1c_c00054{bottom:681.186400pt;}
.y6_c00054{bottom:707.842400pt;}
.y1b_c00054{bottom:707.853067pt;}
.y5_c00054{bottom:734.514400pt;}
.y1a_c00054{bottom:734.519733pt;}
.y4_c00054{bottom:761.186400pt;}
.y19_c00054{bottom:761.388400pt;}
.y3_c00054{bottom:814.519733pt;}
.y2_c00054{bottom:894.519733pt;}
.h6_c00054{height:44.704000pt;}
.h2_c00054{height:48.000000pt;}
.h5_c00054{height:57.600000pt;}
.h4_c00054{height:69.813333pt;}
.h3_c00054{height:89.760000pt;}
.h0_c00054{height:1122.520000pt;}
.h1_c00054{height:1122.666667pt;}
.w0_c00054{width:793.701333pt;}
.w1_c00054{width:794.000000pt;}
.x0_c00054{left:0.000000pt;}
.x2_c00054{left:73.333333pt;}
.x3_c00054{left:80.000000pt;}
.x4_c00054{left:94.666667pt;}
.x5_c00054{left:600.543200pt;}
.x1_c00054{left:707.034133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a62c88ea6321e17dd89721a.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.160000;font-style:normal;font-weight:normal;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_dafcd6f5c5d5e3c1545b8b17.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.199000;font-style: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);}
.m1_c00055{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls2_c00055{letter-spacing:0.000000px;}
.ls0_c00055{letter-spacing:0.720000px;}
.ls1_c00055{letter-spacing:0.840000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00055{word-spacing:-17.640000px;}
.ws2_c00055{word-spacing:-12.960000px;}
.ws0_c00055{word-spacing:-10.200000px;}
.wsb_c00055{word-spacing:-2.736000px;}
.ws6_c00055{word-spacing:-2.448000px;}
.ws4_c00055{word-spacing:-0.840000px;}
.ws8_c00055{word-spacing:-0.720000px;}
.ws3_c00055{word-spacing:0.000000px;}
.ws7_c00055{word-spacing:0.432000px;}
.wsd_c00055{word-spacing:1.584000px;}
.wsc_c00055{word-spacing:1.656000px;}
.wsf_c00055{word-spacing:4.320000px;}
.ws11_c00055{word-spacing:5.544000px;}
.ws9_c00055{word-spacing:7.200000px;}
.ws5_c00055{word-spacing:7.416000px;}
.wse_c00055{word-spacing:7.632000px;}
.wsa_c00055{word-spacing:9.432000px;}
.ws10_c00055{word-spacing:38.448000px;}
._0_c00055{margin-left:-480.335400px;}
._5_c00055{margin-left:-8.856000px;}
._6_c00055{margin-left:-6.501600px;}
._3_c00055{margin-left:-5.400000px;}
._1_c00055{margin-left:-4.200000px;}
._4_c00055{margin-left:-3.067200px;}
._2_c00055{margin-left:-1.440000px;}
.fc2_c00055{color:rgb(32,32,32);}
.fc1_c00055{color:rgb(232,86,17);}
.fc0_c00055{color:rgb(60,60,59);}
.fs1_c00055{font-size:42.000000px;}
.fs0_c00055{font-size:60.000000px;}
.fs3_c00055{font-size:72.000000px;}
.fs2_c00055{font-size:84.000000px;}
.y0_c00055{bottom:0.000000px;}
.y1_c00055{bottom:41.250000px;}
.y15_c00055{bottom:226.322700px;}
.y14_c00055{bottom:256.328700px;}
.y13_c00055{bottom:286.334700px;}
.y12_c00055{bottom:346.334700px;}
.y11_c00055{bottom:436.304700px;}
.y10_c00055{bottom:466.310700px;}
.yf_c00055{bottom:496.316700px;}
.ye_c00055{bottom:526.322700px;}
.yd_c00055{bottom:556.328700px;}
.yc_c00055{bottom:586.334700px;}
.yb_c00055{bottom:646.334700px;}
.ya_c00055{bottom:736.292700px;}
.y9_c00055{bottom:766.298700px;}
.y8_c00055{bottom:796.304700px;}
.y7_c00055{bottom:826.310700px;}
.y6_c00055{bottom:856.316700px;}
.y5_c00055{bottom:886.322700px;}
.y4_c00055{bottom:916.328700px;}
.y3_c00055{bottom:946.334700px;}
.y2_c00055{bottom:1006.334700px;}
.h2_c00055{height:54.000000px;}
.h4_c00055{height:64.800000px;}
.h3_c00055{height:78.540000px;}
.h0_c00055{height:1262.835000px;}
.h1_c00055{height:1263.000000px;}
.w0_c00055{width:892.914000px;}
.w1_c00055{width:893.250000px;}
.x0_c00055{left:0.000000px;}
.x2_c00055{left:90.000000px;}
.x3_c00055{left:106.500000px;}
.x1_c00055{left:794.288400px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls2_c00055{letter-spacing:0.000000pt;}
.ls0_c00055{letter-spacing:0.640000pt;}
.ls1_c00055{letter-spacing:0.746667pt;}
.ws1_c00055{word-spacing:-15.680000pt;}
.ws2_c00055{word-spacing:-11.520000pt;}
.ws0_c00055{word-spacing:-9.066667pt;}
.wsb_c00055{word-spacing:-2.432000pt;}
.ws6_c00055{word-spacing:-2.176000pt;}
.ws4_c00055{word-spacing:-0.746667pt;}
.ws8_c00055{word-spacing:-0.640000pt;}
.ws3_c00055{word-spacing:0.000000pt;}
.ws7_c00055{word-spacing:0.384000pt;}
.wsd_c00055{word-spacing:1.408000pt;}
.wsc_c00055{word-spacing:1.472000pt;}
.wsf_c00055{word-spacing:3.840000pt;}
.ws11_c00055{word-spacing:4.928000pt;}
.ws9_c00055{word-spacing:6.400000pt;}
.ws5_c00055{word-spacing:6.592000pt;}
.wse_c00055{word-spacing:6.784000pt;}
.wsa_c00055{word-spacing:8.384000pt;}
.ws10_c00055{word-spacing:34.176000pt;}
._0_c00055{margin-left:-426.964800pt;}
._5_c00055{margin-left:-7.872000pt;}
._6_c00055{margin-left:-5.779200pt;}
._3_c00055{margin-left:-4.800000pt;}
._1_c00055{margin-left:-3.733333pt;}
._4_c00055{margin-left:-2.726400pt;}
._2_c00055{margin-left:-1.280000pt;}
.fs1_c00055{font-size:37.333333pt;}
.fs0_c00055{font-size:53.333333pt;}
.fs3_c00055{font-size:64.000000pt;}
.fs2_c00055{font-size:74.666667pt;}
.y0_c00055{bottom:0.000000pt;}
.y1_c00055{bottom:36.666667pt;}
.y15_c00055{bottom:201.175733pt;}
.y14_c00055{bottom:227.847733pt;}
.y13_c00055{bottom:254.519733pt;}
.y12_c00055{bottom:307.853067pt;}
.y11_c00055{bottom:387.826400pt;}
.y10_c00055{bottom:414.498400pt;}
.yf_c00055{bottom:441.170400pt;}
.ye_c00055{bottom:467.842400pt;}
.yd_c00055{bottom:494.514400pt;}
.yc_c00055{bottom:521.186400pt;}
.yb_c00055{bottom:574.519733pt;}
.ya_c00055{bottom:654.482400pt;}
.y9_c00055{bottom:681.154400pt;}
.y8_c00055{bottom:707.826400pt;}
.y7_c00055{bottom:734.498400pt;}
.y6_c00055{bottom:761.170400pt;}
.y5_c00055{bottom:787.842400pt;}
.y4_c00055{bottom:814.514400pt;}
.y3_c00055{bottom:841.186400pt;}
.y2_c00055{bottom:894.519733pt;}
.h2_c00055{height:48.000000pt;}
.h4_c00055{height:57.600000pt;}
.h3_c00055{height:69.813333pt;}
.h0_c00055{height:1122.520000pt;}
.h1_c00055{height:1122.666667pt;}
.w0_c00055{width:793.701333pt;}
.w1_c00055{width:794.000000pt;}
.x0_c00055{left:0.000000pt;}
.x2_c00055{left:80.000000pt;}
.x3_c00055{left:94.666667pt;}
.x1_c00055{left:706.034133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09baf8cd2945c6e6d5da27e7.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.160000;font-style:normal;font-weight:normal;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_e04a0991b070062a3f74fe43.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_c9b8fdba265e8fff572ae7ce.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls5_c00056{letter-spacing:-0.324000px;}
.ls4_c00056{letter-spacing:0.000000px;}
.ls0_c00056{letter-spacing:0.720000px;}
.ls1_c00056{letter-spacing:0.840000px;}
.ls3_c00056{letter-spacing:1.500000px;}
.ls2_c00056{letter-spacing:1.650000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00056{word-spacing:-21.276000px;}
.ws2_c00056{word-spacing:-17.640000px;}
.ws3_c00056{word-spacing:-14.850000px;}
.ws0_c00056{word-spacing:-10.200000px;}
.ws15_c00056{word-spacing:-1.500000px;}
.wsa_c00056{word-spacing:-1.224000px;}
.ws9_c00056{word-spacing:-1.152000px;}
.ws5_c00056{word-spacing:-0.840000px;}
.ws11_c00056{word-spacing:-0.720000px;}
.ws4_c00056{word-spacing:0.000000px;}
.ws12_c00056{word-spacing:0.432000px;}
.wse_c00056{word-spacing:1.152000px;}
.wsc_c00056{word-spacing:4.320000px;}
.ws14_c00056{word-spacing:4.536000px;}
.ws13_c00056{word-spacing:6.696000px;}
.wsb_c00056{word-spacing:6.984000px;}
.ws6_c00056{word-spacing:7.272000px;}
.wsd_c00056{word-spacing:8.280000px;}
.ws7_c00056{word-spacing:9.792000px;}
.ws8_c00056{word-spacing:11.808000px;}
.wsf_c00056{word-spacing:16.056000px;}
.ws10_c00056{word-spacing:26.424000px;}
._0_c00056{margin-left:-480.336000px;}
._5_c00056{margin-left:-9.360000px;}
._6_c00056{margin-left:-7.920000px;}
._4_c00056{margin-left:-6.372000px;}
._1_c00056{margin-left:-4.200000px;}
._3_c00056{margin-left:-2.196000px;}
._2_c00056{margin-left:-1.134000px;}
.fc3_c00056{color:rgb(32,32,32);}
.fc2_c00056{color:rgb(233,83,14);}
.fc1_c00056{color:rgb(232,86,17);}
.fc4_c00056{color:rgb(157,157,156);}
.fc0_c00056{color:rgb(60,60,59);}
.fs1_c00056{font-size:42.000000px;}
.fs0_c00056{font-size:60.000000px;}
.fs5_c00056{font-size:66.000000px;}
.fs4_c00056{font-size:72.000000px;}
.fs3_c00056{font-size:84.000000px;}
.fs2_c00056{font-size:108.000000px;}
.y0_c00056{bottom:0.000000px;}
.y1_c00056{bottom:41.250000px;}
.y16_c00056{bottom:136.316700px;}
.y15_c00056{bottom:166.322700px;}
.y14_c00056{bottom:196.328700px;}
.y13_c00056{bottom:226.334700px;}
.y12_c00056{bottom:286.334700px;}
.y11_c00056{bottom:376.310700px;}
.y10_c00056{bottom:406.316700px;}
.yf_c00056{bottom:436.322700px;}
.ye_c00056{bottom:466.328700px;}
.yd_c00056{bottom:496.334700px;}
.yc_c00056{bottom:556.334700px;}
.yb_c00056{bottom:646.292700px;}
.ya_c00056{bottom:676.298700px;}
.y9_c00056{bottom:706.304700px;}
.y8_c00056{bottom:736.310700px;}
.y7_c00056{bottom:766.316700px;}
.y1a_c00056{bottom:766.334700px;}
.y6_c00056{bottom:796.322700px;}
.y19_c00056{bottom:796.334700px;}
.y5_c00056{bottom:826.328700px;}
.y18_c00056{bottom:826.334700px;}
.y4_c00056{bottom:856.334700px;}
.y17_c00056{bottom:856.561950px;}
.y3_c00056{bottom:916.334700px;}
.y2_c00056{bottom:1006.334700px;}
.h6_c00056{height:50.292000px;}
.h2_c00056{height:54.000000px;}
.h5_c00056{height:64.800000px;}
.h4_c00056{height:78.540000px;}
.h3_c00056{height:100.980000px;}
.h0_c00056{height:1262.835000px;}
.h1_c00056{height:1263.000000px;}
.w0_c00056{width:892.914000px;}
.w1_c00056{width:893.250000px;}
.x0_c00056{left:0.000000px;}
.x2_c00056{left:82.500000px;}
.x3_c00056{left:90.000000px;}
.x4_c00056{left:106.500000px;}
.x5_c00056{left:675.611100px;}
.x1_c00056{left:796.388550px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls5_c00056{letter-spacing:-0.288000pt;}
.ls4_c00056{letter-spacing:0.000000pt;}
.ls0_c00056{letter-spacing:0.640000pt;}
.ls1_c00056{letter-spacing:0.746667pt;}
.ls3_c00056{letter-spacing:1.333333pt;}
.ls2_c00056{letter-spacing:1.466667pt;}
.ws1_c00056{word-spacing:-18.912000pt;}
.ws2_c00056{word-spacing:-15.680000pt;}
.ws3_c00056{word-spacing:-13.200000pt;}
.ws0_c00056{word-spacing:-9.066667pt;}
.ws15_c00056{word-spacing:-1.333333pt;}
.wsa_c00056{word-spacing:-1.088000pt;}
.ws9_c00056{word-spacing:-1.024000pt;}
.ws5_c00056{word-spacing:-0.746667pt;}
.ws11_c00056{word-spacing:-0.640000pt;}
.ws4_c00056{word-spacing:0.000000pt;}
.ws12_c00056{word-spacing:0.384000pt;}
.wse_c00056{word-spacing:1.024000pt;}
.wsc_c00056{word-spacing:3.840000pt;}
.ws14_c00056{word-spacing:4.032000pt;}
.ws13_c00056{word-spacing:5.952000pt;}
.wsb_c00056{word-spacing:6.208000pt;}
.ws6_c00056{word-spacing:6.464000pt;}
.wsd_c00056{word-spacing:7.360000pt;}
.ws7_c00056{word-spacing:8.704000pt;}
.ws8_c00056{word-spacing:10.496000pt;}
.wsf_c00056{word-spacing:14.272000pt;}
.ws10_c00056{word-spacing:23.488000pt;}
._0_c00056{margin-left:-426.965333pt;}
._5_c00056{margin-left:-8.320000pt;}
._6_c00056{margin-left:-7.040000pt;}
._4_c00056{margin-left:-5.664000pt;}
._1_c00056{margin-left:-3.733333pt;}
._3_c00056{margin-left:-1.952000pt;}
._2_c00056{margin-left:-1.008000pt;}
.fs1_c00056{font-size:37.333333pt;}
.fs0_c00056{font-size:53.333333pt;}
.fs5_c00056{font-size:58.666667pt;}
.fs4_c00056{font-size:64.000000pt;}
.fs3_c00056{font-size:74.666667pt;}
.fs2_c00056{font-size:96.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y1_c00056{bottom:36.666667pt;}
.y16_c00056{bottom:121.170400pt;}
.y15_c00056{bottom:147.842400pt;}
.y14_c00056{bottom:174.514400pt;}
.y13_c00056{bottom:201.186400pt;}
.y12_c00056{bottom:254.519733pt;}
.y11_c00056{bottom:334.498400pt;}
.y10_c00056{bottom:361.170400pt;}
.yf_c00056{bottom:387.842400pt;}
.ye_c00056{bottom:414.514400pt;}
.yd_c00056{bottom:441.186400pt;}
.yc_c00056{bottom:494.519733pt;}
.yb_c00056{bottom:574.482400pt;}
.ya_c00056{bottom:601.154400pt;}
.y9_c00056{bottom:627.826400pt;}
.y8_c00056{bottom:654.498400pt;}
.y7_c00056{bottom:681.170400pt;}
.y1a_c00056{bottom:681.186400pt;}
.y6_c00056{bottom:707.842400pt;}
.y19_c00056{bottom:707.853067pt;}
.y5_c00056{bottom:734.514400pt;}
.y18_c00056{bottom:734.519733pt;}
.y4_c00056{bottom:761.186400pt;}
.y17_c00056{bottom:761.388400pt;}
.y3_c00056{bottom:814.519733pt;}
.y2_c00056{bottom:894.519733pt;}
.h6_c00056{height:44.704000pt;}
.h2_c00056{height:48.000000pt;}
.h5_c00056{height:57.600000pt;}
.h4_c00056{height:69.813333pt;}
.h3_c00056{height:89.760000pt;}
.h0_c00056{height:1122.520000pt;}
.h1_c00056{height:1122.666667pt;}
.w0_c00056{width:793.701333pt;}
.w1_c00056{width:794.000000pt;}
.x0_c00056{left:0.000000pt;}
.x2_c00056{left:73.333333pt;}
.x3_c00056{left:80.000000pt;}
.x4_c00056{left:94.666667pt;}
.x5_c00056{left:600.543200pt;}
.x1_c00056{left:707.900933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71fb84a5e31ccfa9b2556015.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.199000;font-style: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);}
.m1_c00057{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls2_c00057{letter-spacing:0.000000px;}
.ls0_c00057{letter-spacing:0.720000px;}
.ls1_c00057{letter-spacing:0.840000px;}
.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;}
}
.ws1_c00057{word-spacing:-17.640000px;}
.ws2_c00057{word-spacing:-12.960000px;}
.ws0_c00057{word-spacing:-10.200000px;}
.ws8_c00057{word-spacing:-2.016000px;}
.ws6_c00057{word-spacing:-1.152000px;}
.ws4_c00057{word-spacing:-0.840000px;}
.ws3_c00057{word-spacing:0.000000px;}
.wsb_c00057{word-spacing:3.888000px;}
.ws5_c00057{word-spacing:4.032000px;}
.wse_c00057{word-spacing:5.472000px;}
.ws10_c00057{word-spacing:5.544000px;}
.wsc_c00057{word-spacing:5.904000px;}
.ws7_c00057{word-spacing:7.632000px;}
.ws9_c00057{word-spacing:9.288000px;}
.wsd_c00057{word-spacing:10.512000px;}
.wsa_c00057{word-spacing:23.616000px;}
.wsf_c00057{word-spacing:38.448000px;}
._0_c00057{margin-left:-480.336000px;}
._5_c00057{margin-left:-6.636000px;}
._4_c00057{margin-left:-5.520000px;}
._1_c00057{margin-left:-4.200000px;}
._2_c00057{margin-left:-2.880000px;}
._3_c00057{margin-left:-1.440000px;}
.fc2_c00057{color:rgb(32,32,32);}
.fc1_c00057{color:rgb(232,86,17);}
.fc0_c00057{color:rgb(60,60,59);}
.fs1_c00057{font-size:42.000000px;}
.fs0_c00057{font-size:60.000000px;}
.fs3_c00057{font-size:72.000000px;}
.fs2_c00057{font-size:84.000000px;}
.y0_c00057{bottom:0.000000px;}
.y1_c00057{bottom:41.250000px;}
.y14_c00057{bottom:256.322700px;}
.y13_c00057{bottom:286.328700px;}
.y12_c00057{bottom:316.334700px;}
.y11_c00057{bottom:376.334700px;}
.y10_c00057{bottom:466.304700px;}
.yf_c00057{bottom:496.310700px;}
.ye_c00057{bottom:526.316700px;}
.yd_c00057{bottom:556.322700px;}
.yc_c00057{bottom:586.328700px;}
.yb_c00057{bottom:616.334700px;}
.ya_c00057{bottom:676.334700px;}
.y9_c00057{bottom:766.298700px;}
.y8_c00057{bottom:796.304700px;}
.y7_c00057{bottom:826.310700px;}
.y6_c00057{bottom:856.316700px;}
.y5_c00057{bottom:886.322700px;}
.y4_c00057{bottom:916.328700px;}
.y3_c00057{bottom:946.334700px;}
.y2_c00057{bottom:1006.334700px;}
.h2_c00057{height:54.000000px;}
.h4_c00057{height:64.800000px;}
.h3_c00057{height:78.540000px;}
.h0_c00057{height:1262.835000px;}
.h1_c00057{height:1263.000000px;}
.w0_c00057{width:892.914000px;}
.w1_c00057{width:893.250000px;}
.x0_c00057{left:0.000000px;}
.x2_c00057{left:90.000000px;}
.x3_c00057{left:106.500000px;}
.x1_c00057{left:794.363550px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls2_c00057{letter-spacing:0.000000pt;}
.ls0_c00057{letter-spacing:0.640000pt;}
.ls1_c00057{letter-spacing:0.746667pt;}
.ws1_c00057{word-spacing:-15.680000pt;}
.ws2_c00057{word-spacing:-11.520000pt;}
.ws0_c00057{word-spacing:-9.066667pt;}
.ws8_c00057{word-spacing:-1.792000pt;}
.ws6_c00057{word-spacing:-1.024000pt;}
.ws4_c00057{word-spacing:-0.746667pt;}
.ws3_c00057{word-spacing:0.000000pt;}
.wsb_c00057{word-spacing:3.456000pt;}
.ws5_c00057{word-spacing:3.584000pt;}
.wse_c00057{word-spacing:4.864000pt;}
.ws10_c00057{word-spacing:4.928000pt;}
.wsc_c00057{word-spacing:5.248000pt;}
.ws7_c00057{word-spacing:6.784000pt;}
.ws9_c00057{word-spacing:8.256000pt;}
.wsd_c00057{word-spacing:9.344000pt;}
.wsa_c00057{word-spacing:20.992000pt;}
.wsf_c00057{word-spacing:34.176000pt;}
._0_c00057{margin-left:-426.965333pt;}
._5_c00057{margin-left:-5.898667pt;}
._4_c00057{margin-left:-4.906667pt;}
._1_c00057{margin-left:-3.733333pt;}
._2_c00057{margin-left:-2.560000pt;}
._3_c00057{margin-left:-1.280000pt;}
.fs1_c00057{font-size:37.333333pt;}
.fs0_c00057{font-size:53.333333pt;}
.fs3_c00057{font-size:64.000000pt;}
.fs2_c00057{font-size:74.666667pt;}
.y0_c00057{bottom:0.000000pt;}
.y1_c00057{bottom:36.666667pt;}
.y14_c00057{bottom:227.842400pt;}
.y13_c00057{bottom:254.514400pt;}
.y12_c00057{bottom:281.186400pt;}
.y11_c00057{bottom:334.519733pt;}
.y10_c00057{bottom:414.493067pt;}
.yf_c00057{bottom:441.165067pt;}
.ye_c00057{bottom:467.837067pt;}
.yd_c00057{bottom:494.509067pt;}
.yc_c00057{bottom:521.181067pt;}
.yb_c00057{bottom:547.853067pt;}
.ya_c00057{bottom:601.186400pt;}
.y9_c00057{bottom:681.154400pt;}
.y8_c00057{bottom:707.826400pt;}
.y7_c00057{bottom:734.498400pt;}
.y6_c00057{bottom:761.170400pt;}
.y5_c00057{bottom:787.842400pt;}
.y4_c00057{bottom:814.514400pt;}
.y3_c00057{bottom:841.186400pt;}
.y2_c00057{bottom:894.519733pt;}
.h2_c00057{height:48.000000pt;}
.h4_c00057{height:57.600000pt;}
.h3_c00057{height:69.813333pt;}
.h0_c00057{height:1122.520000pt;}
.h1_c00057{height:1122.666667pt;}
.w0_c00057{width:793.701333pt;}
.w1_c00057{width:794.000000pt;}
.x0_c00057{left:0.000000pt;}
.x2_c00057{left:80.000000pt;}
.x3_c00057{left:94.666667pt;}
.x1_c00057{left:706.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.160000;font-style:normal;font-weight:normal;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_d219d4c1976e9292b4fdff88.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00058;src:url('chunks/assets/font_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00058;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00058;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;line-height:1.155000;font-style: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);}
.m1_c00058{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls3_c00058{letter-spacing:-0.648000px;}
.ls2_c00058{letter-spacing:0.000000px;}
.ls0_c00058{letter-spacing:0.864000px;}
.ls1_c00058{letter-spacing:1.200000px;}
.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;}
}
.ws9_c00058{word-spacing:-14.400000px;}
.ws8_c00058{word-spacing:-13.752000px;}
.ws1_c00058{word-spacing:-13.104000px;}
.ws0_c00058{word-spacing:-10.200000px;}
.ws4_c00058{word-spacing:-8.712000px;}
.ws7_c00058{word-spacing:-4.104000px;}
.ws6_c00058{word-spacing:-2.016000px;}
.ws2_c00058{word-spacing:0.000000px;}
.ws5_c00058{word-spacing:0.648000px;}
.ws3_c00058{word-spacing:0.936000px;}
._0_c00058{margin-left:-480.335400px;}
._9_c00058{margin-left:-10.728000px;}
._8_c00058{margin-left:-9.000000px;}
._5_c00058{margin-left:-6.480000px;}
._1_c00058{margin-left:-4.200000px;}
._7_c00058{margin-left:-3.072000px;}
._2_c00058{margin-left:-1.728000px;}
._4_c00058{width:2.520000px;}
._3_c00058{width:9.000000px;}
._6_c00058{width:10.152000px;}
.fc3_c00058{color:rgb(255,255,255);}
.fc2_c00058{color:rgb(233,83,14);}
.fc1_c00058{color:rgb(232,86,17);}
.fc0_c00058{color:rgb(60,60,59);}
.fs1_c00058{font-size:42.000000px;}
.fs0_c00058{font-size:60.000000px;}
.fs3_c00058{font-size:72.000000px;}
.fs4_c00058{font-size:120.000000px;}
.fs2_c00058{font-size:360.000000px;}
.y0_c00058{bottom:0.000000px;}
.y1_c00058{bottom:41.250000px;}
.ya_c00058{bottom:553.322700px;}
.y9_c00058{bottom:574.328700px;}
.y8_c00058{bottom:595.334700px;}
.y7_c00058{bottom:616.340700px;}
.y6_c00058{bottom:663.734700px;}
.y5_c00058{bottom:685.334700px;}
.y4_c00058{bottom:706.340700px;}
.y3_c00058{bottom:752.834700px;}
.ye_c00058{bottom:916.334700px;}
.yd_c00058{bottom:946.334700px;}
.yc_c00058{bottom:976.334700px;}
.yb_c00058{bottom:1006.334700px;}
.y2_c00058{bottom:1093.526700px;}
.h2_c00058{height:54.000000px;}
.h5_c00058{height:64.800000px;}
.h4_c00058{height:66.456000px;}
.h6_c00058{height:112.200000px;}
.h3_c00058{height:324.000000px;}
.h0_c00058{height:1262.835000px;}
.h1_c00058{height:1263.000000px;}
.w0_c00058{width:892.914000px;}
.w1_c00058{width:893.250000px;}
.x0_c00058{left:0.000000px;}
.x2_c00058{left:81.290250px;}
.x3_c00058{left:82.393650px;}
.x5_c00058{left:112.287450px;}
.x4_c00058{left:127.393650px;}
.x1_c00058{left:794.288400px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls3_c00058{letter-spacing:-0.576000pt;}
.ls2_c00058{letter-spacing:0.000000pt;}
.ls0_c00058{letter-spacing:0.768000pt;}
.ls1_c00058{letter-spacing:1.066667pt;}
.ws9_c00058{word-spacing:-12.800000pt;}
.ws8_c00058{word-spacing:-12.224000pt;}
.ws1_c00058{word-spacing:-11.648000pt;}
.ws0_c00058{word-spacing:-9.066667pt;}
.ws4_c00058{word-spacing:-7.744000pt;}
.ws7_c00058{word-spacing:-3.648000pt;}
.ws6_c00058{word-spacing:-1.792000pt;}
.ws2_c00058{word-spacing:0.000000pt;}
.ws5_c00058{word-spacing:0.576000pt;}
.ws3_c00058{word-spacing:0.832000pt;}
._0_c00058{margin-left:-426.964800pt;}
._9_c00058{margin-left:-9.536000pt;}
._8_c00058{margin-left:-8.000000pt;}
._5_c00058{margin-left:-5.760000pt;}
._1_c00058{margin-left:-3.733333pt;}
._7_c00058{margin-left:-2.730667pt;}
._2_c00058{margin-left:-1.536000pt;}
._4_c00058{width:2.240000pt;}
._3_c00058{width:8.000000pt;}
._6_c00058{width:9.024000pt;}
.fs1_c00058{font-size:37.333333pt;}
.fs0_c00058{font-size:53.333333pt;}
.fs3_c00058{font-size:64.000000pt;}
.fs4_c00058{font-size:106.666667pt;}
.fs2_c00058{font-size:320.000000pt;}
.y0_c00058{bottom:0.000000pt;}
.y1_c00058{bottom:36.666667pt;}
.ya_c00058{bottom:491.842400pt;}
.y9_c00058{bottom:510.514400pt;}
.y8_c00058{bottom:529.186400pt;}
.y7_c00058{bottom:547.858400pt;}
.y6_c00058{bottom:589.986400pt;}
.y5_c00058{bottom:609.186400pt;}
.y4_c00058{bottom:627.858400pt;}
.y3_c00058{bottom:669.186400pt;}
.ye_c00058{bottom:814.519733pt;}
.yd_c00058{bottom:841.186400pt;}
.yc_c00058{bottom:867.853067pt;}
.yb_c00058{bottom:894.519733pt;}
.y2_c00058{bottom:972.023733pt;}
.h2_c00058{height:48.000000pt;}
.h5_c00058{height:57.600000pt;}
.h4_c00058{height:59.072000pt;}
.h6_c00058{height:99.733333pt;}
.h3_c00058{height:288.000000pt;}
.h0_c00058{height:1122.520000pt;}
.h1_c00058{height:1122.666667pt;}
.w0_c00058{width:793.701333pt;}
.w1_c00058{width:794.000000pt;}
.x0_c00058{left:0.000000pt;}
.x2_c00058{left:72.258000pt;}
.x3_c00058{left:73.238800pt;}
.x5_c00058{left:99.811067pt;}
.x4_c00058{left:113.238800pt;}
.x1_c00058{left:706.034133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a62c88ea6321e17dd89721a.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00059;src:url('chunks/assets/font_8044500461936b1776693626.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00059;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.161000;font-style: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);}
.m1_c00059{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls5_c00059{letter-spacing:-0.540000px;}
.ls4_c00059{letter-spacing:0.000000px;}
.ls0_c00059{letter-spacing:0.720000px;}
.ls1_c00059{letter-spacing:0.840000px;}
.ls3_c00059{letter-spacing:1.500000px;}
.ls2_c00059{letter-spacing:1.650000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00059{word-spacing:-21.060000px;}
.ws2_c00059{word-spacing:-17.640000px;}
.ws0_c00059{word-spacing:-10.200000px;}
.ws9_c00059{word-spacing:-4.032000px;}
.wse_c00059{word-spacing:-3.960000px;}
.ws11_c00059{word-spacing:-1.500000px;}
.wsf_c00059{word-spacing:-1.296000px;}
.ws4_c00059{word-spacing:-0.840000px;}
.ws3_c00059{word-spacing:0.000000px;}
.ws7_c00059{word-spacing:0.144000px;}
.ws10_c00059{word-spacing:0.936000px;}
.wsb_c00059{word-spacing:3.096000px;}
.wsc_c00059{word-spacing:4.536000px;}
.wsa_c00059{word-spacing:5.760000px;}
.ws6_c00059{word-spacing:7.200000px;}
.ws8_c00059{word-spacing:8.280000px;}
.wsd_c00059{word-spacing:9.360000px;}
.ws5_c00059{word-spacing:11.808000px;}
._0_c00059{margin-left:-480.336600px;}
._4_c00059{margin-left:-6.480000px;}
._1_c00059{margin-left:-4.200000px;}
._2_c00059{margin-left:-2.001600px;}
._5_c00059{margin-left:-1.000800px;}
._3_c00059{width:1.044000px;}
.fc3_c00059{color:rgb(32,32,32);}
.fc2_c00059{color:rgb(233,83,14);}
.fc1_c00059{color:rgb(232,86,17);}
.fc4_c00059{color:rgb(157,157,156);}
.fc0_c00059{color:rgb(60,60,59);}
.fs1_c00059{font-size:42.000000px;}
.fs0_c00059{font-size:60.000000px;}
.fs5_c00059{font-size:66.000000px;}
.fs4_c00059{font-size:72.000000px;}
.fs3_c00059{font-size:84.000000px;}
.fs2_c00059{font-size:108.000000px;}
.y0_c00059{bottom:0.000000px;}
.y1_c00059{bottom:41.250000px;}
.y12_c00059{bottom:346.316700px;}
.y11_c00059{bottom:376.322700px;}
.y10_c00059{bottom:406.328700px;}
.yf_c00059{bottom:436.334700px;}
.ye_c00059{bottom:496.334700px;}
.yd_c00059{bottom:586.280700px;}
.yc_c00059{bottom:616.286700px;}
.yb_c00059{bottom:646.292700px;}
.ya_c00059{bottom:676.298700px;}
.y9_c00059{bottom:706.304700px;}
.y18_c00059{bottom:706.334700px;}
.y8_c00059{bottom:736.310700px;}
.y17_c00059{bottom:736.334700px;}
.y7_c00059{bottom:766.316700px;}
.y16_c00059{bottom:766.334700px;}
.y6_c00059{bottom:796.322700px;}
.y15_c00059{bottom:796.334700px;}
.y5_c00059{bottom:826.328700px;}
.y14_c00059{bottom:826.334700px;}
.y4_c00059{bottom:856.334700px;}
.y13_c00059{bottom:856.561950px;}
.y3_c00059{bottom:916.334700px;}
.y2_c00059{bottom:1006.334700px;}
.h6_c00059{height:50.292000px;}
.h2_c00059{height:54.000000px;}
.h5_c00059{height:64.800000px;}
.h4_c00059{height:78.540000px;}
.h3_c00059{height:100.980000px;}
.h0_c00059{height:1262.835000px;}
.h1_c00059{height:1263.000000px;}
.w0_c00059{width:892.914000px;}
.w1_c00059{width:893.250000px;}
.x0_c00059{left:0.000000px;}
.x2_c00059{left:82.500000px;}
.x3_c00059{left:90.000000px;}
.x4_c00059{left:106.500000px;}
.x5_c00059{left:675.611100px;}
.x1_c00059{left:793.178700px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls5_c00059{letter-spacing:-0.480000pt;}
.ls4_c00059{letter-spacing:0.000000pt;}
.ls0_c00059{letter-spacing:0.640000pt;}
.ls1_c00059{letter-spacing:0.746667pt;}
.ls3_c00059{letter-spacing:1.333333pt;}
.ls2_c00059{letter-spacing:1.466667pt;}
.ws1_c00059{word-spacing:-18.720000pt;}
.ws2_c00059{word-spacing:-15.680000pt;}
.ws0_c00059{word-spacing:-9.066667pt;}
.ws9_c00059{word-spacing:-3.584000pt;}
.wse_c00059{word-spacing:-3.520000pt;}
.ws11_c00059{word-spacing:-1.333333pt;}
.wsf_c00059{word-spacing:-1.152000pt;}
.ws4_c00059{word-spacing:-0.746667pt;}
.ws3_c00059{word-spacing:0.000000pt;}
.ws7_c00059{word-spacing:0.128000pt;}
.ws10_c00059{word-spacing:0.832000pt;}
.wsb_c00059{word-spacing:2.752000pt;}
.wsc_c00059{word-spacing:4.032000pt;}
.wsa_c00059{word-spacing:5.120000pt;}
.ws6_c00059{word-spacing:6.400000pt;}
.ws8_c00059{word-spacing:7.360000pt;}
.wsd_c00059{word-spacing:8.320000pt;}
.ws5_c00059{word-spacing:10.496000pt;}
._0_c00059{margin-left:-426.965867pt;}
._4_c00059{margin-left:-5.760000pt;}
._1_c00059{margin-left:-3.733333pt;}
._2_c00059{margin-left:-1.779200pt;}
._5_c00059{margin-left:-0.889600pt;}
._3_c00059{width:0.928000pt;}
.fs1_c00059{font-size:37.333333pt;}
.fs0_c00059{font-size:53.333333pt;}
.fs5_c00059{font-size:58.666667pt;}
.fs4_c00059{font-size:64.000000pt;}
.fs3_c00059{font-size:74.666667pt;}
.fs2_c00059{font-size:96.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y1_c00059{bottom:36.666667pt;}
.y12_c00059{bottom:307.837067pt;}
.y11_c00059{bottom:334.509067pt;}
.y10_c00059{bottom:361.181067pt;}
.yf_c00059{bottom:387.853067pt;}
.ye_c00059{bottom:441.186400pt;}
.yd_c00059{bottom:521.138400pt;}
.yc_c00059{bottom:547.810400pt;}
.yb_c00059{bottom:574.482400pt;}
.ya_c00059{bottom:601.154400pt;}
.y9_c00059{bottom:627.826400pt;}
.y18_c00059{bottom:627.853067pt;}
.y8_c00059{bottom:654.498400pt;}
.y17_c00059{bottom:654.519733pt;}
.y7_c00059{bottom:681.170400pt;}
.y16_c00059{bottom:681.186400pt;}
.y6_c00059{bottom:707.842400pt;}
.y15_c00059{bottom:707.853067pt;}
.y5_c00059{bottom:734.514400pt;}
.y14_c00059{bottom:734.519733pt;}
.y4_c00059{bottom:761.186400pt;}
.y13_c00059{bottom:761.388400pt;}
.y3_c00059{bottom:814.519733pt;}
.y2_c00059{bottom:894.519733pt;}
.h6_c00059{height:44.704000pt;}
.h2_c00059{height:48.000000pt;}
.h5_c00059{height:57.600000pt;}
.h4_c00059{height:69.813333pt;}
.h3_c00059{height:89.760000pt;}
.h0_c00059{height:1122.520000pt;}
.h1_c00059{height:1122.666667pt;}
.w0_c00059{width:793.701333pt;}
.w1_c00059{width:794.000000pt;}
.x0_c00059{left:0.000000pt;}
.x2_c00059{left:73.333333pt;}
.x3_c00059{left:80.000000pt;}
.x4_c00059{left:94.666667pt;}
.x5_c00059{left:600.543200pt;}
.x1_c00059{left:705.047733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a62c88ea6321e17dd89721a.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls1_c00060{letter-spacing:0.000000px;}
.ls0_c00060{letter-spacing:0.720000px;}
.ls2_c00060{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wse_c00060{word-spacing:-3.384000px;}
.ws6_c00060{word-spacing:-2.592000px;}
.ws5_c00060{word-spacing:-1.368000px;}
.ws7_c00060{word-spacing:-1.152000px;}
.ws2_c00060{word-spacing:-0.840000px;}
.wsc_c00060{word-spacing:-0.720000px;}
.ws1_c00060{word-spacing:0.000000px;}
.ws3_c00060{word-spacing:0.792000px;}
.wsf_c00060{word-spacing:1.512000px;}
.ws8_c00060{word-spacing:2.088000px;}
.wsa_c00060{word-spacing:3.528000px;}
.ws9_c00060{word-spacing:3.600000px;}
.ws4_c00060{word-spacing:4.248000px;}
.wsb_c00060{word-spacing:5.400000px;}
.wsd_c00060{word-spacing:22.896000px;}
._0_c00060{margin-left:-480.336600px;}
._7_c00060{margin-left:-8.589600px;}
._4_c00060{margin-left:-7.192800px;}
._2_c00060{margin-left:-5.760000px;}
._1_c00060{margin-left:-4.200000px;}
._5_c00060{margin-left:-2.167200px;}
._8_c00060{margin-left:-1.094400px;}
._3_c00060{width:1.166400px;}
._6_c00060{width:2.656800px;}
.fc2_c00060{color:rgb(32,32,32);}
.fc1_c00060{color:rgb(232,86,17);}
.fc0_c00060{color:rgb(60,60,59);}
.fs1_c00060{font-size:42.000000px;}
.fs0_c00060{font-size:60.000000px;}
.fs3_c00060{font-size:72.000000px;}
.fs2_c00060{font-size:84.000000px;}
.y0_c00060{bottom:0.000000px;}
.y1_c00060{bottom:41.250000px;}
.y14_c00060{bottom:256.316700px;}
.y13_c00060{bottom:286.322700px;}
.y12_c00060{bottom:316.328700px;}
.y11_c00060{bottom:346.334700px;}
.y10_c00060{bottom:406.334700px;}
.yf_c00060{bottom:496.286700px;}
.ye_c00060{bottom:526.292700px;}
.yd_c00060{bottom:556.298700px;}
.yc_c00060{bottom:586.304700px;}
.yb_c00060{bottom:616.310700px;}
.ya_c00060{bottom:646.316700px;}
.y9_c00060{bottom:676.322700px;}
.y8_c00060{bottom:706.328700px;}
.y7_c00060{bottom:736.334700px;}
.y6_c00060{bottom:796.334700px;}
.y5_c00060{bottom:886.322700px;}
.y4_c00060{bottom:916.328700px;}
.y3_c00060{bottom:946.334700px;}
.y2_c00060{bottom:1006.334700px;}
.h2_c00060{height:54.000000px;}
.h4_c00060{height:64.800000px;}
.h3_c00060{height:78.540000px;}
.h0_c00060{height:1262.835000px;}
.h1_c00060{height:1263.000000px;}
.w0_c00060{width:892.914000px;}
.w1_c00060{width:893.250000px;}
.x0_c00060{left:0.000000px;}
.x2_c00060{left:90.000000px;}
.x3_c00060{left:106.500000px;}
.x1_c00060{left:796.838700px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls1_c00060{letter-spacing:0.000000pt;}
.ls0_c00060{letter-spacing:0.640000pt;}
.ls2_c00060{letter-spacing:0.746667pt;}
.ws0_c00060{word-spacing:-9.066667pt;}
.wse_c00060{word-spacing:-3.008000pt;}
.ws6_c00060{word-spacing:-2.304000pt;}
.ws5_c00060{word-spacing:-1.216000pt;}
.ws7_c00060{word-spacing:-1.024000pt;}
.ws2_c00060{word-spacing:-0.746667pt;}
.wsc_c00060{word-spacing:-0.640000pt;}
.ws1_c00060{word-spacing:0.000000pt;}
.ws3_c00060{word-spacing:0.704000pt;}
.wsf_c00060{word-spacing:1.344000pt;}
.ws8_c00060{word-spacing:1.856000pt;}
.wsa_c00060{word-spacing:3.136000pt;}
.ws9_c00060{word-spacing:3.200000pt;}
.ws4_c00060{word-spacing:3.776000pt;}
.wsb_c00060{word-spacing:4.800000pt;}
.wsd_c00060{word-spacing:20.352000pt;}
._0_c00060{margin-left:-426.965867pt;}
._7_c00060{margin-left:-7.635200pt;}
._4_c00060{margin-left:-6.393600pt;}
._2_c00060{margin-left:-5.120000pt;}
._1_c00060{margin-left:-3.733333pt;}
._5_c00060{margin-left:-1.926400pt;}
._8_c00060{margin-left:-0.972800pt;}
._3_c00060{width:1.036800pt;}
._6_c00060{width:2.361600pt;}
.fs1_c00060{font-size:37.333333pt;}
.fs0_c00060{font-size:53.333333pt;}
.fs3_c00060{font-size:64.000000pt;}
.fs2_c00060{font-size:74.666667pt;}
.y0_c00060{bottom:0.000000pt;}
.y1_c00060{bottom:36.666667pt;}
.y14_c00060{bottom:227.837067pt;}
.y13_c00060{bottom:254.509067pt;}
.y12_c00060{bottom:281.181067pt;}
.y11_c00060{bottom:307.853067pt;}
.y10_c00060{bottom:361.186400pt;}
.yf_c00060{bottom:441.143733pt;}
.ye_c00060{bottom:467.815733pt;}
.yd_c00060{bottom:494.487733pt;}
.yc_c00060{bottom:521.159733pt;}
.yb_c00060{bottom:547.831733pt;}
.ya_c00060{bottom:574.503733pt;}
.y9_c00060{bottom:601.175733pt;}
.y8_c00060{bottom:627.847733pt;}
.y7_c00060{bottom:654.519733pt;}
.y6_c00060{bottom:707.853067pt;}
.y5_c00060{bottom:787.842400pt;}
.y4_c00060{bottom:814.514400pt;}
.y3_c00060{bottom:841.186400pt;}
.y2_c00060{bottom:894.519733pt;}
.h2_c00060{height:48.000000pt;}
.h4_c00060{height:57.600000pt;}
.h3_c00060{height:69.813333pt;}
.h0_c00060{height:1122.520000pt;}
.h1_c00060{height:1122.666667pt;}
.w0_c00060{width:793.701333pt;}
.w1_c00060{width:794.000000pt;}
.x0_c00060{left:0.000000pt;}
.x2_c00060{left:80.000000pt;}
.x3_c00060{left:94.666667pt;}
.x1_c00060{left:708.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e51b6060c657d42193ea7e2.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.160000;font-style:normal;font-weight:normal;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_e04a0991b070062a3f74fe43.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00061;src:url('chunks/assets/font_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.161000;font-style: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);}
.m1_c00061{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls5_c00061{letter-spacing:-0.324000px;}
.ls4_c00061{letter-spacing:0.000000px;}
.ls0_c00061{letter-spacing:0.720000px;}
.ls1_c00061{letter-spacing:0.840000px;}
.ls3_c00061{letter-spacing:1.500000px;}
.ls2_c00061{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00061{word-spacing:-21.276000px;}
.ws2_c00061{word-spacing:-17.640000px;}
.ws3_c00061{word-spacing:-14.850000px;}
.ws0_c00061{word-spacing:-10.200000px;}
.wsa_c00061{word-spacing:-2.016000px;}
.ws10_c00061{word-spacing:-1.368000px;}
.ws5_c00061{word-spacing:-0.840000px;}
.wse_c00061{word-spacing:-0.792000px;}
.ws4_c00061{word-spacing:0.000000px;}
.ws12_c00061{word-spacing:0.504000px;}
.ws8_c00061{word-spacing:1.440000px;}
.wsb_c00061{word-spacing:1.656000px;}
.ws7_c00061{word-spacing:2.664000px;}
.ws9_c00061{word-spacing:3.960000px;}
.wsf_c00061{word-spacing:6.480000px;}
.wsd_c00061{word-spacing:6.840000px;}
.ws11_c00061{word-spacing:9.432000px;}
.wsc_c00061{word-spacing:9.648000px;}
.ws6_c00061{word-spacing:12.960000px;}
._0_c00061{margin-left:-480.336000px;}
._4_c00061{margin-left:-5.875200px;}
._1_c00061{margin-left:-4.200000px;}
._3_c00061{margin-left:-2.350800px;}
._2_c00061{margin-left:-1.134000px;}
.fc3_c00061{color:rgb(32,32,32);}
.fc2_c00061{color:rgb(233,83,14);}
.fc1_c00061{color:rgb(232,86,17);}
.fc4_c00061{color:rgb(157,157,156);}
.fc0_c00061{color:rgb(60,60,59);}
.fs1_c00061{font-size:42.000000px;}
.fs0_c00061{font-size:60.000000px;}
.fs5_c00061{font-size:66.000000px;}
.fs4_c00061{font-size:72.000000px;}
.fs3_c00061{font-size:84.000000px;}
.fs2_c00061{font-size:108.000000px;}
.y0_c00061{bottom:0.000000px;}
.y1_c00061{bottom:41.250000px;}
.y15_c00061{bottom:166.322700px;}
.y14_c00061{bottom:196.328700px;}
.y13_c00061{bottom:226.334700px;}
.y12_c00061{bottom:286.334700px;}
.y11_c00061{bottom:376.316700px;}
.y10_c00061{bottom:406.322700px;}
.yf_c00061{bottom:436.328700px;}
.ye_c00061{bottom:466.334700px;}
.yd_c00061{bottom:526.334700px;}
.yc_c00061{bottom:616.286700px;}
.yb_c00061{bottom:646.292700px;}
.ya_c00061{bottom:676.298700px;}
.y9_c00061{bottom:706.304700px;}
.y8_c00061{bottom:736.310700px;}
.y1a_c00061{bottom:736.334700px;}
.y7_c00061{bottom:766.316700px;}
.y19_c00061{bottom:766.334700px;}
.y6_c00061{bottom:796.322700px;}
.y18_c00061{bottom:796.334700px;}
.y5_c00061{bottom:826.328700px;}
.y17_c00061{bottom:826.334700px;}
.y4_c00061{bottom:856.334700px;}
.y16_c00061{bottom:856.561950px;}
.y3_c00061{bottom:916.334700px;}
.y2_c00061{bottom:1006.334700px;}
.h6_c00061{height:50.292000px;}
.h2_c00061{height:54.000000px;}
.h5_c00061{height:64.800000px;}
.h4_c00061{height:78.540000px;}
.h3_c00061{height:100.980000px;}
.h0_c00061{height:1262.835000px;}
.h1_c00061{height:1263.000000px;}
.w0_c00061{width:892.914000px;}
.w1_c00061{width:893.250000px;}
.x0_c00061{left:0.000000px;}
.x2_c00061{left:82.500000px;}
.x3_c00061{left:90.000000px;}
.x4_c00061{left:106.500000px;}
.x5_c00061{left:675.611100px;}
.x1_c00061{left:794.363550px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls5_c00061{letter-spacing:-0.288000pt;}
.ls4_c00061{letter-spacing:0.000000pt;}
.ls0_c00061{letter-spacing:0.640000pt;}
.ls1_c00061{letter-spacing:0.746667pt;}
.ls3_c00061{letter-spacing:1.333333pt;}
.ls2_c00061{letter-spacing:1.466667pt;}
.ws1_c00061{word-spacing:-18.912000pt;}
.ws2_c00061{word-spacing:-15.680000pt;}
.ws3_c00061{word-spacing:-13.200000pt;}
.ws0_c00061{word-spacing:-9.066667pt;}
.wsa_c00061{word-spacing:-1.792000pt;}
.ws10_c00061{word-spacing:-1.216000pt;}
.ws5_c00061{word-spacing:-0.746667pt;}
.wse_c00061{word-spacing:-0.704000pt;}
.ws4_c00061{word-spacing:0.000000pt;}
.ws12_c00061{word-spacing:0.448000pt;}
.ws8_c00061{word-spacing:1.280000pt;}
.wsb_c00061{word-spacing:1.472000pt;}
.ws7_c00061{word-spacing:2.368000pt;}
.ws9_c00061{word-spacing:3.520000pt;}
.wsf_c00061{word-spacing:5.760000pt;}
.wsd_c00061{word-spacing:6.080000pt;}
.ws11_c00061{word-spacing:8.384000pt;}
.wsc_c00061{word-spacing:8.576000pt;}
.ws6_c00061{word-spacing:11.520000pt;}
._0_c00061{margin-left:-426.965333pt;}
._4_c00061{margin-left:-5.222400pt;}
._1_c00061{margin-left:-3.733333pt;}
._3_c00061{margin-left:-2.089600pt;}
._2_c00061{margin-left:-1.008000pt;}
.fs1_c00061{font-size:37.333333pt;}
.fs0_c00061{font-size:53.333333pt;}
.fs5_c00061{font-size:58.666667pt;}
.fs4_c00061{font-size:64.000000pt;}
.fs3_c00061{font-size:74.666667pt;}
.fs2_c00061{font-size:96.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y1_c00061{bottom:36.666667pt;}
.y15_c00061{bottom:147.842400pt;}
.y14_c00061{bottom:174.514400pt;}
.y13_c00061{bottom:201.186400pt;}
.y12_c00061{bottom:254.519733pt;}
.y11_c00061{bottom:334.503733pt;}
.y10_c00061{bottom:361.175733pt;}
.yf_c00061{bottom:387.847733pt;}
.ye_c00061{bottom:414.519733pt;}
.yd_c00061{bottom:467.853067pt;}
.yc_c00061{bottom:547.810400pt;}
.yb_c00061{bottom:574.482400pt;}
.ya_c00061{bottom:601.154400pt;}
.y9_c00061{bottom:627.826400pt;}
.y8_c00061{bottom:654.498400pt;}
.y1a_c00061{bottom:654.519733pt;}
.y7_c00061{bottom:681.170400pt;}
.y19_c00061{bottom:681.186400pt;}
.y6_c00061{bottom:707.842400pt;}
.y18_c00061{bottom:707.853067pt;}
.y5_c00061{bottom:734.514400pt;}
.y17_c00061{bottom:734.519733pt;}
.y4_c00061{bottom:761.186400pt;}
.y16_c00061{bottom:761.388400pt;}
.y3_c00061{bottom:814.519733pt;}
.y2_c00061{bottom:894.519733pt;}
.h6_c00061{height:44.704000pt;}
.h2_c00061{height:48.000000pt;}
.h5_c00061{height:57.600000pt;}
.h4_c00061{height:69.813333pt;}
.h3_c00061{height:89.760000pt;}
.h0_c00061{height:1122.520000pt;}
.h1_c00061{height:1122.666667pt;}
.w0_c00061{width:793.701333pt;}
.w1_c00061{width:794.000000pt;}
.x0_c00061{left:0.000000pt;}
.x2_c00061{left:73.333333pt;}
.x3_c00061{left:80.000000pt;}
.x4_c00061{left:94.666667pt;}
.x5_c00061{left:600.543200pt;}
.x1_c00061{left:706.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fd7793cce5e2660ae7bce9a.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls1_c00062{letter-spacing:0.000000px;}
.ls0_c00062{letter-spacing:0.720000px;}
.ls2_c00062{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsb_c00062{word-spacing:-7.920000px;}
.ws2_c00062{word-spacing:-0.840000px;}
.ws1_c00062{word-spacing:0.000000px;}
.wsd_c00062{word-spacing:0.504000px;}
.wsa_c00062{word-spacing:1.512000px;}
.ws7_c00062{word-spacing:4.680000px;}
.wse_c00062{word-spacing:5.184000px;}
.ws3_c00062{word-spacing:5.544000px;}
.wsc_c00062{word-spacing:9.072000px;}
.ws5_c00062{word-spacing:9.432000px;}
.ws6_c00062{word-spacing:9.792000px;}
.ws4_c00062{word-spacing:12.240000px;}
.ws9_c00062{word-spacing:15.984000px;}
.ws8_c00062{word-spacing:20.160000px;}
._0_c00062{margin-left:-480.336600px;}
._4_c00062{margin-left:-6.064800px;}
._1_c00062{margin-left:-4.200000px;}
._2_c00062{margin-left:-2.160000px;}
._5_c00062{margin-left:-1.072800px;}
._3_c00062{width:1.274400px;}
.fc2_c00062{color:rgb(32,32,32);}
.fc1_c00062{color:rgb(232,86,17);}
.fc0_c00062{color:rgb(60,60,59);}
.fs1_c00062{font-size:42.000000px;}
.fs0_c00062{font-size:60.000000px;}
.fs3_c00062{font-size:72.000000px;}
.fs2_c00062{font-size:84.000000px;}
.y0_c00062{bottom:0.000000px;}
.y1_c00062{bottom:41.250000px;}
.y10_c00062{bottom:466.316700px;}
.yf_c00062{bottom:496.322700px;}
.ye_c00062{bottom:526.328700px;}
.yd_c00062{bottom:556.334700px;}
.yc_c00062{bottom:616.334700px;}
.yb_c00062{bottom:706.286700px;}
.ya_c00062{bottom:736.292700px;}
.y9_c00062{bottom:766.298700px;}
.y8_c00062{bottom:796.304700px;}
.y7_c00062{bottom:826.310700px;}
.y6_c00062{bottom:856.316700px;}
.y5_c00062{bottom:886.322700px;}
.y4_c00062{bottom:916.328700px;}
.y3_c00062{bottom:946.334700px;}
.y2_c00062{bottom:1006.334700px;}
.h2_c00062{height:54.000000px;}
.h4_c00062{height:64.800000px;}
.h3_c00062{height:78.540000px;}
.h0_c00062{height:1262.835000px;}
.h1_c00062{height:1263.000000px;}
.w0_c00062{width:892.914000px;}
.w1_c00062{width:893.250000px;}
.x0_c00062{left:0.000000px;}
.x2_c00062{left:90.000000px;}
.x3_c00062{left:106.500000px;}
.x1_c00062{left:794.213700px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls1_c00062{letter-spacing:0.000000pt;}
.ls0_c00062{letter-spacing:0.640000pt;}
.ls2_c00062{letter-spacing:0.746667pt;}
.ws0_c00062{word-spacing:-9.066667pt;}
.wsb_c00062{word-spacing:-7.040000pt;}
.ws2_c00062{word-spacing:-0.746667pt;}
.ws1_c00062{word-spacing:0.000000pt;}
.wsd_c00062{word-spacing:0.448000pt;}
.wsa_c00062{word-spacing:1.344000pt;}
.ws7_c00062{word-spacing:4.160000pt;}
.wse_c00062{word-spacing:4.608000pt;}
.ws3_c00062{word-spacing:4.928000pt;}
.wsc_c00062{word-spacing:8.064000pt;}
.ws5_c00062{word-spacing:8.384000pt;}
.ws6_c00062{word-spacing:8.704000pt;}
.ws4_c00062{word-spacing:10.880000pt;}
.ws9_c00062{word-spacing:14.208000pt;}
.ws8_c00062{word-spacing:17.920000pt;}
._0_c00062{margin-left:-426.965867pt;}
._4_c00062{margin-left:-5.390933pt;}
._1_c00062{margin-left:-3.733333pt;}
._2_c00062{margin-left:-1.920000pt;}
._5_c00062{margin-left:-0.953600pt;}
._3_c00062{width:1.132800pt;}
.fs1_c00062{font-size:37.333333pt;}
.fs0_c00062{font-size:53.333333pt;}
.fs3_c00062{font-size:64.000000pt;}
.fs2_c00062{font-size:74.666667pt;}
.y0_c00062{bottom:0.000000pt;}
.y1_c00062{bottom:36.666667pt;}
.y10_c00062{bottom:414.503733pt;}
.yf_c00062{bottom:441.175733pt;}
.ye_c00062{bottom:467.847733pt;}
.yd_c00062{bottom:494.519733pt;}
.yc_c00062{bottom:547.853067pt;}
.yb_c00062{bottom:627.810400pt;}
.ya_c00062{bottom:654.482400pt;}
.y9_c00062{bottom:681.154400pt;}
.y8_c00062{bottom:707.826400pt;}
.y7_c00062{bottom:734.498400pt;}
.y6_c00062{bottom:761.170400pt;}
.y5_c00062{bottom:787.842400pt;}
.y4_c00062{bottom:814.514400pt;}
.y3_c00062{bottom:841.186400pt;}
.y2_c00062{bottom:894.519733pt;}
.h2_c00062{height:48.000000pt;}
.h4_c00062{height:57.600000pt;}
.h3_c00062{height:69.813333pt;}
.h0_c00062{height:1122.520000pt;}
.h1_c00062{height:1122.666667pt;}
.w0_c00062{width:793.701333pt;}
.w1_c00062{width:794.000000pt;}
.x0_c00062{left:0.000000pt;}
.x2_c00062{left:80.000000pt;}
.x3_c00062{left:94.666667pt;}
.x1_c00062{left:705.967733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.160000;font-style:normal;font-weight:normal;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_d219d4c1976e9292b4fdff88.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.199000;font-style:normal;font-weight:normal;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_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00063;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00063;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.155000;font-style: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);}
.m1_c00063{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls2_c00063{letter-spacing:0.000000px;}
.ls0_c00063{letter-spacing:0.864000px;}
.ls1_c00063{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00063{word-spacing:-13.104000px;}
.ws0_c00063{word-spacing:-10.200000px;}
.ws3_c00063{word-spacing:-4.800000px;}
.ws2_c00063{word-spacing:0.000000px;}
._0_c00063{margin-left:-480.336000px;}
._8_c00063{margin-left:-12.360000px;}
._7_c00063{margin-left:-10.800000px;}
._4_c00063{margin-left:-9.000000px;}
._2_c00063{margin-left:-6.264000px;}
._1_c00063{margin-left:-4.200000px;}
._5_c00063{margin-left:-3.000000px;}
._3_c00063{margin-left:-1.440000px;}
._6_c00063{width:4.800000px;}
.fc3_c00063{color:rgb(255,255,255);}
.fc2_c00063{color:rgb(233,83,14);}
.fc1_c00063{color:rgb(232,86,17);}
.fc0_c00063{color:rgb(60,60,59);}
.fs1_c00063{font-size:42.000000px;}
.fs0_c00063{font-size:60.000000px;}
.fs3_c00063{font-size:72.000000px;}
.fs4_c00063{font-size:120.000000px;}
.fs2_c00063{font-size:360.000000px;}
.y0_c00063{bottom:0.000000px;}
.y1_c00063{bottom:41.250000px;}
.y7_c00063{bottom:643.322700px;}
.y6_c00063{bottom:664.328700px;}
.y5_c00063{bottom:685.334700px;}
.y4_c00063{bottom:706.340700px;}
.y3_c00063{bottom:752.834700px;}
.yb_c00063{bottom:916.334700px;}
.ya_c00063{bottom:946.334700px;}
.y9_c00063{bottom:976.334700px;}
.y8_c00063{bottom:1006.334700px;}
.y2_c00063{bottom:1093.526700px;}
.h2_c00063{height:54.000000px;}
.h5_c00063{height:64.800000px;}
.h4_c00063{height:66.456000px;}
.h6_c00063{height:112.200000px;}
.h3_c00063{height:324.000000px;}
.h0_c00063{height:1262.835000px;}
.h1_c00063{height:1263.000000px;}
.w0_c00063{width:892.914000px;}
.w1_c00063{width:893.250000px;}
.x0_c00063{left:0.000000px;}
.x2_c00063{left:81.290250px;}
.x3_c00063{left:82.393650px;}
.x5_c00063{left:112.287450px;}
.x4_c00063{left:127.393650px;}
.x1_c00063{left:793.238550px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls2_c00063{letter-spacing:0.000000pt;}
.ls0_c00063{letter-spacing:0.768000pt;}
.ls1_c00063{letter-spacing:1.066667pt;}
.ws1_c00063{word-spacing:-11.648000pt;}
.ws0_c00063{word-spacing:-9.066667pt;}
.ws3_c00063{word-spacing:-4.266667pt;}
.ws2_c00063{word-spacing:0.000000pt;}
._0_c00063{margin-left:-426.965333pt;}
._8_c00063{margin-left:-10.986667pt;}
._7_c00063{margin-left:-9.600000pt;}
._4_c00063{margin-left:-8.000000pt;}
._2_c00063{margin-left:-5.568000pt;}
._1_c00063{margin-left:-3.733333pt;}
._5_c00063{margin-left:-2.666667pt;}
._3_c00063{margin-left:-1.280000pt;}
._6_c00063{width:4.266667pt;}
.fs1_c00063{font-size:37.333333pt;}
.fs0_c00063{font-size:53.333333pt;}
.fs3_c00063{font-size:64.000000pt;}
.fs4_c00063{font-size:106.666667pt;}
.fs2_c00063{font-size:320.000000pt;}
.y0_c00063{bottom:0.000000pt;}
.y1_c00063{bottom:36.666667pt;}
.y7_c00063{bottom:571.842400pt;}
.y6_c00063{bottom:590.514400pt;}
.y5_c00063{bottom:609.186400pt;}
.y4_c00063{bottom:627.858400pt;}
.y3_c00063{bottom:669.186400pt;}
.yb_c00063{bottom:814.519733pt;}
.ya_c00063{bottom:841.186400pt;}
.y9_c00063{bottom:867.853067pt;}
.y8_c00063{bottom:894.519733pt;}
.y2_c00063{bottom:972.023733pt;}
.h2_c00063{height:48.000000pt;}
.h5_c00063{height:57.600000pt;}
.h4_c00063{height:59.072000pt;}
.h6_c00063{height:99.733333pt;}
.h3_c00063{height:288.000000pt;}
.h0_c00063{height:1122.520000pt;}
.h1_c00063{height:1122.666667pt;}
.w0_c00063{width:793.701333pt;}
.w1_c00063{width:794.000000pt;}
.x0_c00063{left:0.000000pt;}
.x2_c00063{left:72.258000pt;}
.x3_c00063{left:73.238800pt;}
.x5_c00063{left:99.811067pt;}
.x4_c00063{left:113.238800pt;}
.x1_c00063{left:705.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00064;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.161000;font-style: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);}
.m1_c00064{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls4_c00064{letter-spacing:-0.540000px;}
.ls3_c00064{letter-spacing:0.000000px;}
.ls0_c00064{letter-spacing:0.720000px;}
.ls2_c00064{letter-spacing:1.500000px;}
.ls1_c00064{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00064{word-spacing:-21.060000px;}
.ws0_c00064{word-spacing:-10.200000px;}
.ws10_c00064{word-spacing:-3.240000px;}
.ws7_c00064{word-spacing:-2.952000px;}
.wsf_c00064{word-spacing:-1.512000px;}
.ws18_c00064{word-spacing:-1.500000px;}
.ws17_c00064{word-spacing:-0.144000px;}
.ws2_c00064{word-spacing:0.000000px;}
.ws8_c00064{word-spacing:0.072000px;}
.ws12_c00064{word-spacing:0.936000px;}
.ws6_c00064{word-spacing:1.152000px;}
.ws9_c00064{word-spacing:1.872000px;}
.ws14_c00064{word-spacing:2.160000px;}
.ws16_c00064{word-spacing:3.024000px;}
.ws11_c00064{word-spacing:3.168000px;}
.wse_c00064{word-spacing:3.744000px;}
.wsd_c00064{word-spacing:3.888000px;}
.wsc_c00064{word-spacing:4.464000px;}
.ws13_c00064{word-spacing:4.680000px;}
.wsb_c00064{word-spacing:7.128000px;}
.wsa_c00064{word-spacing:7.272000px;}
.ws15_c00064{word-spacing:7.992000px;}
.ws4_c00064{word-spacing:12.528000px;}
.ws3_c00064{word-spacing:16.992000px;}
.ws5_c00064{word-spacing:24.192000px;}
._0_c00064{margin-left:-480.335400px;}
._7_c00064{margin-left:-6.566400px;}
._5_c00064{margin-left:-5.515200px;}
._1_c00064{margin-left:-4.200000px;}
._3_c00064{margin-left:-2.656800px;}
._2_c00064{margin-left:-1.440000px;}
._4_c00064{width:1.008000px;}
._8_c00064{width:4.449600px;}
._6_c00064{width:5.875200px;}
.fc3_c00064{color:rgb(32,32,32);}
.fc2_c00064{color:rgb(233,83,14);}
.fc1_c00064{color:rgb(232,86,17);}
.fc4_c00064{color:rgb(157,157,156);}
.fc0_c00064{color:rgb(60,60,59);}
.fs1_c00064{font-size:42.000000px;}
.fs0_c00064{font-size:60.000000px;}
.fs4_c00064{font-size:66.000000px;}
.fs3_c00064{font-size:72.000000px;}
.fs2_c00064{font-size:108.000000px;}
.y0_c00064{bottom:0.000000px;}
.y1_c00064{bottom:41.250000px;}
.y1c_c00064{bottom:166.196700px;}
.y1b_c00064{bottom:196.202700px;}
.y1a_c00064{bottom:226.208700px;}
.y19_c00064{bottom:256.214700px;}
.y18_c00064{bottom:286.220700px;}
.y17_c00064{bottom:316.226700px;}
.y16_c00064{bottom:346.232700px;}
.y15_c00064{bottom:376.238700px;}
.y14_c00064{bottom:406.244700px;}
.y13_c00064{bottom:436.250700px;}
.y12_c00064{bottom:466.256700px;}
.y11_c00064{bottom:496.262700px;}
.y10_c00064{bottom:526.268700px;}
.yf_c00064{bottom:556.274700px;}
.ye_c00064{bottom:586.280700px;}
.yd_c00064{bottom:616.286700px;}
.yc_c00064{bottom:646.292700px;}
.yb_c00064{bottom:676.298700px;}
.ya_c00064{bottom:706.304700px;}
.y9_c00064{bottom:736.310700px;}
.y8_c00064{bottom:766.316700px;}
.y22_c00064{bottom:795.298350px;}
.y7_c00064{bottom:796.322700px;}
.y21_c00064{bottom:825.298350px;}
.y20_c00064{bottom:855.298350px;}
.y6_c00064{bottom:856.316700px;}
.y1f_c00064{bottom:885.298350px;}
.y5_c00064{bottom:886.322700px;}
.y1e_c00064{bottom:915.298350px;}
.y4_c00064{bottom:916.328700px;}
.y1d_c00064{bottom:945.298350px;}
.y3_c00064{bottom:946.334700px;}
.y2_c00064{bottom:1006.334700px;}
.h5_c00064{height:50.292000px;}
.h2_c00064{height:54.000000px;}
.h4_c00064{height:64.800000px;}
.h3_c00064{height:100.980000px;}
.h0_c00064{height:1262.835000px;}
.h1_c00064{height:1263.000000px;}
.w0_c00064{width:892.914000px;}
.w1_c00064{width:893.250000px;}
.x0_c00064{left:0.000000px;}
.x2_c00064{left:82.500000px;}
.x3_c00064{left:106.500000px;}
.x4_c00064{left:675.611100px;}
.x1_c00064{left:794.288400px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls4_c00064{letter-spacing:-0.480000pt;}
.ls3_c00064{letter-spacing:0.000000pt;}
.ls0_c00064{letter-spacing:0.640000pt;}
.ls2_c00064{letter-spacing:1.333333pt;}
.ls1_c00064{letter-spacing:1.466667pt;}
.ws1_c00064{word-spacing:-18.720000pt;}
.ws0_c00064{word-spacing:-9.066667pt;}
.ws10_c00064{word-spacing:-2.880000pt;}
.ws7_c00064{word-spacing:-2.624000pt;}
.wsf_c00064{word-spacing:-1.344000pt;}
.ws18_c00064{word-spacing:-1.333333pt;}
.ws17_c00064{word-spacing:-0.128000pt;}
.ws2_c00064{word-spacing:0.000000pt;}
.ws8_c00064{word-spacing:0.064000pt;}
.ws12_c00064{word-spacing:0.832000pt;}
.ws6_c00064{word-spacing:1.024000pt;}
.ws9_c00064{word-spacing:1.664000pt;}
.ws14_c00064{word-spacing:1.920000pt;}
.ws16_c00064{word-spacing:2.688000pt;}
.ws11_c00064{word-spacing:2.816000pt;}
.wse_c00064{word-spacing:3.328000pt;}
.wsd_c00064{word-spacing:3.456000pt;}
.wsc_c00064{word-spacing:3.968000pt;}
.ws13_c00064{word-spacing:4.160000pt;}
.wsb_c00064{word-spacing:6.336000pt;}
.wsa_c00064{word-spacing:6.464000pt;}
.ws15_c00064{word-spacing:7.104000pt;}
.ws4_c00064{word-spacing:11.136000pt;}
.ws3_c00064{word-spacing:15.104000pt;}
.ws5_c00064{word-spacing:21.504000pt;}
._0_c00064{margin-left:-426.964800pt;}
._7_c00064{margin-left:-5.836800pt;}
._5_c00064{margin-left:-4.902400pt;}
._1_c00064{margin-left:-3.733333pt;}
._3_c00064{margin-left:-2.361600pt;}
._2_c00064{margin-left:-1.280000pt;}
._4_c00064{width:0.896000pt;}
._8_c00064{width:3.955200pt;}
._6_c00064{width:5.222400pt;}
.fs1_c00064{font-size:37.333333pt;}
.fs0_c00064{font-size:53.333333pt;}
.fs4_c00064{font-size:58.666667pt;}
.fs3_c00064{font-size:64.000000pt;}
.fs2_c00064{font-size:96.000000pt;}
.y0_c00064{bottom:0.000000pt;}
.y1_c00064{bottom:36.666667pt;}
.y1c_c00064{bottom:147.730400pt;}
.y1b_c00064{bottom:174.402400pt;}
.y1a_c00064{bottom:201.074400pt;}
.y19_c00064{bottom:227.746400pt;}
.y18_c00064{bottom:254.418400pt;}
.y17_c00064{bottom:281.090400pt;}
.y16_c00064{bottom:307.762400pt;}
.y15_c00064{bottom:334.434400pt;}
.y14_c00064{bottom:361.106400pt;}
.y13_c00064{bottom:387.778400pt;}
.y12_c00064{bottom:414.450400pt;}
.y11_c00064{bottom:441.122400pt;}
.y10_c00064{bottom:467.794400pt;}
.yf_c00064{bottom:494.466400pt;}
.ye_c00064{bottom:521.138400pt;}
.yd_c00064{bottom:547.810400pt;}
.yc_c00064{bottom:574.482400pt;}
.yb_c00064{bottom:601.154400pt;}
.ya_c00064{bottom:627.826400pt;}
.y9_c00064{bottom:654.498400pt;}
.y8_c00064{bottom:681.170400pt;}
.y22_c00064{bottom:706.931867pt;}
.y7_c00064{bottom:707.842400pt;}
.y21_c00064{bottom:733.598533pt;}
.y20_c00064{bottom:760.265200pt;}
.y6_c00064{bottom:761.170400pt;}
.y1f_c00064{bottom:786.931867pt;}
.y5_c00064{bottom:787.842400pt;}
.y1e_c00064{bottom:813.598533pt;}
.y4_c00064{bottom:814.514400pt;}
.y1d_c00064{bottom:840.265200pt;}
.y3_c00064{bottom:841.186400pt;}
.y2_c00064{bottom:894.519733pt;}
.h5_c00064{height:44.704000pt;}
.h2_c00064{height:48.000000pt;}
.h4_c00064{height:57.600000pt;}
.h3_c00064{height:89.760000pt;}
.h0_c00064{height:1122.520000pt;}
.h1_c00064{height:1122.666667pt;}
.w0_c00064{width:793.701333pt;}
.w1_c00064{width:794.000000pt;}
.x0_c00064{left:0.000000pt;}
.x2_c00064{left:73.333333pt;}
.x3_c00064{left:94.666667pt;}
.x4_c00064{left:600.543200pt;}
.x1_c00064{left:706.034133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09baf8cd2945c6e6d5da27e7.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.160000;font-style:normal;font-weight:normal;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_1381b2c058717f8a5d9071ec.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.199000;font-style:normal;font-weight:normal;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_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.024000;font-style:normal;font-weight:normal;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_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls4_c00065{letter-spacing:-0.324000px;}
.ls3_c00065{letter-spacing:0.000000px;}
.ls0_c00065{letter-spacing:0.720000px;}
.ls2_c00065{letter-spacing:1.500000px;}
.ls1_c00065{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00065{word-spacing:-21.276000px;}
.ws2_c00065{word-spacing:-14.850000px;}
.ws0_c00065{word-spacing:-10.200000px;}
.ws9_c00065{word-spacing:-2.160000px;}
.wsb_c00065{word-spacing:-1.440000px;}
.wsf_c00065{word-spacing:-0.648000px;}
.ws3_c00065{word-spacing:0.000000px;}
.ws11_c00065{word-spacing:1.872000px;}
.wsd_c00065{word-spacing:2.016000px;}
.wsc_c00065{word-spacing:2.232000px;}
.wse_c00065{word-spacing:2.304000px;}
.ws12_c00065{word-spacing:2.376000px;}
.ws7_c00065{word-spacing:2.448000px;}
.wsa_c00065{word-spacing:2.808000px;}
.ws17_c00065{word-spacing:3.168000px;}
.ws8_c00065{word-spacing:3.672000px;}
.ws6_c00065{word-spacing:4.104000px;}
.ws10_c00065{word-spacing:4.536000px;}
.ws18_c00065{word-spacing:4.968000px;}
.ws16_c00065{word-spacing:5.256000px;}
.ws14_c00065{word-spacing:9.936000px;}
.ws19_c00065{word-spacing:12.024000px;}
.ws13_c00065{word-spacing:12.960000px;}
.ws15_c00065{word-spacing:14.760000px;}
.ws4_c00065{word-spacing:15.120000px;}
.ws5_c00065{word-spacing:16.488000px;}
._0_c00065{margin-left:-480.336000px;}
._5_c00065{margin-left:-7.221600px;}
._4_c00065{margin-left:-5.760000px;}
._1_c00065{margin-left:-4.200000px;}
._3_c00065{margin-left:-2.160000px;}
._2_c00065{margin-left:-1.134000px;}
.fc3_c00065{color:rgb(32,32,32);}
.fc2_c00065{color:rgb(233,83,14);}
.fc1_c00065{color:rgb(232,86,17);}
.fc4_c00065{color:rgb(157,157,156);}
.fc0_c00065{color:rgb(60,60,59);}
.fs1_c00065{font-size:42.000000px;}
.fs0_c00065{font-size:60.000000px;}
.fs4_c00065{font-size:66.000000px;}
.fs3_c00065{font-size:72.000000px;}
.fs2_c00065{font-size:108.000000px;}
.y0_c00065{bottom:0.000000px;}
.y1_c00065{bottom:41.250000px;}
.y1a_c00065{bottom:256.196700px;}
.y19_c00065{bottom:286.202700px;}
.y18_c00065{bottom:316.208700px;}
.y17_c00065{bottom:346.214700px;}
.y16_c00065{bottom:376.220700px;}
.y15_c00065{bottom:406.226700px;}
.y14_c00065{bottom:436.232700px;}
.y13_c00065{bottom:466.238700px;}
.y12_c00065{bottom:496.244700px;}
.y11_c00065{bottom:526.250700px;}
.y10_c00065{bottom:556.256700px;}
.yf_c00065{bottom:586.262700px;}
.ye_c00065{bottom:616.268700px;}
.yd_c00065{bottom:646.274700px;}
.yc_c00065{bottom:676.280700px;}
.yb_c00065{bottom:706.286700px;}
.ya_c00065{bottom:736.292700px;}
.y9_c00065{bottom:766.298700px;}
.y8_c00065{bottom:796.304700px;}
.y1f_c00065{bottom:825.298350px;}
.y7_c00065{bottom:826.310700px;}
.y1e_c00065{bottom:855.298350px;}
.y6_c00065{bottom:856.316700px;}
.y1d_c00065{bottom:885.298350px;}
.y5_c00065{bottom:886.322700px;}
.y1c_c00065{bottom:915.298350px;}
.y4_c00065{bottom:916.328700px;}
.y1b_c00065{bottom:945.298350px;}
.y3_c00065{bottom:946.334700px;}
.y2_c00065{bottom:1006.334700px;}
.h5_c00065{height:50.292000px;}
.h2_c00065{height:54.000000px;}
.h4_c00065{height:64.800000px;}
.h3_c00065{height:100.980000px;}
.h0_c00065{height:1262.835000px;}
.h1_c00065{height:1263.000000px;}
.w0_c00065{width:892.914000px;}
.w1_c00065{width:893.250000px;}
.x0_c00065{left:0.000000px;}
.x2_c00065{left:82.500000px;}
.x3_c00065{left:106.500000px;}
.x4_c00065{left:675.611100px;}
.x1_c00065{left:793.163550px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls4_c00065{letter-spacing:-0.288000pt;}
.ls3_c00065{letter-spacing:0.000000pt;}
.ls0_c00065{letter-spacing:0.640000pt;}
.ls2_c00065{letter-spacing:1.333333pt;}
.ls1_c00065{letter-spacing:1.466667pt;}
.ws1_c00065{word-spacing:-18.912000pt;}
.ws2_c00065{word-spacing:-13.200000pt;}
.ws0_c00065{word-spacing:-9.066667pt;}
.ws9_c00065{word-spacing:-1.920000pt;}
.wsb_c00065{word-spacing:-1.280000pt;}
.wsf_c00065{word-spacing:-0.576000pt;}
.ws3_c00065{word-spacing:0.000000pt;}
.ws11_c00065{word-spacing:1.664000pt;}
.wsd_c00065{word-spacing:1.792000pt;}
.wsc_c00065{word-spacing:1.984000pt;}
.wse_c00065{word-spacing:2.048000pt;}
.ws12_c00065{word-spacing:2.112000pt;}
.ws7_c00065{word-spacing:2.176000pt;}
.wsa_c00065{word-spacing:2.496000pt;}
.ws17_c00065{word-spacing:2.816000pt;}
.ws8_c00065{word-spacing:3.264000pt;}
.ws6_c00065{word-spacing:3.648000pt;}
.ws10_c00065{word-spacing:4.032000pt;}
.ws18_c00065{word-spacing:4.416000pt;}
.ws16_c00065{word-spacing:4.672000pt;}
.ws14_c00065{word-spacing:8.832000pt;}
.ws19_c00065{word-spacing:10.688000pt;}
.ws13_c00065{word-spacing:11.520000pt;}
.ws15_c00065{word-spacing:13.120000pt;}
.ws4_c00065{word-spacing:13.440000pt;}
.ws5_c00065{word-spacing:14.656000pt;}
._0_c00065{margin-left:-426.965333pt;}
._5_c00065{margin-left:-6.419200pt;}
._4_c00065{margin-left:-5.120000pt;}
._1_c00065{margin-left:-3.733333pt;}
._3_c00065{margin-left:-1.920000pt;}
._2_c00065{margin-left:-1.008000pt;}
.fs1_c00065{font-size:37.333333pt;}
.fs0_c00065{font-size:53.333333pt;}
.fs4_c00065{font-size:58.666667pt;}
.fs3_c00065{font-size:64.000000pt;}
.fs2_c00065{font-size:96.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y1_c00065{bottom:36.666667pt;}
.y1a_c00065{bottom:227.730400pt;}
.y19_c00065{bottom:254.402400pt;}
.y18_c00065{bottom:281.074400pt;}
.y17_c00065{bottom:307.746400pt;}
.y16_c00065{bottom:334.418400pt;}
.y15_c00065{bottom:361.090400pt;}
.y14_c00065{bottom:387.762400pt;}
.y13_c00065{bottom:414.434400pt;}
.y12_c00065{bottom:441.106400pt;}
.y11_c00065{bottom:467.778400pt;}
.y10_c00065{bottom:494.450400pt;}
.yf_c00065{bottom:521.122400pt;}
.ye_c00065{bottom:547.794400pt;}
.yd_c00065{bottom:574.466400pt;}
.yc_c00065{bottom:601.138400pt;}
.yb_c00065{bottom:627.810400pt;}
.ya_c00065{bottom:654.482400pt;}
.y9_c00065{bottom:681.154400pt;}
.y8_c00065{bottom:707.826400pt;}
.y1f_c00065{bottom:733.598533pt;}
.y7_c00065{bottom:734.498400pt;}
.y1e_c00065{bottom:760.265200pt;}
.y6_c00065{bottom:761.170400pt;}
.y1d_c00065{bottom:786.931867pt;}
.y5_c00065{bottom:787.842400pt;}
.y1c_c00065{bottom:813.598533pt;}
.y4_c00065{bottom:814.514400pt;}
.y1b_c00065{bottom:840.265200pt;}
.y3_c00065{bottom:841.186400pt;}
.y2_c00065{bottom:894.519733pt;}
.h5_c00065{height:44.704000pt;}
.h2_c00065{height:48.000000pt;}
.h4_c00065{height:57.600000pt;}
.h3_c00065{height:89.760000pt;}
.h0_c00065{height:1122.520000pt;}
.h1_c00065{height:1122.666667pt;}
.w0_c00065{width:793.701333pt;}
.w1_c00065{width:794.000000pt;}
.x0_c00065{left:0.000000pt;}
.x2_c00065{left:73.333333pt;}
.x3_c00065{left:94.666667pt;}
.x4_c00065{left:600.543200pt;}
.x1_c00065{left:705.034267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.160000;font-style:normal;font-weight:normal;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_3c0d45cbe4f7f5103a0d319a.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.199000;font-style:normal;font-weight:normal;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_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.161000;font-style:normal;font-weight:normal;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_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.185000;font-style:normal;font-weight:normal;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_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls2_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:0.864000px;}
.ls1_c00066{letter-spacing:1.200000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00066{word-spacing:-13.104000px;}
.ws5_c00066{word-spacing:-12.384000px;}
.wsa_c00066{word-spacing:-11.736000px;}
.ws0_c00066{word-spacing:-10.200000px;}
.ws8_c00066{word-spacing:-8.064000px;}
.ws4_c00066{word-spacing:-7.128000px;}
.ws3_c00066{word-spacing:-6.264000px;}
.ws9_c00066{word-spacing:-5.904000px;}
.wsb_c00066{word-spacing:-4.200000px;}
.ws7_c00066{word-spacing:-3.816000px;}
.ws6_c00066{word-spacing:-1.728000px;}
.ws2_c00066{word-spacing:0.000000px;}
._0_c00066{margin-left:-480.336000px;}
._d_c00066{margin-left:-16.824000px;}
._4_c00066{margin-left:-12.384000px;}
._b_c00066{margin-left:-11.208000px;}
._7_c00066{margin-left:-8.208000px;}
._5_c00066{margin-left:-6.480000px;}
._1_c00066{margin-left:-4.200000px;}
._8_c00066{margin-left:-2.592000px;}
._3_c00066{margin-left:-1.440000px;}
._9_c00066{width:1.152000px;}
._c_c00066{width:4.200000px;}
._2_c00066{width:6.264000px;}
._a_c00066{width:8.064000px;}
._6_c00066{width:12.384000px;}
.fc3_c00066{color:rgb(255,255,255);}
.fc2_c00066{color:rgb(233,83,14);}
.fc1_c00066{color:rgb(232,86,17);}
.fc0_c00066{color:rgb(60,60,59);}
.fs1_c00066{font-size:42.000000px;}
.fs0_c00066{font-size:60.000000px;}
.fs3_c00066{font-size:72.000000px;}
.fs4_c00066{font-size:120.000000px;}
.fs2_c00066{font-size:360.000000px;}
.y0_c00066{bottom:0.000000px;}
.y1_c00066{bottom:41.250000px;}
.y17_c00066{bottom:163.226700px;}
.y16_c00066{bottom:184.232700px;}
.y15_c00066{bottom:205.238700px;}
.y14_c00066{bottom:226.244700px;}
.y13_c00066{bottom:283.250700px;}
.y12_c00066{bottom:304.256700px;}
.y11_c00066{bottom:325.262700px;}
.y10_c00066{bottom:346.268700px;}
.yf_c00066{bottom:403.274700px;}
.ye_c00066{bottom:424.280700px;}
.yd_c00066{bottom:445.286700px;}
.yc_c00066{bottom:466.292700px;}
.yb_c00066{bottom:523.298700px;}
.ya_c00066{bottom:544.304700px;}
.y9_c00066{bottom:565.310700px;}
.y8_c00066{bottom:586.316700px;}
.y7_c00066{bottom:643.322700px;}
.y6_c00066{bottom:664.328700px;}
.y5_c00066{bottom:685.334700px;}
.y4_c00066{bottom:706.340700px;}
.y3_c00066{bottom:752.834700px;}
.y1a_c00066{bottom:946.334700px;}
.y19_c00066{bottom:976.334700px;}
.y18_c00066{bottom:1006.334700px;}
.y2_c00066{bottom:1093.526700px;}
.h2_c00066{height:54.000000px;}
.h5_c00066{height:64.800000px;}
.h4_c00066{height:66.456000px;}
.h6_c00066{height:112.200000px;}
.h3_c00066{height:324.000000px;}
.h0_c00066{height:1262.835000px;}
.h1_c00066{height:1263.000000px;}
.w0_c00066{width:892.914000px;}
.w1_c00066{width:893.250000px;}
.x0_c00066{left:0.000000px;}
.x2_c00066{left:81.290250px;}
.x3_c00066{left:82.393650px;}
.x5_c00066{left:112.287450px;}
.x4_c00066{left:127.393650px;}
.x1_c00066{left:795.263550px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls2_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:0.768000pt;}
.ls1_c00066{letter-spacing:1.066667pt;}
.ws1_c00066{word-spacing:-11.648000pt;}
.ws5_c00066{word-spacing:-11.008000pt;}
.wsa_c00066{word-spacing:-10.432000pt;}
.ws0_c00066{word-spacing:-9.066667pt;}
.ws8_c00066{word-spacing:-7.168000pt;}
.ws4_c00066{word-spacing:-6.336000pt;}
.ws3_c00066{word-spacing:-5.568000pt;}
.ws9_c00066{word-spacing:-5.248000pt;}
.wsb_c00066{word-spacing:-3.733333pt;}
.ws7_c00066{word-spacing:-3.392000pt;}
.ws6_c00066{word-spacing:-1.536000pt;}
.ws2_c00066{word-spacing:0.000000pt;}
._0_c00066{margin-left:-426.965333pt;}
._d_c00066{margin-left:-14.954667pt;}
._4_c00066{margin-left:-11.008000pt;}
._b_c00066{margin-left:-9.962667pt;}
._7_c00066{margin-left:-7.296000pt;}
._5_c00066{margin-left:-5.760000pt;}
._1_c00066{margin-left:-3.733333pt;}
._8_c00066{margin-left:-2.304000pt;}
._3_c00066{margin-left:-1.280000pt;}
._9_c00066{width:1.024000pt;}
._c_c00066{width:3.733333pt;}
._2_c00066{width:5.568000pt;}
._a_c00066{width:7.168000pt;}
._6_c00066{width:11.008000pt;}
.fs1_c00066{font-size:37.333333pt;}
.fs0_c00066{font-size:53.333333pt;}
.fs3_c00066{font-size:64.000000pt;}
.fs4_c00066{font-size:106.666667pt;}
.fs2_c00066{font-size:320.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y1_c00066{bottom:36.666667pt;}
.y17_c00066{bottom:145.090400pt;}
.y16_c00066{bottom:163.762400pt;}
.y15_c00066{bottom:182.434400pt;}
.y14_c00066{bottom:201.106400pt;}
.y13_c00066{bottom:251.778400pt;}
.y12_c00066{bottom:270.450400pt;}
.y11_c00066{bottom:289.122400pt;}
.y10_c00066{bottom:307.794400pt;}
.yf_c00066{bottom:358.466400pt;}
.ye_c00066{bottom:377.138400pt;}
.yd_c00066{bottom:395.810400pt;}
.yc_c00066{bottom:414.482400pt;}
.yb_c00066{bottom:465.154400pt;}
.ya_c00066{bottom:483.826400pt;}
.y9_c00066{bottom:502.498400pt;}
.y8_c00066{bottom:521.170400pt;}
.y7_c00066{bottom:571.842400pt;}
.y6_c00066{bottom:590.514400pt;}
.y5_c00066{bottom:609.186400pt;}
.y4_c00066{bottom:627.858400pt;}
.y3_c00066{bottom:669.186400pt;}
.y1a_c00066{bottom:841.186400pt;}
.y19_c00066{bottom:867.853067pt;}
.y18_c00066{bottom:894.519733pt;}
.y2_c00066{bottom:972.023733pt;}
.h2_c00066{height:48.000000pt;}
.h5_c00066{height:57.600000pt;}
.h4_c00066{height:59.072000pt;}
.h6_c00066{height:99.733333pt;}
.h3_c00066{height:288.000000pt;}
.h0_c00066{height:1122.520000pt;}
.h1_c00066{height:1122.666667pt;}
.w0_c00066{width:793.701333pt;}
.w1_c00066{width:794.000000pt;}
.x0_c00066{left:0.000000pt;}
.x2_c00066{left:72.258000pt;}
.x3_c00066{left:73.238800pt;}
.x5_c00066{left:99.811067pt;}
.x4_c00066{left:113.238800pt;}
.x1_c00066{left:706.900933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.160000;font-style:normal;font-weight:normal;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_9b83ed3c429fb8b0420ec824.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00067;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.161000;font-style: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);}
.m1_c00067{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls5_c00067{letter-spacing:-0.540000px;}
.ls4_c00067{letter-spacing:0.000000px;}
.ls0_c00067{letter-spacing:0.720000px;}
.ls1_c00067{letter-spacing:0.840000px;}
.ls3_c00067{letter-spacing:1.500000px;}
.ls2_c00067{letter-spacing:1.650000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00067{word-spacing:-21.060000px;}
.ws2_c00067{word-spacing:-17.640000px;}
.ws0_c00067{word-spacing:-10.200000px;}
.ws5_c00067{word-spacing:-1.512000px;}
.ws14_c00067{word-spacing:-1.500000px;}
.wsc_c00067{word-spacing:-1.080000px;}
.ws4_c00067{word-spacing:-0.840000px;}
.ws6_c00067{word-spacing:-0.432000px;}
.wsd_c00067{word-spacing:-0.288000px;}
.ws3_c00067{word-spacing:0.000000px;}
.wsa_c00067{word-spacing:0.648000px;}
.wse_c00067{word-spacing:2.808000px;}
.wsf_c00067{word-spacing:3.024000px;}
.ws11_c00067{word-spacing:4.104000px;}
.ws10_c00067{word-spacing:6.120000px;}
.wsb_c00067{word-spacing:6.624000px;}
.ws7_c00067{word-spacing:6.840000px;}
.ws12_c00067{word-spacing:12.888000px;}
.ws8_c00067{word-spacing:13.608000px;}
.ws9_c00067{word-spacing:13.896000px;}
.ws13_c00067{word-spacing:14.112000px;}
._0_c00067{margin-left:-480.336000px;}
._1_c00067{margin-left:-4.200000px;}
._3_c00067{margin-left:-2.167200px;}
._2_c00067{margin-left:-1.080000px;}
.fc3_c00067{color:rgb(32,32,32);}
.fc2_c00067{color:rgb(233,83,14);}
.fc1_c00067{color:rgb(232,86,17);}
.fc4_c00067{color:rgb(157,157,156);}
.fc0_c00067{color:rgb(60,60,59);}
.fs1_c00067{font-size:42.000000px;}
.fs0_c00067{font-size:60.000000px;}
.fs5_c00067{font-size:66.000000px;}
.fs4_c00067{font-size:72.000000px;}
.fs3_c00067{font-size:84.000000px;}
.fs2_c00067{font-size:108.000000px;}
.y0_c00067{bottom:0.000000px;}
.y1_c00067{bottom:41.250000px;}
.y15_c00067{bottom:256.328700px;}
.y14_c00067{bottom:286.334700px;}
.y13_c00067{bottom:346.334700px;}
.y12_c00067{bottom:436.250700px;}
.y11_c00067{bottom:466.256700px;}
.y10_c00067{bottom:496.262700px;}
.yf_c00067{bottom:526.268700px;}
.ye_c00067{bottom:556.274700px;}
.yd_c00067{bottom:586.280700px;}
.yc_c00067{bottom:616.286700px;}
.yb_c00067{bottom:646.292700px;}
.ya_c00067{bottom:676.298700px;}
.y9_c00067{bottom:706.304700px;}
.y8_c00067{bottom:736.310700px;}
.y7_c00067{bottom:766.316700px;}
.y19_c00067{bottom:766.334700px;}
.y6_c00067{bottom:796.322700px;}
.y18_c00067{bottom:796.334700px;}
.y5_c00067{bottom:826.328700px;}
.y17_c00067{bottom:826.334700px;}
.y4_c00067{bottom:856.334700px;}
.y16_c00067{bottom:856.561950px;}
.y3_c00067{bottom:916.334700px;}
.y2_c00067{bottom:1006.334700px;}
.h7_c00067{height:50.292000px;}
.h2_c00067{height:54.000000px;}
.h6_c00067{height:64.800000px;}
.h5_c00067{height:67.320000px;}
.h4_c00067{height:78.540000px;}
.h3_c00067{height:100.980000px;}
.h0_c00067{height:1262.835000px;}
.h1_c00067{height:1263.000000px;}
.w0_c00067{width:892.914000px;}
.w1_c00067{width:893.250000px;}
.x0_c00067{left:0.000000px;}
.x2_c00067{left:82.500000px;}
.x3_c00067{left:90.000000px;}
.x4_c00067{left:106.500000px;}
.x5_c00067{left:675.611100px;}
.x1_c00067{left:793.238550px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls5_c00067{letter-spacing:-0.480000pt;}
.ls4_c00067{letter-spacing:0.000000pt;}
.ls0_c00067{letter-spacing:0.640000pt;}
.ls1_c00067{letter-spacing:0.746667pt;}
.ls3_c00067{letter-spacing:1.333333pt;}
.ls2_c00067{letter-spacing:1.466667pt;}
.ws1_c00067{word-spacing:-18.720000pt;}
.ws2_c00067{word-spacing:-15.680000pt;}
.ws0_c00067{word-spacing:-9.066667pt;}
.ws5_c00067{word-spacing:-1.344000pt;}
.ws14_c00067{word-spacing:-1.333333pt;}
.wsc_c00067{word-spacing:-0.960000pt;}
.ws4_c00067{word-spacing:-0.746667pt;}
.ws6_c00067{word-spacing:-0.384000pt;}
.wsd_c00067{word-spacing:-0.256000pt;}
.ws3_c00067{word-spacing:0.000000pt;}
.wsa_c00067{word-spacing:0.576000pt;}
.wse_c00067{word-spacing:2.496000pt;}
.wsf_c00067{word-spacing:2.688000pt;}
.ws11_c00067{word-spacing:3.648000pt;}
.ws10_c00067{word-spacing:5.440000pt;}
.wsb_c00067{word-spacing:5.888000pt;}
.ws7_c00067{word-spacing:6.080000pt;}
.ws12_c00067{word-spacing:11.456000pt;}
.ws8_c00067{word-spacing:12.096000pt;}
.ws9_c00067{word-spacing:12.352000pt;}
.ws13_c00067{word-spacing:12.544000pt;}
._0_c00067{margin-left:-426.965333pt;}
._1_c00067{margin-left:-3.733333pt;}
._3_c00067{margin-left:-1.926400pt;}
._2_c00067{margin-left:-0.960000pt;}
.fs1_c00067{font-size:37.333333pt;}
.fs0_c00067{font-size:53.333333pt;}
.fs5_c00067{font-size:58.666667pt;}
.fs4_c00067{font-size:64.000000pt;}
.fs3_c00067{font-size:74.666667pt;}
.fs2_c00067{font-size:96.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y1_c00067{bottom:36.666667pt;}
.y15_c00067{bottom:227.847733pt;}
.y14_c00067{bottom:254.519733pt;}
.y13_c00067{bottom:307.853067pt;}
.y12_c00067{bottom:387.778400pt;}
.y11_c00067{bottom:414.450400pt;}
.y10_c00067{bottom:441.122400pt;}
.yf_c00067{bottom:467.794400pt;}
.ye_c00067{bottom:494.466400pt;}
.yd_c00067{bottom:521.138400pt;}
.yc_c00067{bottom:547.810400pt;}
.yb_c00067{bottom:574.482400pt;}
.ya_c00067{bottom:601.154400pt;}
.y9_c00067{bottom:627.826400pt;}
.y8_c00067{bottom:654.498400pt;}
.y7_c00067{bottom:681.170400pt;}
.y19_c00067{bottom:681.186400pt;}
.y6_c00067{bottom:707.842400pt;}
.y18_c00067{bottom:707.853067pt;}
.y5_c00067{bottom:734.514400pt;}
.y17_c00067{bottom:734.519733pt;}
.y4_c00067{bottom:761.186400pt;}
.y16_c00067{bottom:761.388400pt;}
.y3_c00067{bottom:814.519733pt;}
.y2_c00067{bottom:894.519733pt;}
.h7_c00067{height:44.704000pt;}
.h2_c00067{height:48.000000pt;}
.h6_c00067{height:57.600000pt;}
.h5_c00067{height:59.840000pt;}
.h4_c00067{height:69.813333pt;}
.h3_c00067{height:89.760000pt;}
.h0_c00067{height:1122.520000pt;}
.h1_c00067{height:1122.666667pt;}
.w0_c00067{width:793.701333pt;}
.w1_c00067{width:794.000000pt;}
.x0_c00067{left:0.000000pt;}
.x2_c00067{left:73.333333pt;}
.x3_c00067{left:80.000000pt;}
.x4_c00067{left:94.666667pt;}
.x5_c00067{left:600.543200pt;}
.x1_c00067{left:705.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38491c785aa09bf10238c43d.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.199000;font-style: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);}
.m1_c00068{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls1_c00068{letter-spacing:0.000000px;}
.ls0_c00068{letter-spacing:0.720000px;}
.ls2_c00068{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00068{word-spacing:-0.840000px;}
.wsd_c00068{word-spacing:-0.720000px;}
.ws6_c00068{word-spacing:-0.504000px;}
.ws1_c00068{word-spacing:0.000000px;}
.ws7_c00068{word-spacing:3.528000px;}
.ws9_c00068{word-spacing:3.816000px;}
.wsb_c00068{word-spacing:5.616000px;}
.ws5_c00068{word-spacing:6.408000px;}
.wsa_c00068{word-spacing:11.592000px;}
.ws8_c00068{word-spacing:13.968000px;}
.ws3_c00068{word-spacing:14.328000px;}
.wsc_c00068{word-spacing:15.192000px;}
.ws4_c00068{word-spacing:15.840000px;}
._0_c00068{margin-left:-480.336000px;}
._3_c00068{margin-left:-5.781600px;}
._1_c00068{margin-left:-4.200000px;}
._2_c00068{margin-left:-2.152800px;}
._4_c00068{margin-left:-1.080000px;}
.fc2_c00068{color:rgb(32,32,32);}
.fc1_c00068{color:rgb(232,86,17);}
.fc0_c00068{color:rgb(60,60,59);}
.fs1_c00068{font-size:42.000000px;}
.fs0_c00068{font-size:60.000000px;}
.fs3_c00068{font-size:72.000000px;}
.fs2_c00068{font-size:84.000000px;}
.y0_c00068{bottom:0.000000px;}
.y1_c00068{bottom:41.250000px;}
.y11_c00068{bottom:346.316700px;}
.y10_c00068{bottom:376.322700px;}
.yf_c00068{bottom:406.328700px;}
.ye_c00068{bottom:436.334700px;}
.yd_c00068{bottom:496.334700px;}
.yc_c00068{bottom:586.310700px;}
.yb_c00068{bottom:616.316700px;}
.ya_c00068{bottom:646.322700px;}
.y9_c00068{bottom:676.328700px;}
.y8_c00068{bottom:706.334700px;}
.y7_c00068{bottom:766.334700px;}
.y6_c00068{bottom:856.316700px;}
.y5_c00068{bottom:886.322700px;}
.y4_c00068{bottom:916.328700px;}
.y3_c00068{bottom:946.334700px;}
.y2_c00068{bottom:1006.334700px;}
.h2_c00068{height:54.000000px;}
.h4_c00068{height:64.800000px;}
.h3_c00068{height:78.540000px;}
.h0_c00068{height:1262.835000px;}
.h1_c00068{height:1263.000000px;}
.w0_c00068{width:892.914000px;}
.w1_c00068{width:893.250000px;}
.x0_c00068{left:0.000000px;}
.x2_c00068{left:90.000000px;}
.x3_c00068{left:106.500000px;}
.x1_c00068{left:793.163550px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls1_c00068{letter-spacing:0.000000pt;}
.ls0_c00068{letter-spacing:0.640000pt;}
.ls2_c00068{letter-spacing:0.746667pt;}
.ws0_c00068{word-spacing:-9.066667pt;}
.ws2_c00068{word-spacing:-0.746667pt;}
.wsd_c00068{word-spacing:-0.640000pt;}
.ws6_c00068{word-spacing:-0.448000pt;}
.ws1_c00068{word-spacing:0.000000pt;}
.ws7_c00068{word-spacing:3.136000pt;}
.ws9_c00068{word-spacing:3.392000pt;}
.wsb_c00068{word-spacing:4.992000pt;}
.ws5_c00068{word-spacing:5.696000pt;}
.wsa_c00068{word-spacing:10.304000pt;}
.ws8_c00068{word-spacing:12.416000pt;}
.ws3_c00068{word-spacing:12.736000pt;}
.wsc_c00068{word-spacing:13.504000pt;}
.ws4_c00068{word-spacing:14.080000pt;}
._0_c00068{margin-left:-426.965333pt;}
._3_c00068{margin-left:-5.139200pt;}
._1_c00068{margin-left:-3.733333pt;}
._2_c00068{margin-left:-1.913600pt;}
._4_c00068{margin-left:-0.960000pt;}
.fs1_c00068{font-size:37.333333pt;}
.fs0_c00068{font-size:53.333333pt;}
.fs3_c00068{font-size:64.000000pt;}
.fs2_c00068{font-size:74.666667pt;}
.y0_c00068{bottom:0.000000pt;}
.y1_c00068{bottom:36.666667pt;}
.y11_c00068{bottom:307.837067pt;}
.y10_c00068{bottom:334.509067pt;}
.yf_c00068{bottom:361.181067pt;}
.ye_c00068{bottom:387.853067pt;}
.yd_c00068{bottom:441.186400pt;}
.yc_c00068{bottom:521.165067pt;}
.yb_c00068{bottom:547.837067pt;}
.ya_c00068{bottom:574.509067pt;}
.y9_c00068{bottom:601.181067pt;}
.y8_c00068{bottom:627.853067pt;}
.y7_c00068{bottom:681.186400pt;}
.y6_c00068{bottom:761.170400pt;}
.y5_c00068{bottom:787.842400pt;}
.y4_c00068{bottom:814.514400pt;}
.y3_c00068{bottom:841.186400pt;}
.y2_c00068{bottom:894.519733pt;}
.h2_c00068{height:48.000000pt;}
.h4_c00068{height:57.600000pt;}
.h3_c00068{height:69.813333pt;}
.h0_c00068{height:1122.520000pt;}
.h1_c00068{height:1122.666667pt;}
.w0_c00068{width:793.701333pt;}
.w1_c00068{width:794.000000pt;}
.x0_c00068{left:0.000000pt;}
.x2_c00068{left:80.000000pt;}
.x3_c00068{left:94.666667pt;}
.x1_c00068{left:705.034267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d3858bf47fa96fd79ea398f.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.160000;font-style:normal;font-weight:normal;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_e04a0991b070062a3f74fe43.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00069;src:url('chunks/assets/font_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00069;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls5_c00069{letter-spacing:-0.324000px;}
.ls4_c00069{letter-spacing:0.000000px;}
.ls0_c00069{letter-spacing:0.720000px;}
.ls1_c00069{letter-spacing:0.840000px;}
.ls3_c00069{letter-spacing:1.500000px;}
.ls2_c00069{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00069{word-spacing:-21.276000px;}
.ws2_c00069{word-spacing:-17.640000px;}
.ws3_c00069{word-spacing:-14.850000px;}
.ws0_c00069{word-spacing:-10.200000px;}
.ws14_c00069{word-spacing:-1.500000px;}
.ws5_c00069{word-spacing:-0.840000px;}
.ws12_c00069{word-spacing:-0.720000px;}
.ws4_c00069{word-spacing:0.000000px;}
.ws13_c00069{word-spacing:0.360000px;}
.ws11_c00069{word-spacing:1.080000px;}
.wsd_c00069{word-spacing:1.152000px;}
.ws10_c00069{word-spacing:3.744000px;}
.wse_c00069{word-spacing:5.040000px;}
.ws6_c00069{word-spacing:6.336000px;}
.wsa_c00069{word-spacing:6.696000px;}
.ws7_c00069{word-spacing:6.912000px;}
.ws9_c00069{word-spacing:7.200000px;}
.wsf_c00069{word-spacing:8.352000px;}
.wsc_c00069{word-spacing:9.216000px;}
.wsb_c00069{word-spacing:18.072000px;}
.ws8_c00069{word-spacing:21.960000px;}
._0_c00069{margin-left:-480.336600px;}
._3_c00069{margin-left:-6.472800px;}
._1_c00069{margin-left:-4.200000px;}
._4_c00069{margin-left:-2.167200px;}
._2_c00069{margin-left:-1.134000px;}
.fc3_c00069{color:rgb(32,32,32);}
.fc2_c00069{color:rgb(233,83,14);}
.fc1_c00069{color:rgb(232,86,17);}
.fc4_c00069{color:rgb(157,157,156);}
.fc0_c00069{color:rgb(60,60,59);}
.fs1_c00069{font-size:42.000000px;}
.fs0_c00069{font-size:60.000000px;}
.fs5_c00069{font-size:66.000000px;}
.fs4_c00069{font-size:72.000000px;}
.fs3_c00069{font-size:84.000000px;}
.fs2_c00069{font-size:108.000000px;}
.y0_c00069{bottom:0.000000px;}
.y1_c00069{bottom:41.250000px;}
.y14_c00069{bottom:286.328700px;}
.y13_c00069{bottom:316.334700px;}
.y12_c00069{bottom:376.334700px;}
.y11_c00069{bottom:466.256700px;}
.y10_c00069{bottom:496.262700px;}
.yf_c00069{bottom:526.268700px;}
.ye_c00069{bottom:556.274700px;}
.yd_c00069{bottom:586.280700px;}
.yc_c00069{bottom:616.286700px;}
.yb_c00069{bottom:646.292700px;}
.ya_c00069{bottom:676.298700px;}
.y9_c00069{bottom:706.304700px;}
.y8_c00069{bottom:736.310700px;}
.y7_c00069{bottom:766.316700px;}
.y18_c00069{bottom:766.334700px;}
.y6_c00069{bottom:796.322700px;}
.y17_c00069{bottom:796.334700px;}
.y5_c00069{bottom:826.328700px;}
.y16_c00069{bottom:826.334700px;}
.y4_c00069{bottom:856.334700px;}
.y15_c00069{bottom:856.561950px;}
.y3_c00069{bottom:916.334700px;}
.y2_c00069{bottom:1006.334700px;}
.h6_c00069{height:50.292000px;}
.h2_c00069{height:54.000000px;}
.h5_c00069{height:64.800000px;}
.h4_c00069{height:78.540000px;}
.h3_c00069{height:100.980000px;}
.h0_c00069{height:1262.835000px;}
.h1_c00069{height:1263.000000px;}
.w0_c00069{width:892.914000px;}
.w1_c00069{width:893.250000px;}
.x0_c00069{left:0.000000px;}
.x2_c00069{left:82.500000px;}
.x3_c00069{left:90.000000px;}
.x4_c00069{left:106.500000px;}
.x5_c00069{left:675.611100px;}
.x1_c00069{left:795.278700px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls5_c00069{letter-spacing:-0.288000pt;}
.ls4_c00069{letter-spacing:0.000000pt;}
.ls0_c00069{letter-spacing:0.640000pt;}
.ls1_c00069{letter-spacing:0.746667pt;}
.ls3_c00069{letter-spacing:1.333333pt;}
.ls2_c00069{letter-spacing:1.466667pt;}
.ws1_c00069{word-spacing:-18.912000pt;}
.ws2_c00069{word-spacing:-15.680000pt;}
.ws3_c00069{word-spacing:-13.200000pt;}
.ws0_c00069{word-spacing:-9.066667pt;}
.ws14_c00069{word-spacing:-1.333333pt;}
.ws5_c00069{word-spacing:-0.746667pt;}
.ws12_c00069{word-spacing:-0.640000pt;}
.ws4_c00069{word-spacing:0.000000pt;}
.ws13_c00069{word-spacing:0.320000pt;}
.ws11_c00069{word-spacing:0.960000pt;}
.wsd_c00069{word-spacing:1.024000pt;}
.ws10_c00069{word-spacing:3.328000pt;}
.wse_c00069{word-spacing:4.480000pt;}
.ws6_c00069{word-spacing:5.632000pt;}
.wsa_c00069{word-spacing:5.952000pt;}
.ws7_c00069{word-spacing:6.144000pt;}
.ws9_c00069{word-spacing:6.400000pt;}
.wsf_c00069{word-spacing:7.424000pt;}
.wsc_c00069{word-spacing:8.192000pt;}
.wsb_c00069{word-spacing:16.064000pt;}
.ws8_c00069{word-spacing:19.520000pt;}
._0_c00069{margin-left:-426.965867pt;}
._3_c00069{margin-left:-5.753600pt;}
._1_c00069{margin-left:-3.733333pt;}
._4_c00069{margin-left:-1.926400pt;}
._2_c00069{margin-left:-1.008000pt;}
.fs1_c00069{font-size:37.333333pt;}
.fs0_c00069{font-size:53.333333pt;}
.fs5_c00069{font-size:58.666667pt;}
.fs4_c00069{font-size:64.000000pt;}
.fs3_c00069{font-size:74.666667pt;}
.fs2_c00069{font-size:96.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y1_c00069{bottom:36.666667pt;}
.y14_c00069{bottom:254.514400pt;}
.y13_c00069{bottom:281.186400pt;}
.y12_c00069{bottom:334.519733pt;}
.y11_c00069{bottom:414.450400pt;}
.y10_c00069{bottom:441.122400pt;}
.yf_c00069{bottom:467.794400pt;}
.ye_c00069{bottom:494.466400pt;}
.yd_c00069{bottom:521.138400pt;}
.yc_c00069{bottom:547.810400pt;}
.yb_c00069{bottom:574.482400pt;}
.ya_c00069{bottom:601.154400pt;}
.y9_c00069{bottom:627.826400pt;}
.y8_c00069{bottom:654.498400pt;}
.y7_c00069{bottom:681.170400pt;}
.y18_c00069{bottom:681.186400pt;}
.y6_c00069{bottom:707.842400pt;}
.y17_c00069{bottom:707.853067pt;}
.y5_c00069{bottom:734.514400pt;}
.y16_c00069{bottom:734.519733pt;}
.y4_c00069{bottom:761.186400pt;}
.y15_c00069{bottom:761.388400pt;}
.y3_c00069{bottom:814.519733pt;}
.y2_c00069{bottom:894.519733pt;}
.h6_c00069{height:44.704000pt;}
.h2_c00069{height:48.000000pt;}
.h5_c00069{height:57.600000pt;}
.h4_c00069{height:69.813333pt;}
.h3_c00069{height:89.760000pt;}
.h0_c00069{height:1122.520000pt;}
.h1_c00069{height:1122.666667pt;}
.w0_c00069{width:793.701333pt;}
.w1_c00069{width:794.000000pt;}
.x0_c00069{left:0.000000pt;}
.x2_c00069{left:73.333333pt;}
.x3_c00069{left:80.000000pt;}
.x4_c00069{left:94.666667pt;}
.x5_c00069{left:600.543200pt;}
.x1_c00069{left:706.914400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18f9d95d47a5508779786bf8.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.199000;font-style: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);}
.m1_c00070{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls1_c00070{letter-spacing:0.000000px;}
.ls0_c00070{letter-spacing:0.720000px;}
.ls2_c00070{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws6_c00070{word-spacing:-5.472000px;}
.ws5_c00070{word-spacing:-4.824000px;}
.ws9_c00070{word-spacing:-1.584000px;}
.ws8_c00070{word-spacing:-1.440000px;}
.ws2_c00070{word-spacing:-0.840000px;}
.ws1_c00070{word-spacing:0.000000px;}
.ws7_c00070{word-spacing:0.144000px;}
.ws3_c00070{word-spacing:7.416000px;}
.ws4_c00070{word-spacing:15.984000px;}
._0_c00070{margin-left:-480.336600px;}
._3_c00070{margin-left:-6.501600px;}
._1_c00070{margin-left:-4.200000px;}
._4_c00070{margin-left:-2.894400px;}
._2_c00070{margin-left:-1.432800px;}
.fc2_c00070{color:rgb(32,32,32);}
.fc1_c00070{color:rgb(232,86,17);}
.fc0_c00070{color:rgb(60,60,59);}
.fs1_c00070{font-size:42.000000px;}
.fs0_c00070{font-size:60.000000px;}
.fs3_c00070{font-size:72.000000px;}
.fs2_c00070{font-size:84.000000px;}
.y0_c00070{bottom:0.000000px;}
.y1_c00070{bottom:41.250000px;}
.ye_c00070{bottom:436.322700px;}
.yd_c00070{bottom:466.328700px;}
.yc_c00070{bottom:496.334700px;}
.yb_c00070{bottom:556.334700px;}
.ya_c00070{bottom:646.316700px;}
.y9_c00070{bottom:676.322700px;}
.y8_c00070{bottom:706.328700px;}
.y7_c00070{bottom:736.334700px;}
.y6_c00070{bottom:796.334700px;}
.y5_c00070{bottom:886.322700px;}
.y4_c00070{bottom:916.328700px;}
.y3_c00070{bottom:946.334700px;}
.y2_c00070{bottom:1006.334700px;}
.h2_c00070{height:54.000000px;}
.h4_c00070{height:64.800000px;}
.h3_c00070{height:78.540000px;}
.h0_c00070{height:1262.835000px;}
.h1_c00070{height:1263.000000px;}
.w0_c00070{width:892.914000px;}
.w1_c00070{width:893.250000px;}
.x0_c00070{left:0.000000px;}
.x2_c00070{left:90.000000px;}
.x3_c00070{left:106.500000px;}
.x1_c00070{left:798.938700px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls1_c00070{letter-spacing:0.000000pt;}
.ls0_c00070{letter-spacing:0.640000pt;}
.ls2_c00070{letter-spacing:0.746667pt;}
.ws0_c00070{word-spacing:-9.066667pt;}
.ws6_c00070{word-spacing:-4.864000pt;}
.ws5_c00070{word-spacing:-4.288000pt;}
.ws9_c00070{word-spacing:-1.408000pt;}
.ws8_c00070{word-spacing:-1.280000pt;}
.ws2_c00070{word-spacing:-0.746667pt;}
.ws1_c00070{word-spacing:0.000000pt;}
.ws7_c00070{word-spacing:0.128000pt;}
.ws3_c00070{word-spacing:6.592000pt;}
.ws4_c00070{word-spacing:14.208000pt;}
._0_c00070{margin-left:-426.965867pt;}
._3_c00070{margin-left:-5.779200pt;}
._1_c00070{margin-left:-3.733333pt;}
._4_c00070{margin-left:-2.572800pt;}
._2_c00070{margin-left:-1.273600pt;}
.fs1_c00070{font-size:37.333333pt;}
.fs0_c00070{font-size:53.333333pt;}
.fs3_c00070{font-size:64.000000pt;}
.fs2_c00070{font-size:74.666667pt;}
.y0_c00070{bottom:0.000000pt;}
.y1_c00070{bottom:36.666667pt;}
.ye_c00070{bottom:387.842400pt;}
.yd_c00070{bottom:414.514400pt;}
.yc_c00070{bottom:441.186400pt;}
.yb_c00070{bottom:494.519733pt;}
.ya_c00070{bottom:574.503733pt;}
.y9_c00070{bottom:601.175733pt;}
.y8_c00070{bottom:627.847733pt;}
.y7_c00070{bottom:654.519733pt;}
.y6_c00070{bottom:707.853067pt;}
.y5_c00070{bottom:787.842400pt;}
.y4_c00070{bottom:814.514400pt;}
.y3_c00070{bottom:841.186400pt;}
.y2_c00070{bottom:894.519733pt;}
.h2_c00070{height:48.000000pt;}
.h4_c00070{height:57.600000pt;}
.h3_c00070{height:69.813333pt;}
.h0_c00070{height:1122.520000pt;}
.h1_c00070{height:1122.666667pt;}
.w0_c00070{width:793.701333pt;}
.w1_c00070{width:794.000000pt;}
.x0_c00070{left:0.000000pt;}
.x2_c00070{left:80.000000pt;}
.x3_c00070{left:94.666667pt;}
.x1_c00070{left:710.167733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d98909d2047615d64cec0d7.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.160000;font-style:normal;font-weight:normal;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_d219d4c1976e9292b4fdff88.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_4dcc63dbbe7d159064e1238d.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00071;src:url('chunks/assets/font_0bfd348b9fee3dfc38b4088e.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00071;src:url('chunks/assets/font_f5837081109e748d08613c80.woff2')format("woff");}.ff5_c00071{font-family:ff5_c00071;line-height:1.155000;font-style: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);}
.m1_c00071{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls2_c00071{letter-spacing:0.000000px;}
.ls0_c00071{letter-spacing:0.864000px;}
.ls1_c00071{letter-spacing:1.200000px;}
.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:-10.200000px;}
.ws4_c00071{word-spacing:-6.240000px;}
.ws3_c00071{word-spacing:-2.952000px;}
.ws2_c00071{word-spacing:-0.864000px;}
.ws1_c00071{word-spacing:0.000000px;}
._0_c00071{margin-left:-480.336000px;}
._4_c00071{margin-left:-10.663200px;}
._1_c00071{margin-left:-4.200000px;}
._6_c00071{margin-left:-2.712000px;}
._2_c00071{margin-left:-1.440000px;}
._3_c00071{width:2.952000px;}
._5_c00071{width:6.240000px;}
.fc3_c00071{color:rgb(255,255,255);}
.fc2_c00071{color:rgb(233,83,14);}
.fc1_c00071{color:rgb(232,86,17);}
.fc0_c00071{color:rgb(60,60,59);}
.fs1_c00071{font-size:42.000000px;}
.fs0_c00071{font-size:60.000000px;}
.fs3_c00071{font-size:72.000000px;}
.fs4_c00071{font-size:120.000000px;}
.fs2_c00071{font-size:360.000000px;}
.y0_c00071{bottom:0.000000px;}
.y1_c00071{bottom:41.250000px;}
.ya_c00071{bottom:544.304700px;}
.y9_c00071{bottom:565.310700px;}
.y8_c00071{bottom:586.316700px;}
.y7_c00071{bottom:643.322700px;}
.y6_c00071{bottom:664.328700px;}
.y5_c00071{bottom:685.334700px;}
.y4_c00071{bottom:706.340700px;}
.y3_c00071{bottom:752.834700px;}
.yd_c00071{bottom:946.334700px;}
.yc_c00071{bottom:976.334700px;}
.yb_c00071{bottom:1006.334700px;}
.y2_c00071{bottom:1093.526700px;}
.h2_c00071{height:54.000000px;}
.h5_c00071{height:64.800000px;}
.h4_c00071{height:66.456000px;}
.h6_c00071{height:112.200000px;}
.h3_c00071{height:324.000000px;}
.h0_c00071{height:1262.835000px;}
.h1_c00071{height:1263.000000px;}
.w0_c00071{width:892.914000px;}
.w1_c00071{width:893.250000px;}
.x0_c00071{left:0.000000px;}
.x2_c00071{left:81.290250px;}
.x3_c00071{left:82.393650px;}
.x5_c00071{left:106.287450px;}
.x4_c00071{left:127.393650px;}
.x1_c00071{left:796.463550px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls2_c00071{letter-spacing:0.000000pt;}
.ls0_c00071{letter-spacing:0.768000pt;}
.ls1_c00071{letter-spacing:1.066667pt;}
.ws0_c00071{word-spacing:-9.066667pt;}
.ws4_c00071{word-spacing:-5.546667pt;}
.ws3_c00071{word-spacing:-2.624000pt;}
.ws2_c00071{word-spacing:-0.768000pt;}
.ws1_c00071{word-spacing:0.000000pt;}
._0_c00071{margin-left:-426.965333pt;}
._4_c00071{margin-left:-9.478400pt;}
._1_c00071{margin-left:-3.733333pt;}
._6_c00071{margin-left:-2.410667pt;}
._2_c00071{margin-left:-1.280000pt;}
._3_c00071{width:2.624000pt;}
._5_c00071{width:5.546667pt;}
.fs1_c00071{font-size:37.333333pt;}
.fs0_c00071{font-size:53.333333pt;}
.fs3_c00071{font-size:64.000000pt;}
.fs4_c00071{font-size:106.666667pt;}
.fs2_c00071{font-size:320.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y1_c00071{bottom:36.666667pt;}
.ya_c00071{bottom:483.826400pt;}
.y9_c00071{bottom:502.498400pt;}
.y8_c00071{bottom:521.170400pt;}
.y7_c00071{bottom:571.842400pt;}
.y6_c00071{bottom:590.514400pt;}
.y5_c00071{bottom:609.186400pt;}
.y4_c00071{bottom:627.858400pt;}
.y3_c00071{bottom:669.186400pt;}
.yd_c00071{bottom:841.186400pt;}
.yc_c00071{bottom:867.853067pt;}
.yb_c00071{bottom:894.519733pt;}
.y2_c00071{bottom:972.023733pt;}
.h2_c00071{height:48.000000pt;}
.h5_c00071{height:57.600000pt;}
.h4_c00071{height:59.072000pt;}
.h6_c00071{height:99.733333pt;}
.h3_c00071{height:288.000000pt;}
.h0_c00071{height:1122.520000pt;}
.h1_c00071{height:1122.666667pt;}
.w0_c00071{width:793.701333pt;}
.w1_c00071{width:794.000000pt;}
.x0_c00071{left:0.000000pt;}
.x2_c00071{left:72.258000pt;}
.x3_c00071{left:73.238800pt;}
.x5_c00071{left:94.477733pt;}
.x4_c00071{left:113.238800pt;}
.x1_c00071{left:707.967600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a62c88ea6321e17dd89721a.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.160000;font-style:normal;font-weight:normal;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_8d84efa8a1196c7e6fbf9e90.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_1fe7848542500560523ed339.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_a0523d7a999d427654c9d322.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls4_c00072{letter-spacing:-0.540000px;}
.ls3_c00072{letter-spacing:0.000000px;}
.ls0_c00072{letter-spacing:0.720000px;}
.ls2_c00072{letter-spacing:1.500000px;}
.ls1_c00072{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00072{word-spacing:-21.060000px;}
.ws2_c00072{word-spacing:-11.700000px;}
.ws0_c00072{word-spacing:-10.200000px;}
.wsf_c00072{word-spacing:-5.256000px;}
.wse_c00072{word-spacing:-3.240000px;}
.ws15_c00072{word-spacing:-2.016000px;}
.ws1d_c00072{word-spacing:-1.500000px;}
.ws17_c00072{word-spacing:-1.368000px;}
.wsd_c00072{word-spacing:-0.720000px;}
.ws3_c00072{word-spacing:0.000000px;}
.ws9_c00072{word-spacing:0.936000px;}
.ws13_c00072{word-spacing:1.080000px;}
.wsb_c00072{word-spacing:1.296000px;}
.ws1a_c00072{word-spacing:1.656000px;}
.ws6_c00072{word-spacing:2.088000px;}
.ws11_c00072{word-spacing:2.304000px;}
.ws8_c00072{word-spacing:2.448000px;}
.ws18_c00072{word-spacing:2.592000px;}
.wsc_c00072{word-spacing:2.880000px;}
.ws7_c00072{word-spacing:3.024000px;}
.ws19_c00072{word-spacing:3.168000px;}
.ws16_c00072{word-spacing:3.312000px;}
.ws10_c00072{word-spacing:3.528000px;}
.ws1b_c00072{word-spacing:4.104000px;}
.ws4_c00072{word-spacing:5.328000px;}
.ws14_c00072{word-spacing:5.544000px;}
.wsa_c00072{word-spacing:6.048000px;}
.ws12_c00072{word-spacing:6.480000px;}
.ws5_c00072{word-spacing:9.216000px;}
.ws1c_c00072{word-spacing:10.440000px;}
._0_c00072{margin-left:-480.336000px;}
._7_c00072{margin-left:-7.135200px;}
._6_c00072{margin-left:-5.760000px;}
._1_c00072{margin-left:-4.200000px;}
._5_c00072{margin-left:-2.311200px;}
._2_c00072{margin-left:-1.173600px;}
._4_c00072{width:1.303200px;}
._3_c00072{width:3.052800px;}
._8_c00072{width:4.488000px;}
.fc3_c00072{color:rgb(32,32,32);}
.fc2_c00072{color:rgb(233,83,14);}
.fc1_c00072{color:rgb(232,86,17);}
.fc4_c00072{color:rgb(157,157,156);}
.fc0_c00072{color:rgb(60,60,59);}
.fs1_c00072{font-size:42.000000px;}
.fs0_c00072{font-size:60.000000px;}
.fs4_c00072{font-size:66.000000px;}
.fs3_c00072{font-size:72.000000px;}
.fs2_c00072{font-size:108.000000px;}
.y0_c00072{bottom:0.000000px;}
.y1_c00072{bottom:41.250000px;}
.y1b_c00072{bottom:226.190700px;}
.y1a_c00072{bottom:256.196700px;}
.y19_c00072{bottom:286.202700px;}
.y18_c00072{bottom:316.208700px;}
.y17_c00072{bottom:346.214700px;}
.y16_c00072{bottom:376.220700px;}
.y15_c00072{bottom:406.226700px;}
.y14_c00072{bottom:436.232700px;}
.y13_c00072{bottom:466.238700px;}
.y12_c00072{bottom:496.244700px;}
.y11_c00072{bottom:526.250700px;}
.y10_c00072{bottom:556.256700px;}
.yf_c00072{bottom:586.262700px;}
.ye_c00072{bottom:616.268700px;}
.yd_c00072{bottom:646.274700px;}
.yc_c00072{bottom:676.280700px;}
.yb_c00072{bottom:706.286700px;}
.ya_c00072{bottom:736.292700px;}
.y23_c00072{bottom:736.334700px;}
.y9_c00072{bottom:766.298700px;}
.y22_c00072{bottom:766.334700px;}
.y8_c00072{bottom:796.304700px;}
.y21_c00072{bottom:796.334700px;}
.y7_c00072{bottom:826.310700px;}
.y20_c00072{bottom:826.334700px;}
.y6_c00072{bottom:856.316700px;}
.y1f_c00072{bottom:856.334700px;}
.y5_c00072{bottom:886.322700px;}
.y1e_c00072{bottom:886.334700px;}
.y4_c00072{bottom:916.328700px;}
.y1d_c00072{bottom:916.334700px;}
.y3_c00072{bottom:946.334700px;}
.y1c_c00072{bottom:947.601450px;}
.y2_c00072{bottom:1006.334700px;}
.h5_c00072{height:50.292000px;}
.h2_c00072{height:54.000000px;}
.h4_c00072{height:64.800000px;}
.h3_c00072{height:100.980000px;}
.h0_c00072{height:1262.835000px;}
.h1_c00072{height:1263.000000px;}
.w0_c00072{width:892.914000px;}
.w1_c00072{width:893.250000px;}
.x0_c00072{left:0.000000px;}
.x2_c00072{left:82.500000px;}
.x3_c00072{left:106.500000px;}
.x4_c00072{left:675.611100px;}
.x1_c00072{left:796.313550px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls4_c00072{letter-spacing:-0.480000pt;}
.ls3_c00072{letter-spacing:0.000000pt;}
.ls0_c00072{letter-spacing:0.640000pt;}
.ls2_c00072{letter-spacing:1.333333pt;}
.ls1_c00072{letter-spacing:1.466667pt;}
.ws1_c00072{word-spacing:-18.720000pt;}
.ws2_c00072{word-spacing:-10.400000pt;}
.ws0_c00072{word-spacing:-9.066667pt;}
.wsf_c00072{word-spacing:-4.672000pt;}
.wse_c00072{word-spacing:-2.880000pt;}
.ws15_c00072{word-spacing:-1.792000pt;}
.ws1d_c00072{word-spacing:-1.333333pt;}
.ws17_c00072{word-spacing:-1.216000pt;}
.wsd_c00072{word-spacing:-0.640000pt;}
.ws3_c00072{word-spacing:0.000000pt;}
.ws9_c00072{word-spacing:0.832000pt;}
.ws13_c00072{word-spacing:0.960000pt;}
.wsb_c00072{word-spacing:1.152000pt;}
.ws1a_c00072{word-spacing:1.472000pt;}
.ws6_c00072{word-spacing:1.856000pt;}
.ws11_c00072{word-spacing:2.048000pt;}
.ws8_c00072{word-spacing:2.176000pt;}
.ws18_c00072{word-spacing:2.304000pt;}
.wsc_c00072{word-spacing:2.560000pt;}
.ws7_c00072{word-spacing:2.688000pt;}
.ws19_c00072{word-spacing:2.816000pt;}
.ws16_c00072{word-spacing:2.944000pt;}
.ws10_c00072{word-spacing:3.136000pt;}
.ws1b_c00072{word-spacing:3.648000pt;}
.ws4_c00072{word-spacing:4.736000pt;}
.ws14_c00072{word-spacing:4.928000pt;}
.wsa_c00072{word-spacing:5.376000pt;}
.ws12_c00072{word-spacing:5.760000pt;}
.ws5_c00072{word-spacing:8.192000pt;}
.ws1c_c00072{word-spacing:9.280000pt;}
._0_c00072{margin-left:-426.965333pt;}
._7_c00072{margin-left:-6.342400pt;}
._6_c00072{margin-left:-5.120000pt;}
._1_c00072{margin-left:-3.733333pt;}
._5_c00072{margin-left:-2.054400pt;}
._2_c00072{margin-left:-1.043200pt;}
._4_c00072{width:1.158400pt;}
._3_c00072{width:2.713600pt;}
._8_c00072{width:3.989333pt;}
.fs1_c00072{font-size:37.333333pt;}
.fs0_c00072{font-size:53.333333pt;}
.fs4_c00072{font-size:58.666667pt;}
.fs3_c00072{font-size:64.000000pt;}
.fs2_c00072{font-size:96.000000pt;}
.y0_c00072{bottom:0.000000pt;}
.y1_c00072{bottom:36.666667pt;}
.y1b_c00072{bottom:201.058400pt;}
.y1a_c00072{bottom:227.730400pt;}
.y19_c00072{bottom:254.402400pt;}
.y18_c00072{bottom:281.074400pt;}
.y17_c00072{bottom:307.746400pt;}
.y16_c00072{bottom:334.418400pt;}
.y15_c00072{bottom:361.090400pt;}
.y14_c00072{bottom:387.762400pt;}
.y13_c00072{bottom:414.434400pt;}
.y12_c00072{bottom:441.106400pt;}
.y11_c00072{bottom:467.778400pt;}
.y10_c00072{bottom:494.450400pt;}
.yf_c00072{bottom:521.122400pt;}
.ye_c00072{bottom:547.794400pt;}
.yd_c00072{bottom:574.466400pt;}
.yc_c00072{bottom:601.138400pt;}
.yb_c00072{bottom:627.810400pt;}
.ya_c00072{bottom:654.482400pt;}
.y23_c00072{bottom:654.519733pt;}
.y9_c00072{bottom:681.154400pt;}
.y22_c00072{bottom:681.186400pt;}
.y8_c00072{bottom:707.826400pt;}
.y21_c00072{bottom:707.853067pt;}
.y7_c00072{bottom:734.498400pt;}
.y20_c00072{bottom:734.519733pt;}
.y6_c00072{bottom:761.170400pt;}
.y1f_c00072{bottom:761.186400pt;}
.y5_c00072{bottom:787.842400pt;}
.y1e_c00072{bottom:787.853067pt;}
.y4_c00072{bottom:814.514400pt;}
.y1d_c00072{bottom:814.519733pt;}
.y3_c00072{bottom:841.186400pt;}
.y1c_c00072{bottom:842.312400pt;}
.y2_c00072{bottom:894.519733pt;}
.h5_c00072{height:44.704000pt;}
.h2_c00072{height:48.000000pt;}
.h4_c00072{height:57.600000pt;}
.h3_c00072{height:89.760000pt;}
.h0_c00072{height:1122.520000pt;}
.h1_c00072{height:1122.666667pt;}
.w0_c00072{width:793.701333pt;}
.w1_c00072{width:794.000000pt;}
.x0_c00072{left:0.000000pt;}
.x2_c00072{left:73.333333pt;}
.x3_c00072{left:94.666667pt;}
.x4_c00072{left:600.543200pt;}
.x1_c00072{left:707.834267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_34609b40291a3e991a81217d.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.160000;font-style:normal;font-weight:normal;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_1381b2c058717f8a5d9071ec.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.199000;font-style:normal;font-weight:normal;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_7c94838d33c5fec8c60ac024.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00073;src:url('chunks/assets/font_f03985060ec7a2b9f100df54.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls3_c00073{letter-spacing:-3.600000px;}
.ls5_c00073{letter-spacing:-0.324000px;}
.ls4_c00073{letter-spacing:0.000000px;}
.ls0_c00073{letter-spacing:0.720000px;}
.ls2_c00073{letter-spacing:1.500000px;}
.ls1_c00073{letter-spacing:1.650000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00073{word-spacing:-21.276000px;}
.ws2_c00073{word-spacing:-14.850000px;}
.ws0_c00073{word-spacing:-6.600000px;}
.ws11_c00073{word-spacing:-1.728000px;}
.wsf_c00073{word-spacing:-0.432000px;}
.wse_c00073{word-spacing:-0.288000px;}
.ws3_c00073{word-spacing:0.000000px;}
.ws13_c00073{word-spacing:1.224000px;}
.ws10_c00073{word-spacing:1.872000px;}
.ws12_c00073{word-spacing:3.024000px;}
.ws9_c00073{word-spacing:3.672000px;}
.ws8_c00073{word-spacing:3.816000px;}
.wsa_c00073{word-spacing:4.176000px;}
.ws5_c00073{word-spacing:4.608000px;}
.ws4_c00073{word-spacing:5.400000px;}
.ws15_c00073{word-spacing:6.048000px;}
.ws6_c00073{word-spacing:7.632000px;}
.ws14_c00073{word-spacing:8.856000px;}
.ws7_c00073{word-spacing:11.160000px;}
.wsc_c00073{word-spacing:11.592000px;}
.wsb_c00073{word-spacing:13.032000px;}
.wsd_c00073{word-spacing:18.000000px;}
._0_c00073{margin-left:-476.736000px;}
._5_c00073{margin-left:-6.778800px;}
._3_c00073{margin-left:-5.760000px;}
._1_c00073{margin-left:-4.200000px;}
._4_c00073{margin-left:-2.466000px;}
._2_c00073{margin-left:-1.134000px;}
.fc3_c00073{color:rgb(32,32,32);}
.fc2_c00073{color:rgb(233,83,14);}
.fc1_c00073{color:rgb(232,86,17);}
.fc4_c00073{color:rgb(157,157,156);}
.fc0_c00073{color:rgb(60,60,59);}
.fs1_c00073{font-size:42.000000px;}
.fs0_c00073{font-size:60.000000px;}
.fs4_c00073{font-size:66.000000px;}
.fs3_c00073{font-size:72.000000px;}
.fs2_c00073{font-size:108.000000px;}
.y0_c00073{bottom:0.000000px;}
.y1_c00073{bottom:41.250000px;}
.y18_c00073{bottom:316.208700px;}
.y17_c00073{bottom:346.214700px;}
.y16_c00073{bottom:376.220700px;}
.y15_c00073{bottom:406.226700px;}
.y14_c00073{bottom:436.232700px;}
.y13_c00073{bottom:466.238700px;}
.y12_c00073{bottom:496.244700px;}
.y11_c00073{bottom:526.250700px;}
.y10_c00073{bottom:556.256700px;}
.yf_c00073{bottom:586.262700px;}
.ye_c00073{bottom:616.268700px;}
.yd_c00073{bottom:646.274700px;}
.yc_c00073{bottom:676.280700px;}
.yb_c00073{bottom:706.286700px;}
.ya_c00073{bottom:736.292700px;}
.y9_c00073{bottom:766.298700px;}
.y8_c00073{bottom:796.304700px;}
.y7_c00073{bottom:826.310700px;}
.y1d_c00073{bottom:826.334700px;}
.y6_c00073{bottom:856.316700px;}
.y1c_c00073{bottom:856.334700px;}
.y5_c00073{bottom:886.322700px;}
.y1b_c00073{bottom:886.334700px;}
.y4_c00073{bottom:916.328700px;}
.y1a_c00073{bottom:916.334700px;}
.y3_c00073{bottom:946.334700px;}
.y19_c00073{bottom:947.601450px;}
.y2_c00073{bottom:1006.334700px;}
.h5_c00073{height:50.292000px;}
.h2_c00073{height:54.000000px;}
.h4_c00073{height:64.800000px;}
.h3_c00073{height:100.980000px;}
.h0_c00073{height:1262.835000px;}
.h1_c00073{height:1263.000000px;}
.w0_c00073{width:892.914000px;}
.w1_c00073{width:893.250000px;}
.x0_c00073{left:0.000000px;}
.x2_c00073{left:82.500000px;}
.x3_c00073{left:106.500000px;}
.x4_c00073{left:675.611100px;}
.x1_c00073{left:796.238550px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls3_c00073{letter-spacing:-3.200000pt;}
.ls5_c00073{letter-spacing:-0.288000pt;}
.ls4_c00073{letter-spacing:0.000000pt;}
.ls0_c00073{letter-spacing:0.640000pt;}
.ls2_c00073{letter-spacing:1.333333pt;}
.ls1_c00073{letter-spacing:1.466667pt;}
.ws1_c00073{word-spacing:-18.912000pt;}
.ws2_c00073{word-spacing:-13.200000pt;}
.ws0_c00073{word-spacing:-5.866667pt;}
.ws11_c00073{word-spacing:-1.536000pt;}
.wsf_c00073{word-spacing:-0.384000pt;}
.wse_c00073{word-spacing:-0.256000pt;}
.ws3_c00073{word-spacing:0.000000pt;}
.ws13_c00073{word-spacing:1.088000pt;}
.ws10_c00073{word-spacing:1.664000pt;}
.ws12_c00073{word-spacing:2.688000pt;}
.ws9_c00073{word-spacing:3.264000pt;}
.ws8_c00073{word-spacing:3.392000pt;}
.wsa_c00073{word-spacing:3.712000pt;}
.ws5_c00073{word-spacing:4.096000pt;}
.ws4_c00073{word-spacing:4.800000pt;}
.ws15_c00073{word-spacing:5.376000pt;}
.ws6_c00073{word-spacing:6.784000pt;}
.ws14_c00073{word-spacing:7.872000pt;}
.ws7_c00073{word-spacing:9.920000pt;}
.wsc_c00073{word-spacing:10.304000pt;}
.wsb_c00073{word-spacing:11.584000pt;}
.wsd_c00073{word-spacing:16.000000pt;}
._0_c00073{margin-left:-423.765333pt;}
._5_c00073{margin-left:-6.025600pt;}
._3_c00073{margin-left:-5.120000pt;}
._1_c00073{margin-left:-3.733333pt;}
._4_c00073{margin-left:-2.192000pt;}
._2_c00073{margin-left:-1.008000pt;}
.fs1_c00073{font-size:37.333333pt;}
.fs0_c00073{font-size:53.333333pt;}
.fs4_c00073{font-size:58.666667pt;}
.fs3_c00073{font-size:64.000000pt;}
.fs2_c00073{font-size:96.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y1_c00073{bottom:36.666667pt;}
.y18_c00073{bottom:281.074400pt;}
.y17_c00073{bottom:307.746400pt;}
.y16_c00073{bottom:334.418400pt;}
.y15_c00073{bottom:361.090400pt;}
.y14_c00073{bottom:387.762400pt;}
.y13_c00073{bottom:414.434400pt;}
.y12_c00073{bottom:441.106400pt;}
.y11_c00073{bottom:467.778400pt;}
.y10_c00073{bottom:494.450400pt;}
.yf_c00073{bottom:521.122400pt;}
.ye_c00073{bottom:547.794400pt;}
.yd_c00073{bottom:574.466400pt;}
.yc_c00073{bottom:601.138400pt;}
.yb_c00073{bottom:627.810400pt;}
.ya_c00073{bottom:654.482400pt;}
.y9_c00073{bottom:681.154400pt;}
.y8_c00073{bottom:707.826400pt;}
.y7_c00073{bottom:734.498400pt;}
.y1d_c00073{bottom:734.519733pt;}
.y6_c00073{bottom:761.170400pt;}
.y1c_c00073{bottom:761.186400pt;}
.y5_c00073{bottom:787.842400pt;}
.y1b_c00073{bottom:787.853067pt;}
.y4_c00073{bottom:814.514400pt;}
.y1a_c00073{bottom:814.519733pt;}
.y3_c00073{bottom:841.186400pt;}
.y19_c00073{bottom:842.312400pt;}
.y2_c00073{bottom:894.519733pt;}
.h5_c00073{height:44.704000pt;}
.h2_c00073{height:48.000000pt;}
.h4_c00073{height:57.600000pt;}
.h3_c00073{height:89.760000pt;}
.h0_c00073{height:1122.520000pt;}
.h1_c00073{height:1122.666667pt;}
.w0_c00073{width:793.701333pt;}
.w1_c00073{width:794.000000pt;}
.x0_c00073{left:0.000000pt;}
.x2_c00073{left:73.333333pt;}
.x3_c00073{left:94.666667pt;}
.x4_c00073{left:600.543200pt;}
.x1_c00073{left:707.767600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00074;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00074;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00074{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls2_c00074{letter-spacing:0.000000px;}
.ls0_c00074{letter-spacing:0.864000px;}
.ls1_c00074{letter-spacing:1.200000px;}
.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:-10.200000px;}
.ws5_c00074{word-spacing:-9.240000px;}
.ws6_c00074{word-spacing:-4.200000px;}
.ws2_c00074{word-spacing:-1.440000px;}
.ws4_c00074{word-spacing:-1.200000px;}
.ws3_c00074{word-spacing:-0.864000px;}
.ws1_c00074{word-spacing:0.000000px;}
._0_c00074{margin-left:-480.336000px;}
._5_c00074{margin-left:-9.000000px;}
._4_c00074{margin-left:-6.480000px;}
._1_c00074{margin-left:-4.200000px;}
._2_c00074{margin-left:-1.440000px;}
._3_c00074{width:1.440000px;}
._6_c00074{width:8.280000px;}
.fc3_c00074{color:rgb(255,255,255);}
.fc2_c00074{color:rgb(233,83,14);}
.fc1_c00074{color:rgb(232,86,17);}
.fc0_c00074{color:rgb(60,60,59);}
.fs1_c00074{font-size:42.000000px;}
.fs0_c00074{font-size:60.000000px;}
.fs3_c00074{font-size:72.000000px;}
.fs4_c00074{font-size:120.000000px;}
.fs2_c00074{font-size:360.000000px;}
.y0_c00074{bottom:0.000000px;}
.y1_c00074{bottom:41.250000px;}
.y6_c00074{bottom:664.328700px;}
.y5_c00074{bottom:685.334700px;}
.y4_c00074{bottom:706.340700px;}
.y3_c00074{bottom:752.834700px;}
.y9_c00074{bottom:946.334700px;}
.y8_c00074{bottom:976.334700px;}
.y7_c00074{bottom:1006.334700px;}
.y2_c00074{bottom:1093.526700px;}
.h2_c00074{height:54.000000px;}
.h5_c00074{height:64.800000px;}
.h4_c00074{height:66.456000px;}
.h6_c00074{height:112.200000px;}
.h3_c00074{height:324.000000px;}
.h0_c00074{height:1262.835000px;}
.h1_c00074{height:1263.000000px;}
.w0_c00074{width:892.914000px;}
.w1_c00074{width:893.250000px;}
.x0_c00074{left:0.000000px;}
.x2_c00074{left:81.290250px;}
.x3_c00074{left:82.393650px;}
.x5_c00074{left:112.287450px;}
.x4_c00074{left:127.393650px;}
.x1_c00074{left:796.388550px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls2_c00074{letter-spacing:0.000000pt;}
.ls0_c00074{letter-spacing:0.768000pt;}
.ls1_c00074{letter-spacing:1.066667pt;}
.ws0_c00074{word-spacing:-9.066667pt;}
.ws5_c00074{word-spacing:-8.213333pt;}
.ws6_c00074{word-spacing:-3.733333pt;}
.ws2_c00074{word-spacing:-1.280000pt;}
.ws4_c00074{word-spacing:-1.066667pt;}
.ws3_c00074{word-spacing:-0.768000pt;}
.ws1_c00074{word-spacing:0.000000pt;}
._0_c00074{margin-left:-426.965333pt;}
._5_c00074{margin-left:-8.000000pt;}
._4_c00074{margin-left:-5.760000pt;}
._1_c00074{margin-left:-3.733333pt;}
._2_c00074{margin-left:-1.280000pt;}
._3_c00074{width:1.280000pt;}
._6_c00074{width:7.360000pt;}
.fs1_c00074{font-size:37.333333pt;}
.fs0_c00074{font-size:53.333333pt;}
.fs3_c00074{font-size:64.000000pt;}
.fs4_c00074{font-size:106.666667pt;}
.fs2_c00074{font-size:320.000000pt;}
.y0_c00074{bottom:0.000000pt;}
.y1_c00074{bottom:36.666667pt;}
.y6_c00074{bottom:590.514400pt;}
.y5_c00074{bottom:609.186400pt;}
.y4_c00074{bottom:627.858400pt;}
.y3_c00074{bottom:669.186400pt;}
.y9_c00074{bottom:841.186400pt;}
.y8_c00074{bottom:867.853067pt;}
.y7_c00074{bottom:894.519733pt;}
.y2_c00074{bottom:972.023733pt;}
.h2_c00074{height:48.000000pt;}
.h5_c00074{height:57.600000pt;}
.h4_c00074{height:59.072000pt;}
.h6_c00074{height:99.733333pt;}
.h3_c00074{height:288.000000pt;}
.h0_c00074{height:1122.520000pt;}
.h1_c00074{height:1122.666667pt;}
.w0_c00074{width:793.701333pt;}
.w1_c00074{width:794.000000pt;}
.x0_c00074{left:0.000000pt;}
.x2_c00074{left:72.258000pt;}
.x3_c00074{left:73.238800pt;}
.x5_c00074{left:99.811067pt;}
.x4_c00074{left:113.238800pt;}
.x1_c00074{left:707.900933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls5_c00075{letter-spacing:-0.540000px;}
.ls4_c00075{letter-spacing:0.000000px;}
.ls0_c00075{letter-spacing:0.720000px;}
.ls1_c00075{letter-spacing:0.840000px;}
.ls3_c00075{letter-spacing:1.500000px;}
.ls2_c00075{letter-spacing:1.650000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00075{word-spacing:-21.060000px;}
.ws2_c00075{word-spacing:-17.640000px;}
.ws0_c00075{word-spacing:-10.200000px;}
.wse_c00075{word-spacing:-3.600000px;}
.wsa_c00075{word-spacing:-2.664000px;}
.ws5_c00075{word-spacing:-2.088000px;}
.ws12_c00075{word-spacing:-1.500000px;}
.ws6_c00075{word-spacing:-0.864000px;}
.ws4_c00075{word-spacing:-0.840000px;}
.ws11_c00075{word-spacing:-0.216000px;}
.ws3_c00075{word-spacing:0.000000px;}
.ws9_c00075{word-spacing:2.808000px;}
.wsd_c00075{word-spacing:3.096000px;}
.ws8_c00075{word-spacing:5.184000px;}
.ws10_c00075{word-spacing:6.840000px;}
.wsf_c00075{word-spacing:7.128000px;}
.ws7_c00075{word-spacing:8.568000px;}
.wsb_c00075{word-spacing:9.216000px;}
.wsc_c00075{word-spacing:12.096000px;}
._0_c00075{margin-left:-480.336000px;}
._1_c00075{margin-left:-4.200000px;}
._2_c00075{margin-left:-1.440000px;}
._3_c00075{width:1.994400px;}
.fc3_c00075{color:rgb(32,32,32);}
.fc2_c00075{color:rgb(233,83,14);}
.fc1_c00075{color:rgb(232,86,17);}
.fc4_c00075{color:rgb(157,157,156);}
.fc0_c00075{color:rgb(60,60,59);}
.fs1_c00075{font-size:42.000000px;}
.fs0_c00075{font-size:60.000000px;}
.fs5_c00075{font-size:66.000000px;}
.fs4_c00075{font-size:72.000000px;}
.fs3_c00075{font-size:84.000000px;}
.fs2_c00075{font-size:108.000000px;}
.y0_c00075{bottom:0.000000px;}
.y1_c00075{bottom:41.250000px;}
.y14_c00075{bottom:196.310700px;}
.y13_c00075{bottom:226.316700px;}
.y12_c00075{bottom:256.322700px;}
.y11_c00075{bottom:286.328700px;}
.y10_c00075{bottom:316.334700px;}
.yf_c00075{bottom:376.334700px;}
.ye_c00075{bottom:466.316700px;}
.yd_c00075{bottom:496.322700px;}
.yc_c00075{bottom:526.328700px;}
.yb_c00075{bottom:556.334700px;}
.ya_c00075{bottom:616.334700px;}
.y9_c00075{bottom:706.304700px;}
.y8_c00075{bottom:736.310700px;}
.y7_c00075{bottom:766.316700px;}
.y17_c00075{bottom:766.334700px;}
.y6_c00075{bottom:796.322700px;}
.y16_c00075{bottom:796.334700px;}
.y5_c00075{bottom:826.328700px;}
.y15_c00075{bottom:826.334700px;}
.y4_c00075{bottom:856.334700px;}
.y3_c00075{bottom:916.334700px;}
.y2_c00075{bottom:1006.334700px;}
.h6_c00075{height:50.292000px;}
.h2_c00075{height:54.000000px;}
.h5_c00075{height:64.800000px;}
.h4_c00075{height:78.540000px;}
.h3_c00075{height:100.980000px;}
.h0_c00075{height:1262.835000px;}
.h1_c00075{height:1263.000000px;}
.w0_c00075{width:892.914000px;}
.w1_c00075{width:893.250000px;}
.x0_c00075{left:0.000000px;}
.x2_c00075{left:82.500000px;}
.x3_c00075{left:90.000000px;}
.x4_c00075{left:106.500000px;}
.x5_c00075{left:675.611100px;}
.x1_c00075{left:795.263550px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls5_c00075{letter-spacing:-0.480000pt;}
.ls4_c00075{letter-spacing:0.000000pt;}
.ls0_c00075{letter-spacing:0.640000pt;}
.ls1_c00075{letter-spacing:0.746667pt;}
.ls3_c00075{letter-spacing:1.333333pt;}
.ls2_c00075{letter-spacing:1.466667pt;}
.ws1_c00075{word-spacing:-18.720000pt;}
.ws2_c00075{word-spacing:-15.680000pt;}
.ws0_c00075{word-spacing:-9.066667pt;}
.wse_c00075{word-spacing:-3.200000pt;}
.wsa_c00075{word-spacing:-2.368000pt;}
.ws5_c00075{word-spacing:-1.856000pt;}
.ws12_c00075{word-spacing:-1.333333pt;}
.ws6_c00075{word-spacing:-0.768000pt;}
.ws4_c00075{word-spacing:-0.746667pt;}
.ws11_c00075{word-spacing:-0.192000pt;}
.ws3_c00075{word-spacing:0.000000pt;}
.ws9_c00075{word-spacing:2.496000pt;}
.wsd_c00075{word-spacing:2.752000pt;}
.ws8_c00075{word-spacing:4.608000pt;}
.ws10_c00075{word-spacing:6.080000pt;}
.wsf_c00075{word-spacing:6.336000pt;}
.ws7_c00075{word-spacing:7.616000pt;}
.wsb_c00075{word-spacing:8.192000pt;}
.wsc_c00075{word-spacing:10.752000pt;}
._0_c00075{margin-left:-426.965333pt;}
._1_c00075{margin-left:-3.733333pt;}
._2_c00075{margin-left:-1.280000pt;}
._3_c00075{width:1.772800pt;}
.fs1_c00075{font-size:37.333333pt;}
.fs0_c00075{font-size:53.333333pt;}
.fs5_c00075{font-size:58.666667pt;}
.fs4_c00075{font-size:64.000000pt;}
.fs3_c00075{font-size:74.666667pt;}
.fs2_c00075{font-size:96.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y1_c00075{bottom:36.666667pt;}
.y14_c00075{bottom:174.498400pt;}
.y13_c00075{bottom:201.170400pt;}
.y12_c00075{bottom:227.842400pt;}
.y11_c00075{bottom:254.514400pt;}
.y10_c00075{bottom:281.186400pt;}
.yf_c00075{bottom:334.519733pt;}
.ye_c00075{bottom:414.503733pt;}
.yd_c00075{bottom:441.175733pt;}
.yc_c00075{bottom:467.847733pt;}
.yb_c00075{bottom:494.519733pt;}
.ya_c00075{bottom:547.853067pt;}
.y9_c00075{bottom:627.826400pt;}
.y8_c00075{bottom:654.498400pt;}
.y7_c00075{bottom:681.170400pt;}
.y17_c00075{bottom:681.186400pt;}
.y6_c00075{bottom:707.842400pt;}
.y16_c00075{bottom:707.853067pt;}
.y5_c00075{bottom:734.514400pt;}
.y15_c00075{bottom:734.519733pt;}
.y4_c00075{bottom:761.186400pt;}
.y3_c00075{bottom:814.519733pt;}
.y2_c00075{bottom:894.519733pt;}
.h6_c00075{height:44.704000pt;}
.h2_c00075{height:48.000000pt;}
.h5_c00075{height:57.600000pt;}
.h4_c00075{height:69.813333pt;}
.h3_c00075{height:89.760000pt;}
.h0_c00075{height:1122.520000pt;}
.h1_c00075{height:1122.666667pt;}
.w0_c00075{width:793.701333pt;}
.w1_c00075{width:794.000000pt;}
.x0_c00075{left:0.000000pt;}
.x2_c00075{left:73.333333pt;}
.x3_c00075{left:80.000000pt;}
.x4_c00075{left:94.666667pt;}
.x5_c00075{left:600.543200pt;}
.x1_c00075{left:706.900933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.160000;font-style:normal;font-weight:normal;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_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.199000;font-style: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);}
.m1_c00076{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls1_c00076{letter-spacing:0.000000px;}
.ls0_c00076{letter-spacing:0.720000px;}
.ls2_c00076{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws12_c00076{word-spacing:-5.688000px;}
.ws17_c00076{word-spacing:-1.080000px;}
.ws2_c00076{word-spacing:-0.840000px;}
.ws6_c00076{word-spacing:-0.720000px;}
.ws1_c00076{word-spacing:0.000000px;}
.ws18_c00076{word-spacing:1.656000px;}
.ws11_c00076{word-spacing:1.872000px;}
.wsa_c00076{word-spacing:2.304000px;}
.ws8_c00076{word-spacing:2.952000px;}
.ws7_c00076{word-spacing:3.528000px;}
.ws16_c00076{word-spacing:4.536000px;}
.ws14_c00076{word-spacing:6.048000px;}
.ws4_c00076{word-spacing:6.912000px;}
.ws13_c00076{word-spacing:7.128000px;}
.ws15_c00076{word-spacing:7.344000px;}
.ws10_c00076{word-spacing:7.848000px;}
.wsb_c00076{word-spacing:9.216000px;}
.wsd_c00076{word-spacing:10.440000px;}
.ws9_c00076{word-spacing:10.584000px;}
.wsc_c00076{word-spacing:10.872000px;}
.ws5_c00076{word-spacing:12.096000px;}
.ws3_c00076{word-spacing:12.384000px;}
.wsf_c00076{word-spacing:16.416000px;}
.wse_c00076{word-spacing:16.560000px;}
._0_c00076{margin-left:-480.336000px;}
._6_c00076{margin-left:-5.383200px;}
._1_c00076{margin-left:-4.200000px;}
._2_c00076{margin-left:-1.440000px;}
._4_c00076{width:1.224000px;}
._3_c00076{width:3.312000px;}
._5_c00076{width:7.416000px;}
.fc2_c00076{color:rgb(32,32,32);}
.fc1_c00076{color:rgb(232,86,17);}
.fc0_c00076{color:rgb(60,60,59);}
.fs1_c00076{font-size:42.000000px;}
.fs0_c00076{font-size:60.000000px;}
.fs3_c00076{font-size:72.000000px;}
.fs2_c00076{font-size:84.000000px;}
.y0_c00076{bottom:0.000000px;}
.y1_c00076{bottom:41.250000px;}
.y17_c00076{bottom:256.310700px;}
.y16_c00076{bottom:286.316700px;}
.y15_c00076{bottom:316.322700px;}
.y14_c00076{bottom:346.328700px;}
.y13_c00076{bottom:376.334700px;}
.y12_c00076{bottom:436.334700px;}
.y11_c00076{bottom:526.250700px;}
.y10_c00076{bottom:556.256700px;}
.yf_c00076{bottom:586.262700px;}
.ye_c00076{bottom:616.268700px;}
.yd_c00076{bottom:646.274700px;}
.yc_c00076{bottom:676.280700px;}
.yb_c00076{bottom:706.286700px;}
.ya_c00076{bottom:736.292700px;}
.y9_c00076{bottom:766.298700px;}
.y8_c00076{bottom:796.304700px;}
.y7_c00076{bottom:826.310700px;}
.y6_c00076{bottom:856.316700px;}
.y5_c00076{bottom:886.322700px;}
.y4_c00076{bottom:916.328700px;}
.y3_c00076{bottom:946.334700px;}
.y2_c00076{bottom:1006.334700px;}
.h2_c00076{height:54.000000px;}
.h4_c00076{height:64.800000px;}
.h5_c00076{height:67.320000px;}
.h3_c00076{height:78.540000px;}
.h0_c00076{height:1262.835000px;}
.h1_c00076{height:1263.000000px;}
.w0_c00076{width:892.914000px;}
.w1_c00076{width:893.250000px;}
.x0_c00076{left:0.000000px;}
.x2_c00076{left:90.000000px;}
.x3_c00076{left:106.500000px;}
.x1_c00076{left:797.363550px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls1_c00076{letter-spacing:0.000000pt;}
.ls0_c00076{letter-spacing:0.640000pt;}
.ls2_c00076{letter-spacing:0.746667pt;}
.ws0_c00076{word-spacing:-9.066667pt;}
.ws12_c00076{word-spacing:-5.056000pt;}
.ws17_c00076{word-spacing:-0.960000pt;}
.ws2_c00076{word-spacing:-0.746667pt;}
.ws6_c00076{word-spacing:-0.640000pt;}
.ws1_c00076{word-spacing:0.000000pt;}
.ws18_c00076{word-spacing:1.472000pt;}
.ws11_c00076{word-spacing:1.664000pt;}
.wsa_c00076{word-spacing:2.048000pt;}
.ws8_c00076{word-spacing:2.624000pt;}
.ws7_c00076{word-spacing:3.136000pt;}
.ws16_c00076{word-spacing:4.032000pt;}
.ws14_c00076{word-spacing:5.376000pt;}
.ws4_c00076{word-spacing:6.144000pt;}
.ws13_c00076{word-spacing:6.336000pt;}
.ws15_c00076{word-spacing:6.528000pt;}
.ws10_c00076{word-spacing:6.976000pt;}
.wsb_c00076{word-spacing:8.192000pt;}
.wsd_c00076{word-spacing:9.280000pt;}
.ws9_c00076{word-spacing:9.408000pt;}
.wsc_c00076{word-spacing:9.664000pt;}
.ws5_c00076{word-spacing:10.752000pt;}
.ws3_c00076{word-spacing:11.008000pt;}
.wsf_c00076{word-spacing:14.592000pt;}
.wse_c00076{word-spacing:14.720000pt;}
._0_c00076{margin-left:-426.965333pt;}
._6_c00076{margin-left:-4.785067pt;}
._1_c00076{margin-left:-3.733333pt;}
._2_c00076{margin-left:-1.280000pt;}
._4_c00076{width:1.088000pt;}
._3_c00076{width:2.944000pt;}
._5_c00076{width:6.592000pt;}
.fs1_c00076{font-size:37.333333pt;}
.fs0_c00076{font-size:53.333333pt;}
.fs3_c00076{font-size:64.000000pt;}
.fs2_c00076{font-size:74.666667pt;}
.y0_c00076{bottom:0.000000pt;}
.y1_c00076{bottom:36.666667pt;}
.y17_c00076{bottom:227.831733pt;}
.y16_c00076{bottom:254.503733pt;}
.y15_c00076{bottom:281.175733pt;}
.y14_c00076{bottom:307.847733pt;}
.y13_c00076{bottom:334.519733pt;}
.y12_c00076{bottom:387.853067pt;}
.y11_c00076{bottom:467.778400pt;}
.y10_c00076{bottom:494.450400pt;}
.yf_c00076{bottom:521.122400pt;}
.ye_c00076{bottom:547.794400pt;}
.yd_c00076{bottom:574.466400pt;}
.yc_c00076{bottom:601.138400pt;}
.yb_c00076{bottom:627.810400pt;}
.ya_c00076{bottom:654.482400pt;}
.y9_c00076{bottom:681.154400pt;}
.y8_c00076{bottom:707.826400pt;}
.y7_c00076{bottom:734.498400pt;}
.y6_c00076{bottom:761.170400pt;}
.y5_c00076{bottom:787.842400pt;}
.y4_c00076{bottom:814.514400pt;}
.y3_c00076{bottom:841.186400pt;}
.y2_c00076{bottom:894.519733pt;}
.h2_c00076{height:48.000000pt;}
.h4_c00076{height:57.600000pt;}
.h5_c00076{height:59.840000pt;}
.h3_c00076{height:69.813333pt;}
.h0_c00076{height:1122.520000pt;}
.h1_c00076{height:1122.666667pt;}
.w0_c00076{width:793.701333pt;}
.w1_c00076{width:794.000000pt;}
.x0_c00076{left:0.000000pt;}
.x2_c00076{left:80.000000pt;}
.x3_c00076{left:94.666667pt;}
.x1_c00076{left:708.767600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.160000;font-style:normal;font-weight:normal;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_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.161000;font-style: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);}
.m1_c00077{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls5_c00077{letter-spacing:-0.324000px;}
.ls4_c00077{letter-spacing:0.000000px;}
.ls1_c00077{letter-spacing:0.720000px;}
.ls0_c00077{letter-spacing:0.840000px;}
.ls3_c00077{letter-spacing:1.500000px;}
.ls2_c00077{letter-spacing:1.650000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00077{word-spacing:-21.276000px;}
.ws2_c00077{word-spacing:-17.640000px;}
.ws3_c00077{word-spacing:-14.850000px;}
.ws4_c00077{word-spacing:-11.700000px;}
.ws0_c00077{word-spacing:-10.200000px;}
.wsa_c00077{word-spacing:-5.184000px;}
.ws10_c00077{word-spacing:-1.512000px;}
.ws13_c00077{word-spacing:-1.500000px;}
.ws6_c00077{word-spacing:-0.840000px;}
.ws11_c00077{word-spacing:-0.792000px;}
.ws5_c00077{word-spacing:0.000000px;}
.ws12_c00077{word-spacing:1.152000px;}
.ws7_c00077{word-spacing:2.160000px;}
.ws9_c00077{word-spacing:2.376000px;}
.ws8_c00077{word-spacing:2.952000px;}
.wsb_c00077{word-spacing:6.336000px;}
.wsc_c00077{word-spacing:9.144000px;}
.wse_c00077{word-spacing:10.080000px;}
.wsd_c00077{word-spacing:18.144000px;}
.wsf_c00077{word-spacing:20.952000px;}
._0_c00077{margin-left:-480.336000px;}
._4_c00077{margin-left:-5.263200px;}
._1_c00077{margin-left:-4.200000px;}
._3_c00077{margin-left:-2.350800px;}
._2_c00077{margin-left:-1.134000px;}
.fc3_c00077{color:rgb(32,32,32);}
.fc2_c00077{color:rgb(233,83,14);}
.fc1_c00077{color:rgb(232,86,17);}
.fc4_c00077{color:rgb(157,157,156);}
.fc0_c00077{color:rgb(60,60,59);}
.fs1_c00077{font-size:42.000000px;}
.fs0_c00077{font-size:60.000000px;}
.fs5_c00077{font-size:66.000000px;}
.fs4_c00077{font-size:72.000000px;}
.fs3_c00077{font-size:84.000000px;}
.fs2_c00077{font-size:108.000000px;}
.y0_c00077{bottom:0.000000px;}
.y1_c00077{bottom:41.250000px;}
.y12_c00077{bottom:346.286700px;}
.y11_c00077{bottom:376.292700px;}
.y10_c00077{bottom:406.298700px;}
.yf_c00077{bottom:436.304700px;}
.ye_c00077{bottom:466.310700px;}
.yd_c00077{bottom:496.316700px;}
.yc_c00077{bottom:526.322700px;}
.yb_c00077{bottom:556.328700px;}
.ya_c00077{bottom:586.334700px;}
.y9_c00077{bottom:646.334700px;}
.y8_c00077{bottom:736.310700px;}
.y7_c00077{bottom:766.316700px;}
.y15_c00077{bottom:766.334700px;}
.y6_c00077{bottom:796.322700px;}
.y14_c00077{bottom:796.334700px;}
.y5_c00077{bottom:826.328700px;}
.y13_c00077{bottom:826.334700px;}
.y4_c00077{bottom:856.334700px;}
.y3_c00077{bottom:916.334700px;}
.y2_c00077{bottom:1006.334700px;}
.h6_c00077{height:50.292000px;}
.h2_c00077{height:54.000000px;}
.h5_c00077{height:64.800000px;}
.h4_c00077{height:78.540000px;}
.h3_c00077{height:100.980000px;}
.h0_c00077{height:1262.835000px;}
.h1_c00077{height:1263.000000px;}
.w0_c00077{width:892.914000px;}
.w1_c00077{width:893.250000px;}
.x0_c00077{left:0.000000px;}
.x2_c00077{left:82.500000px;}
.x3_c00077{left:90.000000px;}
.x4_c00077{left:106.500000px;}
.x5_c00077{left:675.611100px;}
.x1_c00077{left:795.338550px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls5_c00077{letter-spacing:-0.288000pt;}
.ls4_c00077{letter-spacing:0.000000pt;}
.ls1_c00077{letter-spacing:0.640000pt;}
.ls0_c00077{letter-spacing:0.746667pt;}
.ls3_c00077{letter-spacing:1.333333pt;}
.ls2_c00077{letter-spacing:1.466667pt;}
.ws1_c00077{word-spacing:-18.912000pt;}
.ws2_c00077{word-spacing:-15.680000pt;}
.ws3_c00077{word-spacing:-13.200000pt;}
.ws4_c00077{word-spacing:-10.400000pt;}
.ws0_c00077{word-spacing:-9.066667pt;}
.wsa_c00077{word-spacing:-4.608000pt;}
.ws10_c00077{word-spacing:-1.344000pt;}
.ws13_c00077{word-spacing:-1.333333pt;}
.ws6_c00077{word-spacing:-0.746667pt;}
.ws11_c00077{word-spacing:-0.704000pt;}
.ws5_c00077{word-spacing:0.000000pt;}
.ws12_c00077{word-spacing:1.024000pt;}
.ws7_c00077{word-spacing:1.920000pt;}
.ws9_c00077{word-spacing:2.112000pt;}
.ws8_c00077{word-spacing:2.624000pt;}
.wsb_c00077{word-spacing:5.632000pt;}
.wsc_c00077{word-spacing:8.128000pt;}
.wse_c00077{word-spacing:8.960000pt;}
.wsd_c00077{word-spacing:16.128000pt;}
.wsf_c00077{word-spacing:18.624000pt;}
._0_c00077{margin-left:-426.965333pt;}
._4_c00077{margin-left:-4.678400pt;}
._1_c00077{margin-left:-3.733333pt;}
._3_c00077{margin-left:-2.089600pt;}
._2_c00077{margin-left:-1.008000pt;}
.fs1_c00077{font-size:37.333333pt;}
.fs0_c00077{font-size:53.333333pt;}
.fs5_c00077{font-size:58.666667pt;}
.fs4_c00077{font-size:64.000000pt;}
.fs3_c00077{font-size:74.666667pt;}
.fs2_c00077{font-size:96.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y1_c00077{bottom:36.666667pt;}
.y12_c00077{bottom:307.810400pt;}
.y11_c00077{bottom:334.482400pt;}
.y10_c00077{bottom:361.154400pt;}
.yf_c00077{bottom:387.826400pt;}
.ye_c00077{bottom:414.498400pt;}
.yd_c00077{bottom:441.170400pt;}
.yc_c00077{bottom:467.842400pt;}
.yb_c00077{bottom:494.514400pt;}
.ya_c00077{bottom:521.186400pt;}
.y9_c00077{bottom:574.519733pt;}
.y8_c00077{bottom:654.498400pt;}
.y7_c00077{bottom:681.170400pt;}
.y15_c00077{bottom:681.186400pt;}
.y6_c00077{bottom:707.842400pt;}
.y14_c00077{bottom:707.853067pt;}
.y5_c00077{bottom:734.514400pt;}
.y13_c00077{bottom:734.519733pt;}
.y4_c00077{bottom:761.186400pt;}
.y3_c00077{bottom:814.519733pt;}
.y2_c00077{bottom:894.519733pt;}
.h6_c00077{height:44.704000pt;}
.h2_c00077{height:48.000000pt;}
.h5_c00077{height:57.600000pt;}
.h4_c00077{height:69.813333pt;}
.h3_c00077{height:89.760000pt;}
.h0_c00077{height:1122.520000pt;}
.h1_c00077{height:1122.666667pt;}
.w0_c00077{width:793.701333pt;}
.w1_c00077{width:794.000000pt;}
.x0_c00077{left:0.000000pt;}
.x2_c00077{left:73.333333pt;}
.x3_c00077{left:80.000000pt;}
.x4_c00077{left:94.666667pt;}
.x5_c00077{left:600.543200pt;}
.x1_c00077{left:706.967600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc04a28aa7b69d9b6e0497a8.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.160000;font-style:normal;font-weight:normal;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_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.199000;font-style: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);}
.m1_c00078{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls1_c00078{letter-spacing:0.000000px;}
.ls0_c00078{letter-spacing:0.720000px;}
.ls2_c00078{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws14_c00078{word-spacing:-2.592000px;}
.ws2_c00078{word-spacing:-0.840000px;}
.ws9_c00078{word-spacing:-0.720000px;}
.ws1_c00078{word-spacing:0.000000px;}
.ws5_c00078{word-spacing:2.088000px;}
.ws6_c00078{word-spacing:2.448000px;}
.ws12_c00078{word-spacing:2.952000px;}
.ws13_c00078{word-spacing:4.104000px;}
.wsa_c00078{word-spacing:5.112000px;}
.ws8_c00078{word-spacing:5.256000px;}
.wsf_c00078{word-spacing:7.920000px;}
.ws4_c00078{word-spacing:8.280000px;}
.ws7_c00078{word-spacing:9.864000px;}
.ws3_c00078{word-spacing:11.088000px;}
.ws10_c00078{word-spacing:12.312000px;}
.ws11_c00078{word-spacing:14.472000px;}
.wsb_c00078{word-spacing:17.208000px;}
.wsc_c00078{word-spacing:20.232000px;}
.wse_c00078{word-spacing:20.376000px;}
.wsd_c00078{word-spacing:23.976000px;}
._0_c00078{margin-left:-480.336000px;}
._1_c00078{margin-left:-4.200000px;}
._2_c00078{margin-left:-2.131200px;}
._4_c00078{margin-left:-1.029600px;}
._3_c00078{width:6.696000px;}
.fc2_c00078{color:rgb(32,32,32);}
.fc1_c00078{color:rgb(232,86,17);}
.fc0_c00078{color:rgb(60,60,59);}
.fs1_c00078{font-size:42.000000px;}
.fs0_c00078{font-size:60.000000px;}
.fs3_c00078{font-size:72.000000px;}
.fs2_c00078{font-size:84.000000px;}
.y0_c00078{bottom:0.000000px;}
.y1_c00078{bottom:41.250000px;}
.y13_c00078{bottom:376.310700px;}
.y12_c00078{bottom:406.316700px;}
.y11_c00078{bottom:436.322700px;}
.y10_c00078{bottom:466.328700px;}
.yf_c00078{bottom:496.334700px;}
.ye_c00078{bottom:556.334700px;}
.yd_c00078{bottom:646.274700px;}
.yc_c00078{bottom:676.280700px;}
.yb_c00078{bottom:706.286700px;}
.ya_c00078{bottom:736.292700px;}
.y9_c00078{bottom:766.298700px;}
.y8_c00078{bottom:796.304700px;}
.y7_c00078{bottom:826.310700px;}
.y6_c00078{bottom:856.316700px;}
.y5_c00078{bottom:886.322700px;}
.y4_c00078{bottom:916.328700px;}
.y3_c00078{bottom:946.334700px;}
.y2_c00078{bottom:1006.334700px;}
.h2_c00078{height:54.000000px;}
.h4_c00078{height:64.800000px;}
.h5_c00078{height:67.320000px;}
.h3_c00078{height:78.540000px;}
.h0_c00078{height:1262.835000px;}
.h1_c00078{height:1263.000000px;}
.w0_c00078{width:892.914000px;}
.w1_c00078{width:893.250000px;}
.x0_c00078{left:0.000000px;}
.x2_c00078{left:90.000000px;}
.x3_c00078{left:106.500000px;}
.x1_c00078{left:795.263550px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls1_c00078{letter-spacing:0.000000pt;}
.ls0_c00078{letter-spacing:0.640000pt;}
.ls2_c00078{letter-spacing:0.746667pt;}
.ws0_c00078{word-spacing:-9.066667pt;}
.ws14_c00078{word-spacing:-2.304000pt;}
.ws2_c00078{word-spacing:-0.746667pt;}
.ws9_c00078{word-spacing:-0.640000pt;}
.ws1_c00078{word-spacing:0.000000pt;}
.ws5_c00078{word-spacing:1.856000pt;}
.ws6_c00078{word-spacing:2.176000pt;}
.ws12_c00078{word-spacing:2.624000pt;}
.ws13_c00078{word-spacing:3.648000pt;}
.wsa_c00078{word-spacing:4.544000pt;}
.ws8_c00078{word-spacing:4.672000pt;}
.wsf_c00078{word-spacing:7.040000pt;}
.ws4_c00078{word-spacing:7.360000pt;}
.ws7_c00078{word-spacing:8.768000pt;}
.ws3_c00078{word-spacing:9.856000pt;}
.ws10_c00078{word-spacing:10.944000pt;}
.ws11_c00078{word-spacing:12.864000pt;}
.wsb_c00078{word-spacing:15.296000pt;}
.wsc_c00078{word-spacing:17.984000pt;}
.wse_c00078{word-spacing:18.112000pt;}
.wsd_c00078{word-spacing:21.312000pt;}
._0_c00078{margin-left:-426.965333pt;}
._1_c00078{margin-left:-3.733333pt;}
._2_c00078{margin-left:-1.894400pt;}
._4_c00078{margin-left:-0.915200pt;}
._3_c00078{width:5.952000pt;}
.fs1_c00078{font-size:37.333333pt;}
.fs0_c00078{font-size:53.333333pt;}
.fs3_c00078{font-size:64.000000pt;}
.fs2_c00078{font-size:74.666667pt;}
.y0_c00078{bottom:0.000000pt;}
.y1_c00078{bottom:36.666667pt;}
.y13_c00078{bottom:334.498400pt;}
.y12_c00078{bottom:361.170400pt;}
.y11_c00078{bottom:387.842400pt;}
.y10_c00078{bottom:414.514400pt;}
.yf_c00078{bottom:441.186400pt;}
.ye_c00078{bottom:494.519733pt;}
.yd_c00078{bottom:574.466400pt;}
.yc_c00078{bottom:601.138400pt;}
.yb_c00078{bottom:627.810400pt;}
.ya_c00078{bottom:654.482400pt;}
.y9_c00078{bottom:681.154400pt;}
.y8_c00078{bottom:707.826400pt;}
.y7_c00078{bottom:734.498400pt;}
.y6_c00078{bottom:761.170400pt;}
.y5_c00078{bottom:787.842400pt;}
.y4_c00078{bottom:814.514400pt;}
.y3_c00078{bottom:841.186400pt;}
.y2_c00078{bottom:894.519733pt;}
.h2_c00078{height:48.000000pt;}
.h4_c00078{height:57.600000pt;}
.h5_c00078{height:59.840000pt;}
.h3_c00078{height:69.813333pt;}
.h0_c00078{height:1122.520000pt;}
.h1_c00078{height:1122.666667pt;}
.w0_c00078{width:793.701333pt;}
.w1_c00078{width:794.000000pt;}
.x0_c00078{left:0.000000pt;}
.x2_c00078{left:80.000000pt;}
.x3_c00078{left:94.666667pt;}
.x1_c00078{left:706.900933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00079;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00079;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:1.155000;font-style: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);}
.m1_c00079{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls4_c00079{letter-spacing:-0.864000px;}
.ls3_c00079{letter-spacing:-0.288000px;}
.ls2_c00079{letter-spacing:0.000000px;}
.ls0_c00079{letter-spacing:0.864000px;}
.ls1_c00079{letter-spacing:1.200000px;}
.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;}
}
.ws8_c00079{word-spacing:-13.200000px;}
.ws2_c00079{word-spacing:-13.104000px;}
.ws1_c00079{word-spacing:-11.952000px;}
.ws0_c00079{word-spacing:-10.200000px;}
.ws4_c00079{word-spacing:-9.360000px;}
.ws7_c00079{word-spacing:-2.040000px;}
.ws6_c00079{word-spacing:-1.440000px;}
.ws3_c00079{word-spacing:0.000000px;}
.ws5_c00079{word-spacing:1.728000px;}
._0_c00079{margin-left:-480.336600px;}
._b_c00079{margin-left:-9.600000px;}
._4_c00079{margin-left:-8.424000px;}
._8_c00079{margin-left:-6.912000px;}
._7_c00079{margin-left:-5.479200px;}
._1_c00079{margin-left:-4.200000px;}
._2_c00079{margin-left:-2.160000px;}
._5_c00079{margin-left:-1.080000px;}
._6_c00079{width:1.728000px;}
._a_c00079{width:6.360000px;}
._3_c00079{width:10.080000px;}
._9_c00079{width:13.200000px;}
.fc4_c00079{color:rgb(128,128,128);}
.fc3_c00079{color:rgb(255,255,255);}
.fc2_c00079{color:rgb(233,83,14);}
.fc1_c00079{color:rgb(232,86,17);}
.fc0_c00079{color:rgb(60,60,59);}
.fs1_c00079{font-size:42.000000px;}
.fs0_c00079{font-size:60.000000px;}
.fs3_c00079{font-size:72.000000px;}
.fs4_c00079{font-size:120.000000px;}
.fs2_c00079{font-size:360.000000px;}
.y0_c00079{bottom:0.000000px;}
.y1_c00079{bottom:41.250000px;}
.yb_c00079{bottom:544.304700px;}
.ya_c00079{bottom:565.310700px;}
.y9_c00079{bottom:586.316700px;}
.y8_c00079{bottom:622.316700px;}
.y7_c00079{bottom:643.322700px;}
.y6_c00079{bottom:664.328700px;}
.y5_c00079{bottom:685.334700px;}
.y4_c00079{bottom:706.340700px;}
.y3_c00079{bottom:752.834700px;}
.yf_c00079{bottom:916.334700px;}
.ye_c00079{bottom:946.334700px;}
.yd_c00079{bottom:976.334700px;}
.yc_c00079{bottom:1006.334700px;}
.y2_c00079{bottom:1093.526700px;}
.h2_c00079{height:54.000000px;}
.h5_c00079{height:64.800000px;}
.h4_c00079{height:66.456000px;}
.h6_c00079{height:67.320000px;}
.h7_c00079{height:112.200000px;}
.h3_c00079{height:324.000000px;}
.h0_c00079{height:1262.835000px;}
.h1_c00079{height:1263.000000px;}
.w0_c00079{width:892.914000px;}
.w1_c00079{width:893.250000px;}
.x0_c00079{left:0.000000px;}
.x2_c00079{left:81.290250px;}
.x3_c00079{left:82.393650px;}
.x5_c00079{left:112.287450px;}
.x4_c00079{left:127.393650px;}
.x1_c00079{left:793.253700px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls4_c00079{letter-spacing:-0.768000pt;}
.ls3_c00079{letter-spacing:-0.256000pt;}
.ls2_c00079{letter-spacing:0.000000pt;}
.ls0_c00079{letter-spacing:0.768000pt;}
.ls1_c00079{letter-spacing:1.066667pt;}
.ws8_c00079{word-spacing:-11.733333pt;}
.ws2_c00079{word-spacing:-11.648000pt;}
.ws1_c00079{word-spacing:-10.624000pt;}
.ws0_c00079{word-spacing:-9.066667pt;}
.ws4_c00079{word-spacing:-8.320000pt;}
.ws7_c00079{word-spacing:-1.813333pt;}
.ws6_c00079{word-spacing:-1.280000pt;}
.ws3_c00079{word-spacing:0.000000pt;}
.ws5_c00079{word-spacing:1.536000pt;}
._0_c00079{margin-left:-426.965867pt;}
._b_c00079{margin-left:-8.533333pt;}
._4_c00079{margin-left:-7.488000pt;}
._8_c00079{margin-left:-6.144000pt;}
._7_c00079{margin-left:-4.870400pt;}
._1_c00079{margin-left:-3.733333pt;}
._2_c00079{margin-left:-1.920000pt;}
._5_c00079{margin-left:-0.960000pt;}
._6_c00079{width:1.536000pt;}
._a_c00079{width:5.653333pt;}
._3_c00079{width:8.960000pt;}
._9_c00079{width:11.733333pt;}
.fs1_c00079{font-size:37.333333pt;}
.fs0_c00079{font-size:53.333333pt;}
.fs3_c00079{font-size:64.000000pt;}
.fs4_c00079{font-size:106.666667pt;}
.fs2_c00079{font-size:320.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y1_c00079{bottom:36.666667pt;}
.yb_c00079{bottom:483.826400pt;}
.ya_c00079{bottom:502.498400pt;}
.y9_c00079{bottom:521.170400pt;}
.y8_c00079{bottom:553.170400pt;}
.y7_c00079{bottom:571.842400pt;}
.y6_c00079{bottom:590.514400pt;}
.y5_c00079{bottom:609.186400pt;}
.y4_c00079{bottom:627.858400pt;}
.y3_c00079{bottom:669.186400pt;}
.yf_c00079{bottom:814.519733pt;}
.ye_c00079{bottom:841.186400pt;}
.yd_c00079{bottom:867.853067pt;}
.yc_c00079{bottom:894.519733pt;}
.y2_c00079{bottom:972.023733pt;}
.h2_c00079{height:48.000000pt;}
.h5_c00079{height:57.600000pt;}
.h4_c00079{height:59.072000pt;}
.h6_c00079{height:59.840000pt;}
.h7_c00079{height:99.733333pt;}
.h3_c00079{height:288.000000pt;}
.h0_c00079{height:1122.520000pt;}
.h1_c00079{height:1122.666667pt;}
.w0_c00079{width:793.701333pt;}
.w1_c00079{width:794.000000pt;}
.x0_c00079{left:0.000000pt;}
.x2_c00079{left:72.258000pt;}
.x3_c00079{left:73.238800pt;}
.x5_c00079{left:99.811067pt;}
.x4_c00079{left:113.238800pt;}
.x1_c00079{left:705.114400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00080;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00080;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls4_c00080{letter-spacing:-0.540000px;}
.ls3_c00080{letter-spacing:0.000000px;}
.ls0_c00080{letter-spacing:0.720000px;}
.ls2_c00080{letter-spacing:1.500000px;}
.ls1_c00080{letter-spacing:1.650000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00080{word-spacing:-21.060000px;}
.ws0_c00080{word-spacing:-10.200000px;}
.ws10_c00080{word-spacing:-3.672000px;}
.wsa_c00080{word-spacing:-2.520000px;}
.wsf_c00080{word-spacing:-2.016000px;}
.ws1c_c00080{word-spacing:-1.500000px;}
.ws14_c00080{word-spacing:-0.864000px;}
.ws17_c00080{word-spacing:-0.720000px;}
.ws15_c00080{word-spacing:-0.288000px;}
.ws2_c00080{word-spacing:0.000000px;}
.ws13_c00080{word-spacing:0.144000px;}
.ws1b_c00080{word-spacing:0.720000px;}
.ws11_c00080{word-spacing:1.152000px;}
.wsc_c00080{word-spacing:1.512000px;}
.ws9_c00080{word-spacing:3.024000px;}
.ws4_c00080{word-spacing:3.384000px;}
.ws5_c00080{word-spacing:4.248000px;}
.ws8_c00080{word-spacing:4.392000px;}
.ws18_c00080{word-spacing:4.824000px;}
.wsd_c00080{word-spacing:5.328000px;}
.ws7_c00080{word-spacing:8.424000px;}
.wsb_c00080{word-spacing:9.216000px;}
.ws6_c00080{word-spacing:9.720000px;}
.ws16_c00080{word-spacing:9.864000px;}
.wse_c00080{word-spacing:10.440000px;}
.ws19_c00080{word-spacing:12.240000px;}
.ws3_c00080{word-spacing:12.528000px;}
.ws12_c00080{word-spacing:14.256000px;}
.ws1a_c00080{word-spacing:14.904000px;}
._0_c00080{margin-left:-480.337200px;}
._4_c00080{margin-left:-7.092000px;}
._3_c00080{margin-left:-5.594400px;}
._1_c00080{margin-left:-4.200000px;}
._2_c00080{margin-left:-1.476000px;}
.fc3_c00080{color:rgb(32,32,32);}
.fc2_c00080{color:rgb(233,83,14);}
.fc1_c00080{color:rgb(232,86,17);}
.fc4_c00080{color:rgb(157,157,156);}
.fc0_c00080{color:rgb(60,60,59);}
.fs1_c00080{font-size:42.000000px;}
.fs0_c00080{font-size:60.000000px;}
.fs4_c00080{font-size:66.000000px;}
.fs3_c00080{font-size:72.000000px;}
.fs2_c00080{font-size:108.000000px;}
.y0_c00080{bottom:0.000000px;}
.y1_c00080{bottom:41.250000px;}
.y1c_c00080{bottom:196.184700px;}
.y1b_c00080{bottom:226.190700px;}
.y1a_c00080{bottom:256.196700px;}
.y19_c00080{bottom:286.202700px;}
.y18_c00080{bottom:316.208700px;}
.y17_c00080{bottom:346.214700px;}
.y16_c00080{bottom:376.220700px;}
.y15_c00080{bottom:406.226700px;}
.y14_c00080{bottom:436.232700px;}
.y13_c00080{bottom:466.238700px;}
.y12_c00080{bottom:496.244700px;}
.y11_c00080{bottom:526.250700px;}
.y10_c00080{bottom:556.256700px;}
.yf_c00080{bottom:586.262700px;}
.ye_c00080{bottom:616.268700px;}
.yd_c00080{bottom:646.274700px;}
.yc_c00080{bottom:676.280700px;}
.yb_c00080{bottom:706.286700px;}
.y24_c00080{bottom:735.652650px;}
.ya_c00080{bottom:736.292700px;}
.y23_c00080{bottom:765.652650px;}
.y9_c00080{bottom:766.298700px;}
.y22_c00080{bottom:795.652650px;}
.y8_c00080{bottom:796.304700px;}
.y21_c00080{bottom:825.652650px;}
.y7_c00080{bottom:826.310700px;}
.y20_c00080{bottom:855.652650px;}
.y6_c00080{bottom:856.316700px;}
.y1f_c00080{bottom:885.652650px;}
.y5_c00080{bottom:886.322700px;}
.y1e_c00080{bottom:915.652650px;}
.y4_c00080{bottom:916.328700px;}
.y1d_c00080{bottom:945.652650px;}
.y3_c00080{bottom:946.334700px;}
.y2_c00080{bottom:1006.334700px;}
.h5_c00080{height:50.292000px;}
.h2_c00080{height:54.000000px;}
.h4_c00080{height:64.800000px;}
.h3_c00080{height:100.980000px;}
.h0_c00080{height:1262.835000px;}
.h1_c00080{height:1263.000000px;}
.w0_c00080{width:892.914000px;}
.w1_c00080{width:893.250000px;}
.x0_c00080{left:0.000000px;}
.x2_c00080{left:82.500000px;}
.x3_c00080{left:106.500000px;}
.x4_c00080{left:675.611100px;}
.x1_c00080{left:796.913850px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls4_c00080{letter-spacing:-0.480000pt;}
.ls3_c00080{letter-spacing:0.000000pt;}
.ls0_c00080{letter-spacing:0.640000pt;}
.ls2_c00080{letter-spacing:1.333333pt;}
.ls1_c00080{letter-spacing:1.466667pt;}
.ws1_c00080{word-spacing:-18.720000pt;}
.ws0_c00080{word-spacing:-9.066667pt;}
.ws10_c00080{word-spacing:-3.264000pt;}
.wsa_c00080{word-spacing:-2.240000pt;}
.wsf_c00080{word-spacing:-1.792000pt;}
.ws1c_c00080{word-spacing:-1.333333pt;}
.ws14_c00080{word-spacing:-0.768000pt;}
.ws17_c00080{word-spacing:-0.640000pt;}
.ws15_c00080{word-spacing:-0.256000pt;}
.ws2_c00080{word-spacing:0.000000pt;}
.ws13_c00080{word-spacing:0.128000pt;}
.ws1b_c00080{word-spacing:0.640000pt;}
.ws11_c00080{word-spacing:1.024000pt;}
.wsc_c00080{word-spacing:1.344000pt;}
.ws9_c00080{word-spacing:2.688000pt;}
.ws4_c00080{word-spacing:3.008000pt;}
.ws5_c00080{word-spacing:3.776000pt;}
.ws8_c00080{word-spacing:3.904000pt;}
.ws18_c00080{word-spacing:4.288000pt;}
.wsd_c00080{word-spacing:4.736000pt;}
.ws7_c00080{word-spacing:7.488000pt;}
.wsb_c00080{word-spacing:8.192000pt;}
.ws6_c00080{word-spacing:8.640000pt;}
.ws16_c00080{word-spacing:8.768000pt;}
.wse_c00080{word-spacing:9.280000pt;}
.ws19_c00080{word-spacing:10.880000pt;}
.ws3_c00080{word-spacing:11.136000pt;}
.ws12_c00080{word-spacing:12.672000pt;}
.ws1a_c00080{word-spacing:13.248000pt;}
._0_c00080{margin-left:-426.966400pt;}
._4_c00080{margin-left:-6.304000pt;}
._3_c00080{margin-left:-4.972800pt;}
._1_c00080{margin-left:-3.733333pt;}
._2_c00080{margin-left:-1.312000pt;}
.fs1_c00080{font-size:37.333333pt;}
.fs0_c00080{font-size:53.333333pt;}
.fs4_c00080{font-size:58.666667pt;}
.fs3_c00080{font-size:64.000000pt;}
.fs2_c00080{font-size:96.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y1_c00080{bottom:36.666667pt;}
.y1c_c00080{bottom:174.386400pt;}
.y1b_c00080{bottom:201.058400pt;}
.y1a_c00080{bottom:227.730400pt;}
.y19_c00080{bottom:254.402400pt;}
.y18_c00080{bottom:281.074400pt;}
.y17_c00080{bottom:307.746400pt;}
.y16_c00080{bottom:334.418400pt;}
.y15_c00080{bottom:361.090400pt;}
.y14_c00080{bottom:387.762400pt;}
.y13_c00080{bottom:414.434400pt;}
.y12_c00080{bottom:441.106400pt;}
.y11_c00080{bottom:467.778400pt;}
.y10_c00080{bottom:494.450400pt;}
.yf_c00080{bottom:521.122400pt;}
.ye_c00080{bottom:547.794400pt;}
.yd_c00080{bottom:574.466400pt;}
.yc_c00080{bottom:601.138400pt;}
.yb_c00080{bottom:627.810400pt;}
.y24_c00080{bottom:653.913467pt;}
.ya_c00080{bottom:654.482400pt;}
.y23_c00080{bottom:680.580133pt;}
.y9_c00080{bottom:681.154400pt;}
.y22_c00080{bottom:707.246800pt;}
.y8_c00080{bottom:707.826400pt;}
.y21_c00080{bottom:733.913467pt;}
.y7_c00080{bottom:734.498400pt;}
.y20_c00080{bottom:760.580133pt;}
.y6_c00080{bottom:761.170400pt;}
.y1f_c00080{bottom:787.246800pt;}
.y5_c00080{bottom:787.842400pt;}
.y1e_c00080{bottom:813.913467pt;}
.y4_c00080{bottom:814.514400pt;}
.y1d_c00080{bottom:840.580133pt;}
.y3_c00080{bottom:841.186400pt;}
.y2_c00080{bottom:894.519733pt;}
.h5_c00080{height:44.704000pt;}
.h2_c00080{height:48.000000pt;}
.h4_c00080{height:57.600000pt;}
.h3_c00080{height:89.760000pt;}
.h0_c00080{height:1122.520000pt;}
.h1_c00080{height:1122.666667pt;}
.w0_c00080{width:793.701333pt;}
.w1_c00080{width:794.000000pt;}
.x0_c00080{left:0.000000pt;}
.x2_c00080{left:73.333333pt;}
.x3_c00080{left:94.666667pt;}
.x4_c00080{left:600.543200pt;}
.x1_c00080{left:708.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2581d2ed290f9903b36e797.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00081;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls4_c00081{letter-spacing:-0.324000px;}
.ls3_c00081{letter-spacing:0.000000px;}
.ls0_c00081{letter-spacing:0.720000px;}
.ls2_c00081{letter-spacing:1.500000px;}
.ls1_c00081{letter-spacing:1.650000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00081{word-spacing:-21.276000px;}
.ws2_c00081{word-spacing:-14.850000px;}
.ws0_c00081{word-spacing:-10.200000px;}
.ws1a_c00081{word-spacing:-1.860000px;}
.wsb_c00081{word-spacing:-1.728000px;}
.ws1b_c00081{word-spacing:-1.500000px;}
.wsc_c00081{word-spacing:-1.296000px;}
.ws19_c00081{word-spacing:-1.224000px;}
.wsd_c00081{word-spacing:-0.648000px;}
.ws3_c00081{word-spacing:0.000000px;}
.wsa_c00081{word-spacing:0.720000px;}
.ws9_c00081{word-spacing:1.296000px;}
.ws6_c00081{word-spacing:2.232000px;}
.ws14_c00081{word-spacing:2.592000px;}
.ws15_c00081{word-spacing:3.528000px;}
.ws11_c00081{word-spacing:3.744000px;}
.wsf_c00081{word-spacing:3.960000px;}
.ws17_c00081{word-spacing:4.104000px;}
.ws10_c00081{word-spacing:4.248000px;}
.wse_c00081{word-spacing:5.040000px;}
.ws7_c00081{word-spacing:5.472000px;}
.ws13_c00081{word-spacing:6.120000px;}
.ws8_c00081{word-spacing:8.496000px;}
.ws12_c00081{word-spacing:9.936000px;}
.ws18_c00081{word-spacing:10.584000px;}
.ws5_c00081{word-spacing:12.024000px;}
.ws16_c00081{word-spacing:12.312000px;}
.ws4_c00081{word-spacing:15.840000px;}
._0_c00081{margin-left:-480.336000px;}
._8_c00081{margin-left:-6.926400px;}
._5_c00081{margin-left:-5.760000px;}
._1_c00081{margin-left:-4.200000px;}
._3_c00081{margin-left:-2.160000px;}
._2_c00081{margin-left:-1.134000px;}
._7_c00081{width:1.346400px;}
._6_c00081{width:3.211200px;}
._4_c00081{width:4.779600px;}
.fc3_c00081{color:rgb(32,32,32);}
.fc2_c00081{color:rgb(233,83,14);}
.fc1_c00081{color:rgb(232,86,17);}
.fc4_c00081{color:rgb(157,157,156);}
.fc0_c00081{color:rgb(60,60,59);}
.fs1_c00081{font-size:42.000000px;}
.fs0_c00081{font-size:60.000000px;}
.fs4_c00081{font-size:66.000000px;}
.fs3_c00081{font-size:72.000000px;}
.fs2_c00081{font-size:108.000000px;}
.y0_c00081{bottom:0.000000px;}
.y1_c00081{bottom:41.250000px;}
.y1a_c00081{bottom:256.196700px;}
.y19_c00081{bottom:286.202700px;}
.y18_c00081{bottom:316.208700px;}
.y17_c00081{bottom:346.214700px;}
.y16_c00081{bottom:376.220700px;}
.y15_c00081{bottom:406.226700px;}
.y14_c00081{bottom:436.232700px;}
.y13_c00081{bottom:466.238700px;}
.y12_c00081{bottom:496.244700px;}
.y11_c00081{bottom:526.250700px;}
.y10_c00081{bottom:556.256700px;}
.yf_c00081{bottom:586.262700px;}
.ye_c00081{bottom:616.268700px;}
.yd_c00081{bottom:646.274700px;}
.yc_c00081{bottom:676.280700px;}
.yb_c00081{bottom:706.286700px;}
.ya_c00081{bottom:736.292700px;}
.y9_c00081{bottom:766.298700px;}
.y20_c00081{bottom:795.652650px;}
.y8_c00081{bottom:796.304700px;}
.y1f_c00081{bottom:825.652650px;}
.y7_c00081{bottom:826.310700px;}
.y1e_c00081{bottom:855.652650px;}
.y6_c00081{bottom:856.316700px;}
.y1d_c00081{bottom:885.652650px;}
.y5_c00081{bottom:886.322700px;}
.y1c_c00081{bottom:915.652650px;}
.y4_c00081{bottom:916.328700px;}
.y1b_c00081{bottom:945.652650px;}
.y3_c00081{bottom:946.334700px;}
.y2_c00081{bottom:1006.334700px;}
.h5_c00081{height:50.292000px;}
.h2_c00081{height:54.000000px;}
.h4_c00081{height:64.800000px;}
.h3_c00081{height:100.980000px;}
.h0_c00081{height:1262.835000px;}
.h1_c00081{height:1263.000000px;}
.w0_c00081{width:892.914000px;}
.w1_c00081{width:893.250000px;}
.x0_c00081{left:0.000000px;}
.x2_c00081{left:82.500000px;}
.x3_c00081{left:106.500000px;}
.x4_c00081{left:675.611100px;}
.x1_c00081{left:794.438550px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls4_c00081{letter-spacing:-0.288000pt;}
.ls3_c00081{letter-spacing:0.000000pt;}
.ls0_c00081{letter-spacing:0.640000pt;}
.ls2_c00081{letter-spacing:1.333333pt;}
.ls1_c00081{letter-spacing:1.466667pt;}
.ws1_c00081{word-spacing:-18.912000pt;}
.ws2_c00081{word-spacing:-13.200000pt;}
.ws0_c00081{word-spacing:-9.066667pt;}
.ws1a_c00081{word-spacing:-1.653333pt;}
.wsb_c00081{word-spacing:-1.536000pt;}
.ws1b_c00081{word-spacing:-1.333333pt;}
.wsc_c00081{word-spacing:-1.152000pt;}
.ws19_c00081{word-spacing:-1.088000pt;}
.wsd_c00081{word-spacing:-0.576000pt;}
.ws3_c00081{word-spacing:0.000000pt;}
.wsa_c00081{word-spacing:0.640000pt;}
.ws9_c00081{word-spacing:1.152000pt;}
.ws6_c00081{word-spacing:1.984000pt;}
.ws14_c00081{word-spacing:2.304000pt;}
.ws15_c00081{word-spacing:3.136000pt;}
.ws11_c00081{word-spacing:3.328000pt;}
.wsf_c00081{word-spacing:3.520000pt;}
.ws17_c00081{word-spacing:3.648000pt;}
.ws10_c00081{word-spacing:3.776000pt;}
.wse_c00081{word-spacing:4.480000pt;}
.ws7_c00081{word-spacing:4.864000pt;}
.ws13_c00081{word-spacing:5.440000pt;}
.ws8_c00081{word-spacing:7.552000pt;}
.ws12_c00081{word-spacing:8.832000pt;}
.ws18_c00081{word-spacing:9.408000pt;}
.ws5_c00081{word-spacing:10.688000pt;}
.ws16_c00081{word-spacing:10.944000pt;}
.ws4_c00081{word-spacing:14.080000pt;}
._0_c00081{margin-left:-426.965333pt;}
._8_c00081{margin-left:-6.156800pt;}
._5_c00081{margin-left:-5.120000pt;}
._1_c00081{margin-left:-3.733333pt;}
._3_c00081{margin-left:-1.920000pt;}
._2_c00081{margin-left:-1.008000pt;}
._7_c00081{width:1.196800pt;}
._6_c00081{width:2.854400pt;}
._4_c00081{width:4.248533pt;}
.fs1_c00081{font-size:37.333333pt;}
.fs0_c00081{font-size:53.333333pt;}
.fs4_c00081{font-size:58.666667pt;}
.fs3_c00081{font-size:64.000000pt;}
.fs2_c00081{font-size:96.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.y1_c00081{bottom:36.666667pt;}
.y1a_c00081{bottom:227.730400pt;}
.y19_c00081{bottom:254.402400pt;}
.y18_c00081{bottom:281.074400pt;}
.y17_c00081{bottom:307.746400pt;}
.y16_c00081{bottom:334.418400pt;}
.y15_c00081{bottom:361.090400pt;}
.y14_c00081{bottom:387.762400pt;}
.y13_c00081{bottom:414.434400pt;}
.y12_c00081{bottom:441.106400pt;}
.y11_c00081{bottom:467.778400pt;}
.y10_c00081{bottom:494.450400pt;}
.yf_c00081{bottom:521.122400pt;}
.ye_c00081{bottom:547.794400pt;}
.yd_c00081{bottom:574.466400pt;}
.yc_c00081{bottom:601.138400pt;}
.yb_c00081{bottom:627.810400pt;}
.ya_c00081{bottom:654.482400pt;}
.y9_c00081{bottom:681.154400pt;}
.y20_c00081{bottom:707.246800pt;}
.y8_c00081{bottom:707.826400pt;}
.y1f_c00081{bottom:733.913467pt;}
.y7_c00081{bottom:734.498400pt;}
.y1e_c00081{bottom:760.580133pt;}
.y6_c00081{bottom:761.170400pt;}
.y1d_c00081{bottom:787.246800pt;}
.y5_c00081{bottom:787.842400pt;}
.y1c_c00081{bottom:813.913467pt;}
.y4_c00081{bottom:814.514400pt;}
.y1b_c00081{bottom:840.580133pt;}
.y3_c00081{bottom:841.186400pt;}
.y2_c00081{bottom:894.519733pt;}
.h5_c00081{height:44.704000pt;}
.h2_c00081{height:48.000000pt;}
.h4_c00081{height:57.600000pt;}
.h3_c00081{height:89.760000pt;}
.h0_c00081{height:1122.520000pt;}
.h1_c00081{height:1122.666667pt;}
.w0_c00081{width:793.701333pt;}
.w1_c00081{width:794.000000pt;}
.x0_c00081{left:0.000000pt;}
.x2_c00081{left:73.333333pt;}
.x3_c00081{left:94.666667pt;}
.x4_c00081{left:600.543200pt;}
.x1_c00081{left:706.167600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00082;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00082;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00082;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00082{font-family:ff5_c00082;line-height:1.155000;font-style: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);}
.m1_c00082{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.ls3_c00082{letter-spacing:-0.288000px;}
.ls2_c00082{letter-spacing:0.000000px;}
.ls0_c00082{letter-spacing:0.864000px;}
.ls1_c00082{letter-spacing:1.200000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00082{word-spacing:-13.104000px;}
.ws2_c00082{word-spacing:-11.952000px;}
.ws0_c00082{word-spacing:-10.200000px;}
.ws4_c00082{word-spacing:-7.128000px;}
.ws6_c00082{word-spacing:-6.264000px;}
.ws8_c00082{word-spacing:-3.816000px;}
.ws5_c00082{word-spacing:-2.808000px;}
.ws7_c00082{word-spacing:-1.728000px;}
.ws3_c00082{word-spacing:0.000000px;}
._0_c00082{margin-left:-480.336600px;}
._c_c00082{margin-left:-17.208000px;}
._b_c00082{margin-left:-12.000000px;}
._a_c00082{margin-left:-10.848000px;}
._4_c00082{margin-left:-9.648000px;}
._8_c00082{margin-left:-8.208000px;}
._7_c00082{margin-left:-6.480000px;}
._1_c00082{margin-left:-4.200000px;}
._9_c00082{margin-left:-2.592000px;}
._3_c00082{margin-left:-1.440000px;}
._6_c00082{width:1.368000px;}
._5_c00082{width:2.808000px;}
._2_c00082{width:7.128000px;}
.fc3_c00082{color:rgb(255,255,255);}
.fc2_c00082{color:rgb(233,83,14);}
.fc1_c00082{color:rgb(232,86,17);}
.fc0_c00082{color:rgb(60,60,59);}
.fs1_c00082{font-size:42.000000px;}
.fs0_c00082{font-size:60.000000px;}
.fs3_c00082{font-size:72.000000px;}
.fs4_c00082{font-size:120.000000px;}
.fs2_c00082{font-size:360.000000px;}
.y0_c00082{bottom:0.000000px;}
.y1_c00082{bottom:41.250000px;}
.y1b_c00082{bottom:167.468700px;}
.y1a_c00082{bottom:188.474700px;}
.y19_c00082{bottom:209.480700px;}
.y18_c00082{bottom:230.486700px;}
.y17_c00082{bottom:251.492700px;}
.y16_c00082{bottom:293.486700px;}
.y15_c00082{bottom:314.492700px;}
.y14_c00082{bottom:335.498700px;}
.y13_c00082{bottom:356.504700px;}
.y12_c00082{bottom:398.498700px;}
.y11_c00082{bottom:420.098700px;}
.y10_c00082{bottom:441.104700px;}
.yf_c00082{bottom:462.110700px;}
.ye_c00082{bottom:483.116700px;}
.yd_c00082{bottom:525.110700px;}
.yc_c00082{bottom:546.710700px;}
.yb_c00082{bottom:567.716700px;}
.ya_c00082{bottom:588.722700px;}
.y9_c00082{bottom:609.728700px;}
.y8_c00082{bottom:651.722700px;}
.y7_c00082{bottom:673.322700px;}
.y6_c00082{bottom:694.328700px;}
.y5_c00082{bottom:715.334700px;}
.y4_c00082{bottom:736.340700px;}
.y3_c00082{bottom:782.834700px;}
.y1f_c00082{bottom:916.334700px;}
.y1e_c00082{bottom:946.334700px;}
.y1d_c00082{bottom:976.334700px;}
.y1c_c00082{bottom:1006.334700px;}
.y2_c00082{bottom:1093.526700px;}
.h2_c00082{height:54.000000px;}
.h5_c00082{height:64.800000px;}
.h4_c00082{height:66.456000px;}
.h6_c00082{height:112.200000px;}
.h3_c00082{height:324.000000px;}
.h0_c00082{height:1262.835000px;}
.h1_c00082{height:1263.000000px;}
.w0_c00082{width:892.914000px;}
.w1_c00082{width:893.250000px;}
.x0_c00082{left:0.000000px;}
.x2_c00082{left:81.290250px;}
.x3_c00082{left:82.393650px;}
.x5_c00082{left:112.287450px;}
.x4_c00082{left:127.393650px;}
.x1_c00082{left:794.288700px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls3_c00082{letter-spacing:-0.256000pt;}
.ls2_c00082{letter-spacing:0.000000pt;}
.ls0_c00082{letter-spacing:0.768000pt;}
.ls1_c00082{letter-spacing:1.066667pt;}
.ws1_c00082{word-spacing:-11.648000pt;}
.ws2_c00082{word-spacing:-10.624000pt;}
.ws0_c00082{word-spacing:-9.066667pt;}
.ws4_c00082{word-spacing:-6.336000pt;}
.ws6_c00082{word-spacing:-5.568000pt;}
.ws8_c00082{word-spacing:-3.392000pt;}
.ws5_c00082{word-spacing:-2.496000pt;}
.ws7_c00082{word-spacing:-1.536000pt;}
.ws3_c00082{word-spacing:0.000000pt;}
._0_c00082{margin-left:-426.965867pt;}
._c_c00082{margin-left:-15.296000pt;}
._b_c00082{margin-left:-10.666667pt;}
._a_c00082{margin-left:-9.642667pt;}
._4_c00082{margin-left:-8.576000pt;}
._8_c00082{margin-left:-7.296000pt;}
._7_c00082{margin-left:-5.760000pt;}
._1_c00082{margin-left:-3.733333pt;}
._9_c00082{margin-left:-2.304000pt;}
._3_c00082{margin-left:-1.280000pt;}
._6_c00082{width:1.216000pt;}
._5_c00082{width:2.496000pt;}
._2_c00082{width:6.336000pt;}
.fs1_c00082{font-size:37.333333pt;}
.fs0_c00082{font-size:53.333333pt;}
.fs3_c00082{font-size:64.000000pt;}
.fs4_c00082{font-size:106.666667pt;}
.fs2_c00082{font-size:320.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y1_c00082{bottom:36.666667pt;}
.y1b_c00082{bottom:148.861067pt;}
.y1a_c00082{bottom:167.533067pt;}
.y19_c00082{bottom:186.205067pt;}
.y18_c00082{bottom:204.877067pt;}
.y17_c00082{bottom:223.549067pt;}
.y16_c00082{bottom:260.877067pt;}
.y15_c00082{bottom:279.549067pt;}
.y14_c00082{bottom:298.221067pt;}
.y13_c00082{bottom:316.893067pt;}
.y12_c00082{bottom:354.221067pt;}
.y11_c00082{bottom:373.421067pt;}
.y10_c00082{bottom:392.093067pt;}
.yf_c00082{bottom:410.765067pt;}
.ye_c00082{bottom:429.437067pt;}
.yd_c00082{bottom:466.765067pt;}
.yc_c00082{bottom:485.965067pt;}
.yb_c00082{bottom:504.637067pt;}
.ya_c00082{bottom:523.309067pt;}
.y9_c00082{bottom:541.981067pt;}
.y8_c00082{bottom:579.309067pt;}
.y7_c00082{bottom:598.509067pt;}
.y6_c00082{bottom:617.181067pt;}
.y5_c00082{bottom:635.853067pt;}
.y4_c00082{bottom:654.525067pt;}
.y3_c00082{bottom:695.853067pt;}
.y1f_c00082{bottom:814.519733pt;}
.y1e_c00082{bottom:841.186400pt;}
.y1d_c00082{bottom:867.853067pt;}
.y1c_c00082{bottom:894.519733pt;}
.y2_c00082{bottom:972.023733pt;}
.h2_c00082{height:48.000000pt;}
.h5_c00082{height:57.600000pt;}
.h4_c00082{height:59.072000pt;}
.h6_c00082{height:99.733333pt;}
.h3_c00082{height:288.000000pt;}
.h0_c00082{height:1122.520000pt;}
.h1_c00082{height:1122.666667pt;}
.w0_c00082{width:793.701333pt;}
.w1_c00082{width:794.000000pt;}
.x0_c00082{left:0.000000pt;}
.x2_c00082{left:72.258000pt;}
.x3_c00082{left:73.238800pt;}
.x5_c00082{left:99.811067pt;}
.x4_c00082{left:113.238800pt;}
.x1_c00082{left:706.034400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.161000;font-style: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);}
.m1_c00083{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls5_c00083{letter-spacing:-0.540000px;}
.ls4_c00083{letter-spacing:0.000000px;}
.ls0_c00083{letter-spacing:0.720000px;}
.ls1_c00083{letter-spacing:0.840000px;}
.ls3_c00083{letter-spacing:1.500000px;}
.ls2_c00083{letter-spacing:1.650000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00083{word-spacing:-21.060000px;}
.ws3_c00083{word-spacing:-17.640000px;}
.ws2_c00083{word-spacing:-12.960000px;}
.ws0_c00083{word-spacing:-10.200000px;}
.ws13_c00083{word-spacing:-1.500000px;}
.ws5_c00083{word-spacing:-0.840000px;}
.ws7_c00083{word-spacing:-0.720000px;}
.ws12_c00083{word-spacing:-0.648000px;}
.wsa_c00083{word-spacing:-0.576000px;}
.wsc_c00083{word-spacing:-0.360000px;}
.ws4_c00083{word-spacing:0.000000px;}
.wsb_c00083{word-spacing:2.304000px;}
.ws9_c00083{word-spacing:2.592000px;}
.wsd_c00083{word-spacing:4.032000px;}
.wse_c00083{word-spacing:4.392000px;}
.wsf_c00083{word-spacing:4.968000px;}
.ws8_c00083{word-spacing:6.120000px;}
.ws6_c00083{word-spacing:7.488000px;}
.ws11_c00083{word-spacing:8.856000px;}
.ws10_c00083{word-spacing:14.976000px;}
._0_c00083{margin-left:-480.336600px;}
._1_c00083{margin-left:-4.200000px;}
._3_c00083{margin-left:-1.368000px;}
._5_c00083{width:3.312000px;}
._6_c00083{width:5.040000px;}
._4_c00083{width:6.768000px;}
._2_c00083{width:8.064000px;}
.fcf_c00083{color:rgb(157,157,156);}
.fce_c00083{color:rgb(42,42,42);}
.fcd_c00083{color:rgb(13,13,13);}
.fc0_c00083{color:rgb(60,60,59);}
.fc1_c00083{color:rgb(232,86,17);}
.fc3_c00083{color:rgb(32,32,32);}
.fc4_c00083{color:rgb(14,14,14);}
.fc2_c00083{color:rgb(233,83,14);}
.fc5_c00083{color:rgb(18,18,18);}
.fc7_c00083{color:rgb(12,12,12);}
.fc8_c00083{color:rgb(22,22,22);}
.fc9_c00083{color:rgb(28,28,28);}
.fca_c00083{color:rgb(34,34,34);}
.fc6_c00083{color:rgb(46,46,46);}
.fcb_c00083{color:rgb(17,17,17);}
.fcc_c00083{color:rgb(26,26,26);}
.fs1_c00083{font-size:42.000000px;}
.fs0_c00083{font-size:60.000000px;}
.fs5_c00083{font-size:66.000000px;}
.fs4_c00083{font-size:72.000000px;}
.fs3_c00083{font-size:84.000000px;}
.fs2_c00083{font-size:108.000000px;}
.y0_c00083{bottom:0.000000px;}
.y1_c00083{bottom:41.250000px;}
.y13_c00083{bottom:316.316700px;}
.y12_c00083{bottom:346.322700px;}
.y11_c00083{bottom:376.328700px;}
.y10_c00083{bottom:406.334700px;}
.yf_c00083{bottom:466.334700px;}
.ye_c00083{bottom:556.274700px;}
.yd_c00083{bottom:586.280700px;}
.yc_c00083{bottom:616.286700px;}
.yb_c00083{bottom:646.292700px;}
.ya_c00083{bottom:676.298700px;}
.y9_c00083{bottom:706.304700px;}
.y8_c00083{bottom:736.310700px;}
.y17_c00083{bottom:736.334700px;}
.y7_c00083{bottom:766.316700px;}
.y16_c00083{bottom:766.334700px;}
.y6_c00083{bottom:796.322700px;}
.y15_c00083{bottom:796.334700px;}
.y5_c00083{bottom:826.328700px;}
.y14_c00083{bottom:826.334700px;}
.y4_c00083{bottom:856.334700px;}
.y3_c00083{bottom:916.334700px;}
.y2_c00083{bottom:1006.334700px;}
.h6_c00083{height:50.292000px;}
.h2_c00083{height:54.000000px;}
.h5_c00083{height:64.800000px;}
.h4_c00083{height:78.540000px;}
.h3_c00083{height:100.980000px;}
.h0_c00083{height:1262.835000px;}
.h1_c00083{height:1263.000000px;}
.w0_c00083{width:892.914000px;}
.w1_c00083{width:893.250000px;}
.x0_c00083{left:0.000000px;}
.x2_c00083{left:82.500000px;}
.x3_c00083{left:90.000000px;}
.x4_c00083{left:106.500000px;}
.x5_c00083{left:675.611100px;}
.x1_c00083{left:793.313700px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls5_c00083{letter-spacing:-0.480000pt;}
.ls4_c00083{letter-spacing:0.000000pt;}
.ls0_c00083{letter-spacing:0.640000pt;}
.ls1_c00083{letter-spacing:0.746667pt;}
.ls3_c00083{letter-spacing:1.333333pt;}
.ls2_c00083{letter-spacing:1.466667pt;}
.ws1_c00083{word-spacing:-18.720000pt;}
.ws3_c00083{word-spacing:-15.680000pt;}
.ws2_c00083{word-spacing:-11.520000pt;}
.ws0_c00083{word-spacing:-9.066667pt;}
.ws13_c00083{word-spacing:-1.333333pt;}
.ws5_c00083{word-spacing:-0.746667pt;}
.ws7_c00083{word-spacing:-0.640000pt;}
.ws12_c00083{word-spacing:-0.576000pt;}
.wsa_c00083{word-spacing:-0.512000pt;}
.wsc_c00083{word-spacing:-0.320000pt;}
.ws4_c00083{word-spacing:0.000000pt;}
.wsb_c00083{word-spacing:2.048000pt;}
.ws9_c00083{word-spacing:2.304000pt;}
.wsd_c00083{word-spacing:3.584000pt;}
.wse_c00083{word-spacing:3.904000pt;}
.wsf_c00083{word-spacing:4.416000pt;}
.ws8_c00083{word-spacing:5.440000pt;}
.ws6_c00083{word-spacing:6.656000pt;}
.ws11_c00083{word-spacing:7.872000pt;}
.ws10_c00083{word-spacing:13.312000pt;}
._0_c00083{margin-left:-426.965867pt;}
._1_c00083{margin-left:-3.733333pt;}
._3_c00083{margin-left:-1.216000pt;}
._5_c00083{width:2.944000pt;}
._6_c00083{width:4.480000pt;}
._4_c00083{width:6.016000pt;}
._2_c00083{width:7.168000pt;}
.fs1_c00083{font-size:37.333333pt;}
.fs0_c00083{font-size:53.333333pt;}
.fs5_c00083{font-size:58.666667pt;}
.fs4_c00083{font-size:64.000000pt;}
.fs3_c00083{font-size:74.666667pt;}
.fs2_c00083{font-size:96.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y1_c00083{bottom:36.666667pt;}
.y13_c00083{bottom:281.170400pt;}
.y12_c00083{bottom:307.842400pt;}
.y11_c00083{bottom:334.514400pt;}
.y10_c00083{bottom:361.186400pt;}
.yf_c00083{bottom:414.519733pt;}
.ye_c00083{bottom:494.466400pt;}
.yd_c00083{bottom:521.138400pt;}
.yc_c00083{bottom:547.810400pt;}
.yb_c00083{bottom:574.482400pt;}
.ya_c00083{bottom:601.154400pt;}
.y9_c00083{bottom:627.826400pt;}
.y8_c00083{bottom:654.498400pt;}
.y17_c00083{bottom:654.519733pt;}
.y7_c00083{bottom:681.170400pt;}
.y16_c00083{bottom:681.186400pt;}
.y6_c00083{bottom:707.842400pt;}
.y15_c00083{bottom:707.853067pt;}
.y5_c00083{bottom:734.514400pt;}
.y14_c00083{bottom:734.519733pt;}
.y4_c00083{bottom:761.186400pt;}
.y3_c00083{bottom:814.519733pt;}
.y2_c00083{bottom:894.519733pt;}
.h6_c00083{height:44.704000pt;}
.h2_c00083{height:48.000000pt;}
.h5_c00083{height:57.600000pt;}
.h4_c00083{height:69.813333pt;}
.h3_c00083{height:89.760000pt;}
.h0_c00083{height:1122.520000pt;}
.h1_c00083{height:1122.666667pt;}
.w0_c00083{width:793.701333pt;}
.w1_c00083{width:794.000000pt;}
.x0_c00083{left:0.000000pt;}
.x2_c00083{left:73.333333pt;}
.x3_c00083{left:80.000000pt;}
.x4_c00083{left:94.666667pt;}
.x5_c00083{left:600.543200pt;}
.x1_c00083{left:705.167733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls2_c00084{letter-spacing:0.000000px;}
.ls0_c00084{letter-spacing:0.720000px;}
.ls1_c00084{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws5_c00084{word-spacing:-1.584000px;}
.ws2_c00084{word-spacing:-0.840000px;}
.ws1_c00084{word-spacing:0.000000px;}
.wsc_c00084{word-spacing:1.728000px;}
.ws7_c00084{word-spacing:2.808000px;}
.ws10_c00084{word-spacing:3.240000px;}
.wsb_c00084{word-spacing:6.408000px;}
.wsd_c00084{word-spacing:7.848000px;}
.ws3_c00084{word-spacing:8.064000px;}
.wsa_c00084{word-spacing:8.208000px;}
.wse_c00084{word-spacing:9.216000px;}
.ws6_c00084{word-spacing:11.160000px;}
.ws9_c00084{word-spacing:12.600000px;}
.ws4_c00084{word-spacing:14.544000px;}
.wsf_c00084{word-spacing:14.688000px;}
.ws8_c00084{word-spacing:18.360000px;}
._0_c00084{margin-left:-480.336000px;}
._4_c00084{margin-left:-7.200000px;}
._3_c00084{margin-left:-5.760000px;}
._1_c00084{margin-left:-4.200000px;}
._5_c00084{margin-left:-2.880000px;}
._2_c00084{margin-left:-1.440000px;}
.fc2_c00084{color:rgb(32,32,32);}
.fc1_c00084{color:rgb(232,86,17);}
.fc0_c00084{color:rgb(60,60,59);}
.fs1_c00084{font-size:42.000000px;}
.fs0_c00084{font-size:60.000000px;}
.fs3_c00084{font-size:72.000000px;}
.fs2_c00084{font-size:84.000000px;}
.y0_c00084{bottom:0.000000px;}
.y1_c00084{bottom:41.250000px;}
.y15_c00084{bottom:226.316700px;}
.y14_c00084{bottom:256.322700px;}
.y13_c00084{bottom:286.328700px;}
.y12_c00084{bottom:316.334700px;}
.y11_c00084{bottom:376.334700px;}
.y10_c00084{bottom:466.298700px;}
.yf_c00084{bottom:496.304700px;}
.ye_c00084{bottom:526.310700px;}
.yd_c00084{bottom:556.316700px;}
.yc_c00084{bottom:586.322700px;}
.yb_c00084{bottom:616.328700px;}
.ya_c00084{bottom:646.334700px;}
.y9_c00084{bottom:706.334700px;}
.y8_c00084{bottom:796.304700px;}
.y7_c00084{bottom:826.310700px;}
.y6_c00084{bottom:856.316700px;}
.y5_c00084{bottom:886.322700px;}
.y4_c00084{bottom:916.328700px;}
.y3_c00084{bottom:946.334700px;}
.y2_c00084{bottom:1006.334700px;}
.h2_c00084{height:54.000000px;}
.h4_c00084{height:64.800000px;}
.h3_c00084{height:78.540000px;}
.h0_c00084{height:1262.835000px;}
.h1_c00084{height:1263.000000px;}
.w0_c00084{width:892.914000px;}
.w1_c00084{width:893.250000px;}
.x0_c00084{left:0.000000px;}
.x2_c00084{left:90.000000px;}
.x3_c00084{left:106.500000px;}
.x1_c00084{left:794.363550px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls2_c00084{letter-spacing:0.000000pt;}
.ls0_c00084{letter-spacing:0.640000pt;}
.ls1_c00084{letter-spacing:0.746667pt;}
.ws0_c00084{word-spacing:-9.066667pt;}
.ws5_c00084{word-spacing:-1.408000pt;}
.ws2_c00084{word-spacing:-0.746667pt;}
.ws1_c00084{word-spacing:0.000000pt;}
.wsc_c00084{word-spacing:1.536000pt;}
.ws7_c00084{word-spacing:2.496000pt;}
.ws10_c00084{word-spacing:2.880000pt;}
.wsb_c00084{word-spacing:5.696000pt;}
.wsd_c00084{word-spacing:6.976000pt;}
.ws3_c00084{word-spacing:7.168000pt;}
.wsa_c00084{word-spacing:7.296000pt;}
.wse_c00084{word-spacing:8.192000pt;}
.ws6_c00084{word-spacing:9.920000pt;}
.ws9_c00084{word-spacing:11.200000pt;}
.ws4_c00084{word-spacing:12.928000pt;}
.wsf_c00084{word-spacing:13.056000pt;}
.ws8_c00084{word-spacing:16.320000pt;}
._0_c00084{margin-left:-426.965333pt;}
._4_c00084{margin-left:-6.400000pt;}
._3_c00084{margin-left:-5.120000pt;}
._1_c00084{margin-left:-3.733333pt;}
._5_c00084{margin-left:-2.560000pt;}
._2_c00084{margin-left:-1.280000pt;}
.fs1_c00084{font-size:37.333333pt;}
.fs0_c00084{font-size:53.333333pt;}
.fs3_c00084{font-size:64.000000pt;}
.fs2_c00084{font-size:74.666667pt;}
.y0_c00084{bottom:0.000000pt;}
.y1_c00084{bottom:36.666667pt;}
.y15_c00084{bottom:201.170400pt;}
.y14_c00084{bottom:227.842400pt;}
.y13_c00084{bottom:254.514400pt;}
.y12_c00084{bottom:281.186400pt;}
.y11_c00084{bottom:334.519733pt;}
.y10_c00084{bottom:414.487733pt;}
.yf_c00084{bottom:441.159733pt;}
.ye_c00084{bottom:467.831733pt;}
.yd_c00084{bottom:494.503733pt;}
.yc_c00084{bottom:521.175733pt;}
.yb_c00084{bottom:547.847733pt;}
.ya_c00084{bottom:574.519733pt;}
.y9_c00084{bottom:627.853067pt;}
.y8_c00084{bottom:707.826400pt;}
.y7_c00084{bottom:734.498400pt;}
.y6_c00084{bottom:761.170400pt;}
.y5_c00084{bottom:787.842400pt;}
.y4_c00084{bottom:814.514400pt;}
.y3_c00084{bottom:841.186400pt;}
.y2_c00084{bottom:894.519733pt;}
.h2_c00084{height:48.000000pt;}
.h4_c00084{height:57.600000pt;}
.h3_c00084{height:69.813333pt;}
.h0_c00084{height:1122.520000pt;}
.h1_c00084{height:1122.666667pt;}
.w0_c00084{width:793.701333pt;}
.w1_c00084{width:794.000000pt;}
.x0_c00084{left:0.000000pt;}
.x2_c00084{left:80.000000pt;}
.x3_c00084{left:94.666667pt;}
.x1_c00084{left:706.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_311dd56d08d3cad216b12910.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00085;src:url('chunks/assets/font_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00085;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00085;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00085{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls5_c00085{letter-spacing:-0.324000px;}
.ls4_c00085{letter-spacing:0.000000px;}
.ls0_c00085{letter-spacing:0.720000px;}
.ls1_c00085{letter-spacing:0.840000px;}
.ls3_c00085{letter-spacing:1.500000px;}
.ls2_c00085{letter-spacing:1.650000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00085{word-spacing:-21.276000px;}
.ws3_c00085{word-spacing:-17.640000px;}
.ws4_c00085{word-spacing:-14.850000px;}
.ws2_c00085{word-spacing:-12.960000px;}
.ws0_c00085{word-spacing:-10.200000px;}
.wsf_c00085{word-spacing:-2.448000px;}
.ws8_c00085{word-spacing:-2.088000px;}
.ws9_c00085{word-spacing:-1.800000px;}
.ws16_c00085{word-spacing:-1.500000px;}
.wsa_c00085{word-spacing:-1.368000px;}
.wse_c00085{word-spacing:-1.152000px;}
.ws6_c00085{word-spacing:-0.840000px;}
.ws11_c00085{word-spacing:-0.720000px;}
.wsc_c00085{word-spacing:-0.648000px;}
.ws5_c00085{word-spacing:0.000000px;}
.ws13_c00085{word-spacing:3.456000px;}
.ws12_c00085{word-spacing:5.040000px;}
.ws15_c00085{word-spacing:5.184000px;}
.wsd_c00085{word-spacing:5.832000px;}
.ws7_c00085{word-spacing:9.504000px;}
.ws14_c00085{word-spacing:11.016000px;}
.wsb_c00085{word-spacing:16.344000px;}
.ws10_c00085{word-spacing:17.496000px;}
._0_c00085{margin-left:-480.336000px;}
._4_c00085{margin-left:-5.767200px;}
._1_c00085{margin-left:-4.200000px;}
._3_c00085{margin-left:-2.466000px;}
._2_c00085{margin-left:-1.134000px;}
.fc3_c00085{color:rgb(32,32,32);}
.fc2_c00085{color:rgb(233,83,14);}
.fc1_c00085{color:rgb(232,86,17);}
.fc4_c00085{color:rgb(157,157,156);}
.fc0_c00085{color:rgb(60,60,59);}
.fs1_c00085{font-size:42.000000px;}
.fs0_c00085{font-size:60.000000px;}
.fs5_c00085{font-size:66.000000px;}
.fs4_c00085{font-size:72.000000px;}
.fs3_c00085{font-size:84.000000px;}
.fs2_c00085{font-size:108.000000px;}
.y0_c00085{bottom:0.000000px;}
.y1_c00085{bottom:41.250000px;}
.y18_c00085{bottom:76.304700px;}
.y17_c00085{bottom:106.310700px;}
.y16_c00085{bottom:136.316700px;}
.y15_c00085{bottom:166.322700px;}
.y14_c00085{bottom:196.328700px;}
.y13_c00085{bottom:226.334700px;}
.y12_c00085{bottom:286.334700px;}
.y11_c00085{bottom:376.322700px;}
.y10_c00085{bottom:406.328700px;}
.yf_c00085{bottom:436.334700px;}
.ye_c00085{bottom:496.334700px;}
.yd_c00085{bottom:586.280700px;}
.yc_c00085{bottom:616.286700px;}
.yb_c00085{bottom:646.292700px;}
.ya_c00085{bottom:676.298700px;}
.y9_c00085{bottom:706.304700px;}
.y8_c00085{bottom:736.310700px;}
.y7_c00085{bottom:766.316700px;}
.y1b_c00085{bottom:766.334700px;}
.y6_c00085{bottom:796.322700px;}
.y1a_c00085{bottom:796.334700px;}
.y5_c00085{bottom:826.328700px;}
.y19_c00085{bottom:826.334700px;}
.y4_c00085{bottom:856.334700px;}
.y3_c00085{bottom:916.334700px;}
.y2_c00085{bottom:1006.334700px;}
.h6_c00085{height:50.292000px;}
.h2_c00085{height:54.000000px;}
.h5_c00085{height:64.800000px;}
.h4_c00085{height:78.540000px;}
.h3_c00085{height:100.980000px;}
.h0_c00085{height:1262.835000px;}
.h1_c00085{height:1263.000000px;}
.w0_c00085{width:892.914000px;}
.w1_c00085{width:893.250000px;}
.x0_c00085{left:0.000000px;}
.x2_c00085{left:82.500000px;}
.x3_c00085{left:90.000000px;}
.x4_c00085{left:106.500000px;}
.x5_c00085{left:675.611100px;}
.x1_c00085{left:793.238550px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls5_c00085{letter-spacing:-0.288000pt;}
.ls4_c00085{letter-spacing:0.000000pt;}
.ls0_c00085{letter-spacing:0.640000pt;}
.ls1_c00085{letter-spacing:0.746667pt;}
.ls3_c00085{letter-spacing:1.333333pt;}
.ls2_c00085{letter-spacing:1.466667pt;}
.ws1_c00085{word-spacing:-18.912000pt;}
.ws3_c00085{word-spacing:-15.680000pt;}
.ws4_c00085{word-spacing:-13.200000pt;}
.ws2_c00085{word-spacing:-11.520000pt;}
.ws0_c00085{word-spacing:-9.066667pt;}
.wsf_c00085{word-spacing:-2.176000pt;}
.ws8_c00085{word-spacing:-1.856000pt;}
.ws9_c00085{word-spacing:-1.600000pt;}
.ws16_c00085{word-spacing:-1.333333pt;}
.wsa_c00085{word-spacing:-1.216000pt;}
.wse_c00085{word-spacing:-1.024000pt;}
.ws6_c00085{word-spacing:-0.746667pt;}
.ws11_c00085{word-spacing:-0.640000pt;}
.wsc_c00085{word-spacing:-0.576000pt;}
.ws5_c00085{word-spacing:0.000000pt;}
.ws13_c00085{word-spacing:3.072000pt;}
.ws12_c00085{word-spacing:4.480000pt;}
.ws15_c00085{word-spacing:4.608000pt;}
.wsd_c00085{word-spacing:5.184000pt;}
.ws7_c00085{word-spacing:8.448000pt;}
.ws14_c00085{word-spacing:9.792000pt;}
.wsb_c00085{word-spacing:14.528000pt;}
.ws10_c00085{word-spacing:15.552000pt;}
._0_c00085{margin-left:-426.965333pt;}
._4_c00085{margin-left:-5.126400pt;}
._1_c00085{margin-left:-3.733333pt;}
._3_c00085{margin-left:-2.192000pt;}
._2_c00085{margin-left:-1.008000pt;}
.fs1_c00085{font-size:37.333333pt;}
.fs0_c00085{font-size:53.333333pt;}
.fs5_c00085{font-size:58.666667pt;}
.fs4_c00085{font-size:64.000000pt;}
.fs3_c00085{font-size:74.666667pt;}
.fs2_c00085{font-size:96.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y1_c00085{bottom:36.666667pt;}
.y18_c00085{bottom:67.826400pt;}
.y17_c00085{bottom:94.498400pt;}
.y16_c00085{bottom:121.170400pt;}
.y15_c00085{bottom:147.842400pt;}
.y14_c00085{bottom:174.514400pt;}
.y13_c00085{bottom:201.186400pt;}
.y12_c00085{bottom:254.519733pt;}
.y11_c00085{bottom:334.509067pt;}
.y10_c00085{bottom:361.181067pt;}
.yf_c00085{bottom:387.853067pt;}
.ye_c00085{bottom:441.186400pt;}
.yd_c00085{bottom:521.138400pt;}
.yc_c00085{bottom:547.810400pt;}
.yb_c00085{bottom:574.482400pt;}
.ya_c00085{bottom:601.154400pt;}
.y9_c00085{bottom:627.826400pt;}
.y8_c00085{bottom:654.498400pt;}
.y7_c00085{bottom:681.170400pt;}
.y1b_c00085{bottom:681.186400pt;}
.y6_c00085{bottom:707.842400pt;}
.y1a_c00085{bottom:707.853067pt;}
.y5_c00085{bottom:734.514400pt;}
.y19_c00085{bottom:734.519733pt;}
.y4_c00085{bottom:761.186400pt;}
.y3_c00085{bottom:814.519733pt;}
.y2_c00085{bottom:894.519733pt;}
.h6_c00085{height:44.704000pt;}
.h2_c00085{height:48.000000pt;}
.h5_c00085{height:57.600000pt;}
.h4_c00085{height:69.813333pt;}
.h3_c00085{height:89.760000pt;}
.h0_c00085{height:1122.520000pt;}
.h1_c00085{height:1122.666667pt;}
.w0_c00085{width:793.701333pt;}
.w1_c00085{width:794.000000pt;}
.x0_c00085{left:0.000000pt;}
.x2_c00085{left:73.333333pt;}
.x3_c00085{left:80.000000pt;}
.x4_c00085{left:94.666667pt;}
.x5_c00085{left:600.543200pt;}
.x1_c00085{left:705.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00086;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00086{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls1_c00086{letter-spacing:0.000000px;}
.ls0_c00086{letter-spacing:0.720000px;}
.ls2_c00086{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws6_c00086{word-spacing:-2.520000px;}
.ws2_c00086{word-spacing:-0.840000px;}
.ws4_c00086{word-spacing:-0.792000px;}
.ws1_c00086{word-spacing:0.000000px;}
.ws7_c00086{word-spacing:2.016000px;}
.ws9_c00086{word-spacing:4.752000px;}
.ws5_c00086{word-spacing:6.048000px;}
.ws3_c00086{word-spacing:6.624000px;}
.ws8_c00086{word-spacing:11.016000px;}
._0_c00086{margin-left:-480.336000px;}
._1_c00086{margin-left:-4.200000px;}
._2_c00086{margin-left:-1.432800px;}
.fc2_c00086{color:rgb(32,32,32);}
.fc1_c00086{color:rgb(232,86,17);}
.fc0_c00086{color:rgb(60,60,59);}
.fs1_c00086{font-size:42.000000px;}
.fs0_c00086{font-size:60.000000px;}
.fs3_c00086{font-size:72.000000px;}
.fs2_c00086{font-size:84.000000px;}
.y0_c00086{bottom:0.000000px;}
.y1_c00086{bottom:41.250000px;}
.yc_c00086{bottom:586.322700px;}
.yb_c00086{bottom:616.328700px;}
.ya_c00086{bottom:646.334700px;}
.y9_c00086{bottom:706.334700px;}
.y8_c00086{bottom:796.304700px;}
.y7_c00086{bottom:826.310700px;}
.y6_c00086{bottom:856.316700px;}
.y5_c00086{bottom:886.322700px;}
.y4_c00086{bottom:916.328700px;}
.y3_c00086{bottom:946.334700px;}
.y2_c00086{bottom:1006.334700px;}
.h2_c00086{height:54.000000px;}
.h4_c00086{height:64.800000px;}
.h3_c00086{height:78.540000px;}
.h0_c00086{height:1262.835000px;}
.h1_c00086{height:1263.000000px;}
.w0_c00086{width:892.914000px;}
.w1_c00086{width:893.250000px;}
.x0_c00086{left:0.000000px;}
.x2_c00086{left:90.000000px;}
.x3_c00086{left:106.500000px;}
.x1_c00086{left:795.338550px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls1_c00086{letter-spacing:0.000000pt;}
.ls0_c00086{letter-spacing:0.640000pt;}
.ls2_c00086{letter-spacing:0.746667pt;}
.ws0_c00086{word-spacing:-9.066667pt;}
.ws6_c00086{word-spacing:-2.240000pt;}
.ws2_c00086{word-spacing:-0.746667pt;}
.ws4_c00086{word-spacing:-0.704000pt;}
.ws1_c00086{word-spacing:0.000000pt;}
.ws7_c00086{word-spacing:1.792000pt;}
.ws9_c00086{word-spacing:4.224000pt;}
.ws5_c00086{word-spacing:5.376000pt;}
.ws3_c00086{word-spacing:5.888000pt;}
.ws8_c00086{word-spacing:9.792000pt;}
._0_c00086{margin-left:-426.965333pt;}
._1_c00086{margin-left:-3.733333pt;}
._2_c00086{margin-left:-1.273600pt;}
.fs1_c00086{font-size:37.333333pt;}
.fs0_c00086{font-size:53.333333pt;}
.fs3_c00086{font-size:64.000000pt;}
.fs2_c00086{font-size:74.666667pt;}
.y0_c00086{bottom:0.000000pt;}
.y1_c00086{bottom:36.666667pt;}
.yc_c00086{bottom:521.175733pt;}
.yb_c00086{bottom:547.847733pt;}
.ya_c00086{bottom:574.519733pt;}
.y9_c00086{bottom:627.853067pt;}
.y8_c00086{bottom:707.826400pt;}
.y7_c00086{bottom:734.498400pt;}
.y6_c00086{bottom:761.170400pt;}
.y5_c00086{bottom:787.842400pt;}
.y4_c00086{bottom:814.514400pt;}
.y3_c00086{bottom:841.186400pt;}
.y2_c00086{bottom:894.519733pt;}
.h2_c00086{height:48.000000pt;}
.h4_c00086{height:57.600000pt;}
.h3_c00086{height:69.813333pt;}
.h0_c00086{height:1122.520000pt;}
.h1_c00086{height:1122.666667pt;}
.w0_c00086{width:793.701333pt;}
.w1_c00086{width:794.000000pt;}
.x0_c00086{left:0.000000pt;}
.x2_c00086{left:80.000000pt;}
.x3_c00086{left:94.666667pt;}
.x1_c00086{left:706.967600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00087;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00087{font-family:ff5_c00087;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls3_c00087{letter-spacing:-0.288000px;}
.ls2_c00087{letter-spacing:0.000000px;}
.ls0_c00087{letter-spacing:0.864000px;}
.ls1_c00087{letter-spacing:1.200000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00087{word-spacing:-13.104000px;}
.ws0_c00087{word-spacing:-10.200000px;}
.ws6_c00087{word-spacing:-5.040000px;}
.ws5_c00087{word-spacing:-4.752000px;}
.ws3_c00087{word-spacing:-4.464000px;}
.ws7_c00087{word-spacing:-1.200000px;}
.ws2_c00087{word-spacing:0.000000px;}
.ws4_c00087{word-spacing:0.288000px;}
._0_c00087{margin-left:-480.336600px;}
._6_c00087{margin-left:-11.160000px;}
._5_c00087{margin-left:-9.000000px;}
._3_c00087{margin-left:-6.480000px;}
._1_c00087{margin-left:-4.200000px;}
._8_c00087{margin-left:-2.880000px;}
._2_c00087{margin-left:-1.440000px;}
._7_c00087{width:2.040000px;}
._4_c00087{width:4.752000px;}
.fc3_c00087{color:rgb(255,255,255);}
.fc2_c00087{color:rgb(233,83,14);}
.fc1_c00087{color:rgb(232,86,17);}
.fc0_c00087{color:rgb(60,60,59);}
.fs1_c00087{font-size:42.000000px;}
.fs0_c00087{font-size:60.000000px;}
.fs3_c00087{font-size:72.000000px;}
.fs4_c00087{font-size:120.000000px;}
.fs2_c00087{font-size:360.000000px;}
.y0_c00087{bottom:0.000000px;}
.y1_c00087{bottom:41.250000px;}
.yc_c00087{bottom:484.310700px;}
.yb_c00087{bottom:505.316700px;}
.ya_c00087{bottom:526.322700px;}
.y9_c00087{bottom:573.716700px;}
.y8_c00087{bottom:595.316700px;}
.y7_c00087{bottom:616.322700px;}
.y6_c00087{bottom:664.328700px;}
.y5_c00087{bottom:685.334700px;}
.y4_c00087{bottom:706.340700px;}
.y3_c00087{bottom:752.834700px;}
.y11_c00087{bottom:886.334700px;}
.y10_c00087{bottom:916.334700px;}
.yf_c00087{bottom:946.334700px;}
.ye_c00087{bottom:976.334700px;}
.yd_c00087{bottom:1006.334700px;}
.y2_c00087{bottom:1093.526700px;}
.h2_c00087{height:54.000000px;}
.h5_c00087{height:64.800000px;}
.h4_c00087{height:66.456000px;}
.h6_c00087{height:112.200000px;}
.h3_c00087{height:324.000000px;}
.h0_c00087{height:1262.835000px;}
.h1_c00087{height:1263.000000px;}
.w0_c00087{width:892.914000px;}
.w1_c00087{width:893.250000px;}
.x0_c00087{left:0.000000px;}
.x2_c00087{left:81.290250px;}
.x3_c00087{left:82.393650px;}
.x5_c00087{left:112.287450px;}
.x4_c00087{left:127.393650px;}
.x1_c00087{left:793.313700px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls3_c00087{letter-spacing:-0.256000pt;}
.ls2_c00087{letter-spacing:0.000000pt;}
.ls0_c00087{letter-spacing:0.768000pt;}
.ls1_c00087{letter-spacing:1.066667pt;}
.ws1_c00087{word-spacing:-11.648000pt;}
.ws0_c00087{word-spacing:-9.066667pt;}
.ws6_c00087{word-spacing:-4.480000pt;}
.ws5_c00087{word-spacing:-4.224000pt;}
.ws3_c00087{word-spacing:-3.968000pt;}
.ws7_c00087{word-spacing:-1.066667pt;}
.ws2_c00087{word-spacing:0.000000pt;}
.ws4_c00087{word-spacing:0.256000pt;}
._0_c00087{margin-left:-426.965867pt;}
._6_c00087{margin-left:-9.920000pt;}
._5_c00087{margin-left:-8.000000pt;}
._3_c00087{margin-left:-5.760000pt;}
._1_c00087{margin-left:-3.733333pt;}
._8_c00087{margin-left:-2.560000pt;}
._2_c00087{margin-left:-1.280000pt;}
._7_c00087{width:1.813333pt;}
._4_c00087{width:4.224000pt;}
.fs1_c00087{font-size:37.333333pt;}
.fs0_c00087{font-size:53.333333pt;}
.fs3_c00087{font-size:64.000000pt;}
.fs4_c00087{font-size:106.666667pt;}
.fs2_c00087{font-size:320.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y1_c00087{bottom:36.666667pt;}
.yc_c00087{bottom:430.498400pt;}
.yb_c00087{bottom:449.170400pt;}
.ya_c00087{bottom:467.842400pt;}
.y9_c00087{bottom:509.970400pt;}
.y8_c00087{bottom:529.170400pt;}
.y7_c00087{bottom:547.842400pt;}
.y6_c00087{bottom:590.514400pt;}
.y5_c00087{bottom:609.186400pt;}
.y4_c00087{bottom:627.858400pt;}
.y3_c00087{bottom:669.186400pt;}
.y11_c00087{bottom:787.853067pt;}
.y10_c00087{bottom:814.519733pt;}
.yf_c00087{bottom:841.186400pt;}
.ye_c00087{bottom:867.853067pt;}
.yd_c00087{bottom:894.519733pt;}
.y2_c00087{bottom:972.023733pt;}
.h2_c00087{height:48.000000pt;}
.h5_c00087{height:57.600000pt;}
.h4_c00087{height:59.072000pt;}
.h6_c00087{height:99.733333pt;}
.h3_c00087{height:288.000000pt;}
.h0_c00087{height:1122.520000pt;}
.h1_c00087{height:1122.666667pt;}
.w0_c00087{width:793.701333pt;}
.w1_c00087{width:794.000000pt;}
.x0_c00087{left:0.000000pt;}
.x2_c00087{left:72.258000pt;}
.x3_c00087{left:73.238800pt;}
.x5_c00087{left:99.811067pt;}
.x4_c00087{left:113.238800pt;}
.x1_c00087{left:705.167733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69d21ca045ca03b3182acdf3.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00088;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.161000;font-style: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);}
.m1_c00088{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls4_c00088{letter-spacing:-0.540000px;}
.ls3_c00088{letter-spacing:0.000000px;}
.ls0_c00088{letter-spacing:0.720000px;}
.ls2_c00088{letter-spacing:1.500000px;}
.ls1_c00088{letter-spacing:1.650000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00088{word-spacing:-21.060000px;}
.ws0_c00088{word-spacing:-10.200000px;}
.ws12_c00088{word-spacing:-4.464000px;}
.ws19_c00088{word-spacing:-4.320000px;}
.wsb_c00088{word-spacing:-3.600000px;}
.ws13_c00088{word-spacing:-3.024000px;}
.ws18_c00088{word-spacing:-2.592000px;}
.wsc_c00088{word-spacing:-2.232000px;}
.ws7_c00088{word-spacing:-2.088000px;}
.ws1a_c00088{word-spacing:-1.500000px;}
.ws15_c00088{word-spacing:-1.368000px;}
.ws16_c00088{word-spacing:-0.720000px;}
.ws17_c00088{word-spacing:-0.576000px;}
.wsa_c00088{word-spacing:-0.288000px;}
.ws2_c00088{word-spacing:0.000000px;}
.wsd_c00088{word-spacing:0.432000px;}
.ws8_c00088{word-spacing:1.080000px;}
.ws6_c00088{word-spacing:2.016000px;}
.ws9_c00088{word-spacing:4.752000px;}
.ws14_c00088{word-spacing:5.256000px;}
.ws4_c00088{word-spacing:6.984000px;}
.wse_c00088{word-spacing:7.056000px;}
.ws3_c00088{word-spacing:8.064000px;}
.ws10_c00088{word-spacing:8.136000px;}
.ws5_c00088{word-spacing:9.288000px;}
.ws11_c00088{word-spacing:10.008000px;}
.wsf_c00088{word-spacing:12.816000px;}
._0_c00088{margin-left:-480.336000px;}
._9_c00088{margin-left:-8.352000px;}
._a_c00088{margin-left:-7.128000px;}
._3_c00088{margin-left:-5.306400px;}
._1_c00088{margin-left:-4.200000px;}
._8_c00088{margin-left:-2.923200px;}
._2_c00088{margin-left:-1.512000px;}
._4_c00088{width:1.267200px;}
._7_c00088{width:2.268000px;}
._5_c00088{width:3.470400px;}
._6_c00088{width:16.869600px;}
.fc3_c00088{color:rgb(32,32,32);}
.fc2_c00088{color:rgb(233,83,14);}
.fc1_c00088{color:rgb(232,86,17);}
.fc4_c00088{color:rgb(157,157,156);}
.fc0_c00088{color:rgb(60,60,59);}
.fs1_c00088{font-size:42.000000px;}
.fs0_c00088{font-size:60.000000px;}
.fs4_c00088{font-size:66.000000px;}
.fs3_c00088{font-size:72.000000px;}
.fs2_c00088{font-size:108.000000px;}
.y0_c00088{bottom:0.000000px;}
.y1_c00088{bottom:41.250000px;}
.y1b_c00088{bottom:166.214700px;}
.y1a_c00088{bottom:196.220700px;}
.y19_c00088{bottom:226.226700px;}
.y18_c00088{bottom:286.220700px;}
.y17_c00088{bottom:316.226700px;}
.y16_c00088{bottom:346.232700px;}
.y15_c00088{bottom:376.238700px;}
.y14_c00088{bottom:406.244700px;}
.y13_c00088{bottom:436.250700px;}
.y12_c00088{bottom:466.256700px;}
.y11_c00088{bottom:496.262700px;}
.y10_c00088{bottom:526.268700px;}
.yf_c00088{bottom:586.262700px;}
.ye_c00088{bottom:616.268700px;}
.yd_c00088{bottom:646.274700px;}
.yc_c00088{bottom:676.280700px;}
.yb_c00088{bottom:706.286700px;}
.ya_c00088{bottom:736.292700px;}
.y9_c00088{bottom:766.298700px;}
.y22_c00088{bottom:766.334700px;}
.y8_c00088{bottom:796.304700px;}
.y21_c00088{bottom:796.334700px;}
.y7_c00088{bottom:826.310700px;}
.y20_c00088{bottom:826.334700px;}
.y6_c00088{bottom:856.316700px;}
.y1f_c00088{bottom:856.334700px;}
.y5_c00088{bottom:886.322700px;}
.y1e_c00088{bottom:886.334700px;}
.y4_c00088{bottom:916.328700px;}
.y1d_c00088{bottom:916.334700px;}
.y3_c00088{bottom:946.334700px;}
.y1c_c00088{bottom:947.397600px;}
.y2_c00088{bottom:1006.334700px;}
.h5_c00088{height:50.292000px;}
.h2_c00088{height:54.000000px;}
.h4_c00088{height:64.800000px;}
.h3_c00088{height:100.980000px;}
.h0_c00088{height:1262.835000px;}
.h1_c00088{height:1263.000000px;}
.w0_c00088{width:892.914000px;}
.w1_c00088{width:893.250000px;}
.x0_c00088{left:0.000000px;}
.x2_c00088{left:82.500000px;}
.x3_c00088{left:106.500000px;}
.x4_c00088{left:675.611100px;}
.x1_c00088{left:793.238550px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls4_c00088{letter-spacing:-0.480000pt;}
.ls3_c00088{letter-spacing:0.000000pt;}
.ls0_c00088{letter-spacing:0.640000pt;}
.ls2_c00088{letter-spacing:1.333333pt;}
.ls1_c00088{letter-spacing:1.466667pt;}
.ws1_c00088{word-spacing:-18.720000pt;}
.ws0_c00088{word-spacing:-9.066667pt;}
.ws12_c00088{word-spacing:-3.968000pt;}
.ws19_c00088{word-spacing:-3.840000pt;}
.wsb_c00088{word-spacing:-3.200000pt;}
.ws13_c00088{word-spacing:-2.688000pt;}
.ws18_c00088{word-spacing:-2.304000pt;}
.wsc_c00088{word-spacing:-1.984000pt;}
.ws7_c00088{word-spacing:-1.856000pt;}
.ws1a_c00088{word-spacing:-1.333333pt;}
.ws15_c00088{word-spacing:-1.216000pt;}
.ws16_c00088{word-spacing:-0.640000pt;}
.ws17_c00088{word-spacing:-0.512000pt;}
.wsa_c00088{word-spacing:-0.256000pt;}
.ws2_c00088{word-spacing:0.000000pt;}
.wsd_c00088{word-spacing:0.384000pt;}
.ws8_c00088{word-spacing:0.960000pt;}
.ws6_c00088{word-spacing:1.792000pt;}
.ws9_c00088{word-spacing:4.224000pt;}
.ws14_c00088{word-spacing:4.672000pt;}
.ws4_c00088{word-spacing:6.208000pt;}
.wse_c00088{word-spacing:6.272000pt;}
.ws3_c00088{word-spacing:7.168000pt;}
.ws10_c00088{word-spacing:7.232000pt;}
.ws5_c00088{word-spacing:8.256000pt;}
.ws11_c00088{word-spacing:8.896000pt;}
.wsf_c00088{word-spacing:11.392000pt;}
._0_c00088{margin-left:-426.965333pt;}
._9_c00088{margin-left:-7.424000pt;}
._a_c00088{margin-left:-6.336000pt;}
._3_c00088{margin-left:-4.716800pt;}
._1_c00088{margin-left:-3.733333pt;}
._8_c00088{margin-left:-2.598400pt;}
._2_c00088{margin-left:-1.344000pt;}
._4_c00088{width:1.126400pt;}
._7_c00088{width:2.016000pt;}
._5_c00088{width:3.084800pt;}
._6_c00088{width:14.995200pt;}
.fs1_c00088{font-size:37.333333pt;}
.fs0_c00088{font-size:53.333333pt;}
.fs4_c00088{font-size:58.666667pt;}
.fs3_c00088{font-size:64.000000pt;}
.fs2_c00088{font-size:96.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y1_c00088{bottom:36.666667pt;}
.y1b_c00088{bottom:147.746400pt;}
.y1a_c00088{bottom:174.418400pt;}
.y19_c00088{bottom:201.090400pt;}
.y18_c00088{bottom:254.418400pt;}
.y17_c00088{bottom:281.090400pt;}
.y16_c00088{bottom:307.762400pt;}
.y15_c00088{bottom:334.434400pt;}
.y14_c00088{bottom:361.106400pt;}
.y13_c00088{bottom:387.778400pt;}
.y12_c00088{bottom:414.450400pt;}
.y11_c00088{bottom:441.122400pt;}
.y10_c00088{bottom:467.794400pt;}
.yf_c00088{bottom:521.122400pt;}
.ye_c00088{bottom:547.794400pt;}
.yd_c00088{bottom:574.466400pt;}
.yc_c00088{bottom:601.138400pt;}
.yb_c00088{bottom:627.810400pt;}
.ya_c00088{bottom:654.482400pt;}
.y9_c00088{bottom:681.154400pt;}
.y22_c00088{bottom:681.186400pt;}
.y8_c00088{bottom:707.826400pt;}
.y21_c00088{bottom:707.853067pt;}
.y7_c00088{bottom:734.498400pt;}
.y20_c00088{bottom:734.519733pt;}
.y6_c00088{bottom:761.170400pt;}
.y1f_c00088{bottom:761.186400pt;}
.y5_c00088{bottom:787.842400pt;}
.y1e_c00088{bottom:787.853067pt;}
.y4_c00088{bottom:814.514400pt;}
.y1d_c00088{bottom:814.519733pt;}
.y3_c00088{bottom:841.186400pt;}
.y1c_c00088{bottom:842.131200pt;}
.y2_c00088{bottom:894.519733pt;}
.h5_c00088{height:44.704000pt;}
.h2_c00088{height:48.000000pt;}
.h4_c00088{height:57.600000pt;}
.h3_c00088{height:89.760000pt;}
.h0_c00088{height:1122.520000pt;}
.h1_c00088{height:1122.666667pt;}
.w0_c00088{width:793.701333pt;}
.w1_c00088{width:794.000000pt;}
.x0_c00088{left:0.000000pt;}
.x2_c00088{left:73.333333pt;}
.x3_c00088{left:94.666667pt;}
.x4_c00088{left:600.543200pt;}
.x1_c00088{left:705.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_687f4f7c0414ae5fc6b8f254.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.161000;font-style: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);}
.m1_c00089{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls4_c00089{letter-spacing:-0.324000px;}
.ls3_c00089{letter-spacing:0.000000px;}
.ls0_c00089{letter-spacing:0.720000px;}
.ls2_c00089{letter-spacing:1.500000px;}
.ls1_c00089{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00089{word-spacing:-21.276000px;}
.ws2_c00089{word-spacing:-14.850000px;}
.ws0_c00089{word-spacing:-10.200000px;}
.wsc_c00089{word-spacing:-1.656000px;}
.ws18_c00089{word-spacing:-1.500000px;}
.wsb_c00089{word-spacing:-1.152000px;}
.wsa_c00089{word-spacing:-0.576000px;}
.ws3_c00089{word-spacing:0.000000px;}
.ws9_c00089{word-spacing:0.360000px;}
.ws16_c00089{word-spacing:0.432000px;}
.ws5_c00089{word-spacing:1.872000px;}
.wsd_c00089{word-spacing:2.304000px;}
.ws11_c00089{word-spacing:2.664000px;}
.ws10_c00089{word-spacing:3.312000px;}
.wse_c00089{word-spacing:4.320000px;}
.ws4_c00089{word-spacing:4.824000px;}
.ws7_c00089{word-spacing:5.976000px;}
.ws6_c00089{word-spacing:7.416000px;}
.ws8_c00089{word-spacing:8.496000px;}
.ws14_c00089{word-spacing:10.080000px;}
.ws13_c00089{word-spacing:10.224000px;}
.ws17_c00089{word-spacing:11.232000px;}
.wsf_c00089{word-spacing:21.528000px;}
.ws15_c00089{word-spacing:22.176000px;}
.ws12_c00089{word-spacing:28.440000px;}
._0_c00089{margin-left:-480.336600px;}
._4_c00089{margin-left:-5.752800px;}
._1_c00089{margin-left:-4.200000px;}
._5_c00089{margin-left:-3.139200px;}
._2_c00089{margin-left:-1.440000px;}
._3_c00089{width:1.036800px;}
.fc3_c00089{color:rgb(233,83,14);}
.fc2_c00089{color:rgb(32,32,32);}
.fc1_c00089{color:rgb(232,86,17);}
.fc4_c00089{color:rgb(157,157,156);}
.fc0_c00089{color:rgb(60,60,59);}
.fs1_c00089{font-size:42.000000px;}
.fs0_c00089{font-size:60.000000px;}
.fs4_c00089{font-size:66.000000px;}
.fs2_c00089{font-size:72.000000px;}
.fs3_c00089{font-size:108.000000px;}
.y0_c00089{bottom:0.000000px;}
.y1_c00089{bottom:41.250000px;}
.y1a_c00089{bottom:76.256700px;}
.y19_c00089{bottom:106.262700px;}
.y18_c00089{bottom:136.268700px;}
.y17_c00089{bottom:166.274700px;}
.y16_c00089{bottom:226.268700px;}
.y15_c00089{bottom:256.274700px;}
.y14_c00089{bottom:286.280700px;}
.y13_c00089{bottom:316.286700px;}
.y12_c00089{bottom:376.280700px;}
.y11_c00089{bottom:406.286700px;}
.y10_c00089{bottom:436.292700px;}
.y22_c00089{bottom:439.145700px;}
.yf_c00089{bottom:466.298700px;}
.y21_c00089{bottom:469.145700px;}
.ye_c00089{bottom:496.304700px;}
.y20_c00089{bottom:499.145700px;}
.yd_c00089{bottom:526.310700px;}
.y1f_c00089{bottom:529.145700px;}
.yc_c00089{bottom:556.316700px;}
.y1e_c00089{bottom:559.145700px;}
.yb_c00089{bottom:586.322700px;}
.y1d_c00089{bottom:589.145700px;}
.ya_c00089{bottom:616.328700px;}
.y1c_c00089{bottom:619.145700px;}
.y9_c00089{bottom:646.334700px;}
.y1b_c00089{bottom:649.145700px;}
.y8_c00089{bottom:706.334700px;}
.y7_c00089{bottom:856.316700px;}
.y6_c00089{bottom:886.322700px;}
.y5_c00089{bottom:916.328700px;}
.y4_c00089{bottom:946.334700px;}
.y3_c00089{bottom:992.828700px;}
.y2_c00089{bottom:1022.834700px;}
.h5_c00089{height:50.292000px;}
.h2_c00089{height:54.000000px;}
.h3_c00089{height:64.800000px;}
.h4_c00089{height:100.980000px;}
.h0_c00089{height:1262.835000px;}
.h1_c00089{height:1263.000000px;}
.w0_c00089{width:892.914000px;}
.w1_c00089{width:893.250000px;}
.x0_c00089{left:0.000000px;}
.x3_c00089{left:82.500000px;}
.x2_c00089{left:106.500000px;}
.x4_c00089{left:675.611100px;}
.x1_c00089{left:793.178700px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls4_c00089{letter-spacing:-0.288000pt;}
.ls3_c00089{letter-spacing:0.000000pt;}
.ls0_c00089{letter-spacing:0.640000pt;}
.ls2_c00089{letter-spacing:1.333333pt;}
.ls1_c00089{letter-spacing:1.466667pt;}
.ws1_c00089{word-spacing:-18.912000pt;}
.ws2_c00089{word-spacing:-13.200000pt;}
.ws0_c00089{word-spacing:-9.066667pt;}
.wsc_c00089{word-spacing:-1.472000pt;}
.ws18_c00089{word-spacing:-1.333333pt;}
.wsb_c00089{word-spacing:-1.024000pt;}
.wsa_c00089{word-spacing:-0.512000pt;}
.ws3_c00089{word-spacing:0.000000pt;}
.ws9_c00089{word-spacing:0.320000pt;}
.ws16_c00089{word-spacing:0.384000pt;}
.ws5_c00089{word-spacing:1.664000pt;}
.wsd_c00089{word-spacing:2.048000pt;}
.ws11_c00089{word-spacing:2.368000pt;}
.ws10_c00089{word-spacing:2.944000pt;}
.wse_c00089{word-spacing:3.840000pt;}
.ws4_c00089{word-spacing:4.288000pt;}
.ws7_c00089{word-spacing:5.312000pt;}
.ws6_c00089{word-spacing:6.592000pt;}
.ws8_c00089{word-spacing:7.552000pt;}
.ws14_c00089{word-spacing:8.960000pt;}
.ws13_c00089{word-spacing:9.088000pt;}
.ws17_c00089{word-spacing:9.984000pt;}
.wsf_c00089{word-spacing:19.136000pt;}
.ws15_c00089{word-spacing:19.712000pt;}
.ws12_c00089{word-spacing:25.280000pt;}
._0_c00089{margin-left:-426.965867pt;}
._4_c00089{margin-left:-5.113600pt;}
._1_c00089{margin-left:-3.733333pt;}
._5_c00089{margin-left:-2.790400pt;}
._2_c00089{margin-left:-1.280000pt;}
._3_c00089{width:0.921600pt;}
.fs1_c00089{font-size:37.333333pt;}
.fs0_c00089{font-size:53.333333pt;}
.fs4_c00089{font-size:58.666667pt;}
.fs2_c00089{font-size:64.000000pt;}
.fs3_c00089{font-size:96.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y1_c00089{bottom:36.666667pt;}
.y1a_c00089{bottom:67.783733pt;}
.y19_c00089{bottom:94.455733pt;}
.y18_c00089{bottom:121.127733pt;}
.y17_c00089{bottom:147.799733pt;}
.y16_c00089{bottom:201.127733pt;}
.y15_c00089{bottom:227.799733pt;}
.y14_c00089{bottom:254.471733pt;}
.y13_c00089{bottom:281.143733pt;}
.y12_c00089{bottom:334.471733pt;}
.y11_c00089{bottom:361.143733pt;}
.y10_c00089{bottom:387.815733pt;}
.y22_c00089{bottom:390.351733pt;}
.yf_c00089{bottom:414.487733pt;}
.y21_c00089{bottom:417.018400pt;}
.ye_c00089{bottom:441.159733pt;}
.y20_c00089{bottom:443.685067pt;}
.yd_c00089{bottom:467.831733pt;}
.y1f_c00089{bottom:470.351733pt;}
.yc_c00089{bottom:494.503733pt;}
.y1e_c00089{bottom:497.018400pt;}
.yb_c00089{bottom:521.175733pt;}
.y1d_c00089{bottom:523.685067pt;}
.ya_c00089{bottom:547.847733pt;}
.y1c_c00089{bottom:550.351733pt;}
.y9_c00089{bottom:574.519733pt;}
.y1b_c00089{bottom:577.018400pt;}
.y8_c00089{bottom:627.853067pt;}
.y7_c00089{bottom:761.170400pt;}
.y6_c00089{bottom:787.842400pt;}
.y5_c00089{bottom:814.514400pt;}
.y4_c00089{bottom:841.186400pt;}
.y3_c00089{bottom:882.514400pt;}
.y2_c00089{bottom:909.186400pt;}
.h5_c00089{height:44.704000pt;}
.h2_c00089{height:48.000000pt;}
.h3_c00089{height:57.600000pt;}
.h4_c00089{height:89.760000pt;}
.h0_c00089{height:1122.520000pt;}
.h1_c00089{height:1122.666667pt;}
.w0_c00089{width:793.701333pt;}
.w1_c00089{width:794.000000pt;}
.x0_c00089{left:0.000000pt;}
.x3_c00089{left:73.333333pt;}
.x2_c00089{left:94.666667pt;}
.x4_c00089{left:600.543200pt;}
.x1_c00089{left:705.047733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_402d1165a50ba0e485df2db6.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.199000;font-style: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);}
.m1_c00090{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls1_c00090{letter-spacing:0.000000px;}
.ls0_c00090{letter-spacing:0.720000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00090{word-spacing:-10.200000px;}
.wsd_c00090{word-spacing:-1.944000px;}
.ws9_c00090{word-spacing:-0.864000px;}
.wsa_c00090{word-spacing:-0.720000px;}
.ws1_c00090{word-spacing:0.000000px;}
.ws7_c00090{word-spacing:0.072000px;}
.ws4_c00090{word-spacing:0.288000px;}
.ws6_c00090{word-spacing:1.368000px;}
.ws3_c00090{word-spacing:6.624000px;}
.wsc_c00090{word-spacing:10.584000px;}
.ws5_c00090{word-spacing:10.800000px;}
.ws2_c00090{word-spacing:17.136000px;}
.ws8_c00090{word-spacing:18.864000px;}
.wsb_c00090{word-spacing:19.296000px;}
._0_c00090{margin-left:-480.336600px;}
._3_c00090{margin-left:-7.200000px;}
._1_c00090{margin-left:-4.200000px;}
._4_c00090{margin-left:-2.887200px;}
._2_c00090{margin-left:-1.440000px;}
.fc2_c00090{color:rgb(32,32,32);}
.fc1_c00090{color:rgb(232,86,17);}
.fc0_c00090{color:rgb(60,60,59);}
.fs1_c00090{font-size:42.000000px;}
.fs0_c00090{font-size:60.000000px;}
.fs2_c00090{font-size:72.000000px;}
.y0_c00090{bottom:0.000000px;}
.y1_c00090{bottom:41.250000px;}
.y10_c00090{bottom:556.274700px;}
.yf_c00090{bottom:586.280700px;}
.ye_c00090{bottom:616.286700px;}
.yd_c00090{bottom:646.292700px;}
.yc_c00090{bottom:676.298700px;}
.yb_c00090{bottom:736.292700px;}
.ya_c00090{bottom:766.298700px;}
.y9_c00090{bottom:796.304700px;}
.y8_c00090{bottom:826.310700px;}
.y7_c00090{bottom:856.316700px;}
.y6_c00090{bottom:886.322700px;}
.y5_c00090{bottom:932.816700px;}
.y4_c00090{bottom:962.822700px;}
.y3_c00090{bottom:992.828700px;}
.y2_c00090{bottom:1022.834700px;}
.h2_c00090{height:54.000000px;}
.h3_c00090{height:64.800000px;}
.h0_c00090{height:1262.835000px;}
.h1_c00090{height:1263.000000px;}
.w0_c00090{width:892.914000px;}
.w1_c00090{width:893.250000px;}
.x0_c00090{left:0.000000px;}
.x2_c00090{left:106.500000px;}
.x1_c00090{left:796.838700px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls1_c00090{letter-spacing:0.000000pt;}
.ls0_c00090{letter-spacing:0.640000pt;}
.ws0_c00090{word-spacing:-9.066667pt;}
.wsd_c00090{word-spacing:-1.728000pt;}
.ws9_c00090{word-spacing:-0.768000pt;}
.wsa_c00090{word-spacing:-0.640000pt;}
.ws1_c00090{word-spacing:0.000000pt;}
.ws7_c00090{word-spacing:0.064000pt;}
.ws4_c00090{word-spacing:0.256000pt;}
.ws6_c00090{word-spacing:1.216000pt;}
.ws3_c00090{word-spacing:5.888000pt;}
.wsc_c00090{word-spacing:9.408000pt;}
.ws5_c00090{word-spacing:9.600000pt;}
.ws2_c00090{word-spacing:15.232000pt;}
.ws8_c00090{word-spacing:16.768000pt;}
.wsb_c00090{word-spacing:17.152000pt;}
._0_c00090{margin-left:-426.965867pt;}
._3_c00090{margin-left:-6.400000pt;}
._1_c00090{margin-left:-3.733333pt;}
._4_c00090{margin-left:-2.566400pt;}
._2_c00090{margin-left:-1.280000pt;}
.fs1_c00090{font-size:37.333333pt;}
.fs0_c00090{font-size:53.333333pt;}
.fs2_c00090{font-size:64.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y1_c00090{bottom:36.666667pt;}
.y10_c00090{bottom:494.466400pt;}
.yf_c00090{bottom:521.138400pt;}
.ye_c00090{bottom:547.810400pt;}
.yd_c00090{bottom:574.482400pt;}
.yc_c00090{bottom:601.154400pt;}
.yb_c00090{bottom:654.482400pt;}
.ya_c00090{bottom:681.154400pt;}
.y9_c00090{bottom:707.826400pt;}
.y8_c00090{bottom:734.498400pt;}
.y7_c00090{bottom:761.170400pt;}
.y6_c00090{bottom:787.842400pt;}
.y5_c00090{bottom:829.170400pt;}
.y4_c00090{bottom:855.842400pt;}
.y3_c00090{bottom:882.514400pt;}
.y2_c00090{bottom:909.186400pt;}
.h2_c00090{height:48.000000pt;}
.h3_c00090{height:57.600000pt;}
.h0_c00090{height:1122.520000pt;}
.h1_c00090{height:1122.666667pt;}
.w0_c00090{width:793.701333pt;}
.w1_c00090{width:794.000000pt;}
.x0_c00090{left:0.000000pt;}
.x2_c00090{left:94.666667pt;}
.x1_c00090{left:708.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_d071661ec5c75d861a68aa6b.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00091;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00091{font-family:ff5_c00091;line-height:1.155000;font-style: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);}
.m1_c00091{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls3_c00091{letter-spacing:-0.288000px;}
.ls2_c00091{letter-spacing:0.000000px;}
.ls0_c00091{letter-spacing:0.864000px;}
.ls1_c00091{letter-spacing:1.200000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00091{word-spacing:-13.104000px;}
.ws2_c00091{word-spacing:-11.952000px;}
.ws0_c00091{word-spacing:-10.200000px;}
.ws8_c00091{word-spacing:-5.040000px;}
.wsa_c00091{word-spacing:-4.560000px;}
.ws5_c00091{word-spacing:-3.888000px;}
.ws4_c00091{word-spacing:-3.528000px;}
.ws9_c00091{word-spacing:-2.808000px;}
.ws6_c00091{word-spacing:-1.728000px;}
.ws3_c00091{word-spacing:0.000000px;}
.ws7_c00091{word-spacing:0.288000px;}
._0_c00091{margin-left:-480.336000px;}
._7_c00091{margin-left:-12.120000px;}
._8_c00091{margin-left:-10.416000px;}
._3_c00091{margin-left:-5.904000px;}
._1_c00091{margin-left:-4.200000px;}
._6_c00091{margin-left:-3.000000px;}
._2_c00091{margin-left:-1.728000px;}
._5_c00091{width:2.304000px;}
._4_c00091{width:4.176000px;}
.fc3_c00091{color:rgb(255,255,255);}
.fc2_c00091{color:rgb(233,83,14);}
.fc1_c00091{color:rgb(232,86,17);}
.fc0_c00091{color:rgb(60,60,59);}
.fs1_c00091{font-size:42.000000px;}
.fs0_c00091{font-size:60.000000px;}
.fs3_c00091{font-size:72.000000px;}
.fs4_c00091{font-size:120.000000px;}
.fs2_c00091{font-size:360.000000px;}
.y0_c00091{bottom:0.000000px;}
.y1_c00091{bottom:41.250000px;}
.yf_c00091{bottom:394.274700px;}
.ye_c00091{bottom:415.280700px;}
.yd_c00091{bottom:436.286700px;}
.yc_c00091{bottom:484.292700px;}
.yb_c00091{bottom:505.298700px;}
.ya_c00091{bottom:526.304700px;}
.y9_c00091{bottom:574.310700px;}
.y8_c00091{bottom:595.316700px;}
.y7_c00091{bottom:616.322700px;}
.y6_c00091{bottom:664.328700px;}
.y5_c00091{bottom:685.334700px;}
.y4_c00091{bottom:706.340700px;}
.y3_c00091{bottom:752.834700px;}
.y12_c00091{bottom:946.334700px;}
.y11_c00091{bottom:976.334700px;}
.y10_c00091{bottom:1006.334700px;}
.y2_c00091{bottom:1093.526700px;}
.h2_c00091{height:54.000000px;}
.h5_c00091{height:64.800000px;}
.h4_c00091{height:66.456000px;}
.h6_c00091{height:112.200000px;}
.h3_c00091{height:324.000000px;}
.h0_c00091{height:1262.835000px;}
.h1_c00091{height:1263.000000px;}
.w0_c00091{width:892.914000px;}
.w1_c00091{width:893.250000px;}
.x0_c00091{left:0.000000px;}
.x2_c00091{left:81.290250px;}
.x3_c00091{left:82.393650px;}
.x5_c00091{left:112.287450px;}
.x4_c00091{left:127.393650px;}
.x1_c00091{left:794.363550px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls3_c00091{letter-spacing:-0.256000pt;}
.ls2_c00091{letter-spacing:0.000000pt;}
.ls0_c00091{letter-spacing:0.768000pt;}
.ls1_c00091{letter-spacing:1.066667pt;}
.ws1_c00091{word-spacing:-11.648000pt;}
.ws2_c00091{word-spacing:-10.624000pt;}
.ws0_c00091{word-spacing:-9.066667pt;}
.ws8_c00091{word-spacing:-4.480000pt;}
.wsa_c00091{word-spacing:-4.053333pt;}
.ws5_c00091{word-spacing:-3.456000pt;}
.ws4_c00091{word-spacing:-3.136000pt;}
.ws9_c00091{word-spacing:-2.496000pt;}
.ws6_c00091{word-spacing:-1.536000pt;}
.ws3_c00091{word-spacing:0.000000pt;}
.ws7_c00091{word-spacing:0.256000pt;}
._0_c00091{margin-left:-426.965333pt;}
._7_c00091{margin-left:-10.773333pt;}
._8_c00091{margin-left:-9.258667pt;}
._3_c00091{margin-left:-5.248000pt;}
._1_c00091{margin-left:-3.733333pt;}
._6_c00091{margin-left:-2.666667pt;}
._2_c00091{margin-left:-1.536000pt;}
._5_c00091{width:2.048000pt;}
._4_c00091{width:3.712000pt;}
.fs1_c00091{font-size:37.333333pt;}
.fs0_c00091{font-size:53.333333pt;}
.fs3_c00091{font-size:64.000000pt;}
.fs4_c00091{font-size:106.666667pt;}
.fs2_c00091{font-size:320.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y1_c00091{bottom:36.666667pt;}
.yf_c00091{bottom:350.466400pt;}
.ye_c00091{bottom:369.138400pt;}
.yd_c00091{bottom:387.810400pt;}
.yc_c00091{bottom:430.482400pt;}
.yb_c00091{bottom:449.154400pt;}
.ya_c00091{bottom:467.826400pt;}
.y9_c00091{bottom:510.498400pt;}
.y8_c00091{bottom:529.170400pt;}
.y7_c00091{bottom:547.842400pt;}
.y6_c00091{bottom:590.514400pt;}
.y5_c00091{bottom:609.186400pt;}
.y4_c00091{bottom:627.858400pt;}
.y3_c00091{bottom:669.186400pt;}
.y12_c00091{bottom:841.186400pt;}
.y11_c00091{bottom:867.853067pt;}
.y10_c00091{bottom:894.519733pt;}
.y2_c00091{bottom:972.023733pt;}
.h2_c00091{height:48.000000pt;}
.h5_c00091{height:57.600000pt;}
.h4_c00091{height:59.072000pt;}
.h6_c00091{height:99.733333pt;}
.h3_c00091{height:288.000000pt;}
.h0_c00091{height:1122.520000pt;}
.h1_c00091{height:1122.666667pt;}
.w0_c00091{width:793.701333pt;}
.w1_c00091{width:794.000000pt;}
.x0_c00091{left:0.000000pt;}
.x2_c00091{left:72.258000pt;}
.x3_c00091{left:73.238800pt;}
.x5_c00091{left:99.811067pt;}
.x4_c00091{left:113.238800pt;}
.x1_c00091{left:706.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_fb4e359179173bbd39172227.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00092;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00092;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;line-height:1.161000;font-style: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);}
.m1_c00092{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls6_c00092{letter-spacing:-0.540000px;}
.ls5_c00092{letter-spacing:0.000000px;}
.ls0_c00092{letter-spacing:0.720000px;}
.ls1_c00092{letter-spacing:0.792000px;}
.ls2_c00092{letter-spacing:0.840000px;}
.ls4_c00092{letter-spacing:1.500000px;}
.ls3_c00092{letter-spacing:1.650000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00092{word-spacing:-21.060000px;}
.ws2_c00092{word-spacing:-17.640000px;}
.ws0_c00092{word-spacing:-10.200000px;}
.wsd_c00092{word-spacing:-4.104000px;}
.ws15_c00092{word-spacing:-1.500000px;}
.ws9_c00092{word-spacing:-1.224000px;}
.ws4_c00092{word-spacing:-0.840000px;}
.ws3_c00092{word-spacing:0.000000px;}
.ws5_c00092{word-spacing:0.576000px;}
.wsf_c00092{word-spacing:1.656000px;}
.wse_c00092{word-spacing:1.872000px;}
.ws8_c00092{word-spacing:2.448000px;}
.ws6_c00092{word-spacing:3.168000px;}
.ws10_c00092{word-spacing:3.384000px;}
.ws11_c00092{word-spacing:4.392000px;}
.ws13_c00092{word-spacing:4.536000px;}
.ws7_c00092{word-spacing:4.608000px;}
.wsa_c00092{word-spacing:5.040000px;}
.ws12_c00092{word-spacing:6.696000px;}
.wsb_c00092{word-spacing:6.840000px;}
.wsc_c00092{word-spacing:7.128000px;}
.ws14_c00092{word-spacing:12.528000px;}
._0_c00092{margin-left:-480.336600px;}
._1_c00092{margin-left:-4.200000px;}
._2_c00092{margin-left:-1.440000px;}
.fc3_c00092{color:rgb(32,32,32);}
.fc2_c00092{color:rgb(233,83,14);}
.fc1_c00092{color:rgb(232,86,17);}
.fc4_c00092{color:rgb(157,157,156);}
.fc0_c00092{color:rgb(60,60,59);}
.fs1_c00092{font-size:42.000000px;}
.fs0_c00092{font-size:60.000000px;}
.fs5_c00092{font-size:66.000000px;}
.fs4_c00092{font-size:72.000000px;}
.fs3_c00092{font-size:84.000000px;}
.fs2_c00092{font-size:108.000000px;}
.y0_c00092{bottom:0.000000px;}
.y1_c00092{bottom:41.250000px;}
.y18_c00092{bottom:76.286700px;}
.y17_c00092{bottom:106.292700px;}
.y16_c00092{bottom:136.298700px;}
.y15_c00092{bottom:166.304700px;}
.y14_c00092{bottom:196.310700px;}
.y13_c00092{bottom:226.316700px;}
.y12_c00092{bottom:256.322700px;}
.y11_c00092{bottom:286.328700px;}
.y10_c00092{bottom:316.334700px;}
.yf_c00092{bottom:376.334700px;}
.ye_c00092{bottom:466.328700px;}
.yd_c00092{bottom:496.334700px;}
.yc_c00092{bottom:556.334700px;}
.yb_c00092{bottom:646.292700px;}
.ya_c00092{bottom:676.298700px;}
.y9_c00092{bottom:706.304700px;}
.y8_c00092{bottom:736.310700px;}
.y1d_c00092{bottom:736.334700px;}
.y7_c00092{bottom:766.316700px;}
.y1c_c00092{bottom:766.334700px;}
.y6_c00092{bottom:796.322700px;}
.y1b_c00092{bottom:796.334700px;}
.y5_c00092{bottom:826.328700px;}
.y1a_c00092{bottom:826.334700px;}
.y4_c00092{bottom:856.334700px;}
.y19_c00092{bottom:857.517300px;}
.y3_c00092{bottom:916.334700px;}
.y2_c00092{bottom:1006.334700px;}
.h6_c00092{height:50.292000px;}
.h2_c00092{height:54.000000px;}
.h5_c00092{height:64.800000px;}
.h4_c00092{height:78.540000px;}
.h3_c00092{height:100.980000px;}
.h0_c00092{height:1262.835000px;}
.h1_c00092{height:1263.000000px;}
.w0_c00092{width:892.914000px;}
.w1_c00092{width:893.250000px;}
.x0_c00092{left:0.000000px;}
.x2_c00092{left:82.500000px;}
.x3_c00092{left:90.000000px;}
.x4_c00092{left:106.500000px;}
.x5_c00092{left:675.611100px;}
.x1_c00092{left:794.213700px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls6_c00092{letter-spacing:-0.480000pt;}
.ls5_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:0.640000pt;}
.ls1_c00092{letter-spacing:0.704000pt;}
.ls2_c00092{letter-spacing:0.746667pt;}
.ls4_c00092{letter-spacing:1.333333pt;}
.ls3_c00092{letter-spacing:1.466667pt;}
.ws1_c00092{word-spacing:-18.720000pt;}
.ws2_c00092{word-spacing:-15.680000pt;}
.ws0_c00092{word-spacing:-9.066667pt;}
.wsd_c00092{word-spacing:-3.648000pt;}
.ws15_c00092{word-spacing:-1.333333pt;}
.ws9_c00092{word-spacing:-1.088000pt;}
.ws4_c00092{word-spacing:-0.746667pt;}
.ws3_c00092{word-spacing:0.000000pt;}
.ws5_c00092{word-spacing:0.512000pt;}
.wsf_c00092{word-spacing:1.472000pt;}
.wse_c00092{word-spacing:1.664000pt;}
.ws8_c00092{word-spacing:2.176000pt;}
.ws6_c00092{word-spacing:2.816000pt;}
.ws10_c00092{word-spacing:3.008000pt;}
.ws11_c00092{word-spacing:3.904000pt;}
.ws13_c00092{word-spacing:4.032000pt;}
.ws7_c00092{word-spacing:4.096000pt;}
.wsa_c00092{word-spacing:4.480000pt;}
.ws12_c00092{word-spacing:5.952000pt;}
.wsb_c00092{word-spacing:6.080000pt;}
.wsc_c00092{word-spacing:6.336000pt;}
.ws14_c00092{word-spacing:11.136000pt;}
._0_c00092{margin-left:-426.965867pt;}
._1_c00092{margin-left:-3.733333pt;}
._2_c00092{margin-left:-1.280000pt;}
.fs1_c00092{font-size:37.333333pt;}
.fs0_c00092{font-size:53.333333pt;}
.fs5_c00092{font-size:58.666667pt;}
.fs4_c00092{font-size:64.000000pt;}
.fs3_c00092{font-size:74.666667pt;}
.fs2_c00092{font-size:96.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y1_c00092{bottom:36.666667pt;}
.y18_c00092{bottom:67.810400pt;}
.y17_c00092{bottom:94.482400pt;}
.y16_c00092{bottom:121.154400pt;}
.y15_c00092{bottom:147.826400pt;}
.y14_c00092{bottom:174.498400pt;}
.y13_c00092{bottom:201.170400pt;}
.y12_c00092{bottom:227.842400pt;}
.y11_c00092{bottom:254.514400pt;}
.y10_c00092{bottom:281.186400pt;}
.yf_c00092{bottom:334.519733pt;}
.ye_c00092{bottom:414.514400pt;}
.yd_c00092{bottom:441.186400pt;}
.yc_c00092{bottom:494.519733pt;}
.yb_c00092{bottom:574.482400pt;}
.ya_c00092{bottom:601.154400pt;}
.y9_c00092{bottom:627.826400pt;}
.y8_c00092{bottom:654.498400pt;}
.y1d_c00092{bottom:654.519733pt;}
.y7_c00092{bottom:681.170400pt;}
.y1c_c00092{bottom:681.186400pt;}
.y6_c00092{bottom:707.842400pt;}
.y1b_c00092{bottom:707.853067pt;}
.y5_c00092{bottom:734.514400pt;}
.y1a_c00092{bottom:734.519733pt;}
.y4_c00092{bottom:761.186400pt;}
.y19_c00092{bottom:762.237600pt;}
.y3_c00092{bottom:814.519733pt;}
.y2_c00092{bottom:894.519733pt;}
.h6_c00092{height:44.704000pt;}
.h2_c00092{height:48.000000pt;}
.h5_c00092{height:57.600000pt;}
.h4_c00092{height:69.813333pt;}
.h3_c00092{height:89.760000pt;}
.h0_c00092{height:1122.520000pt;}
.h1_c00092{height:1122.666667pt;}
.w0_c00092{width:793.701333pt;}
.w1_c00092{width:794.000000pt;}
.x0_c00092{left:0.000000pt;}
.x2_c00092{left:73.333333pt;}
.x3_c00092{left:80.000000pt;}
.x4_c00092{left:94.666667pt;}
.x5_c00092{left:600.543200pt;}
.x1_c00092{left:705.967733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.199000;font-style: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);}
.m1_c00093{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls1_c00093{letter-spacing:0.000000px;}
.ls0_c00093{letter-spacing:0.720000px;}
.ls2_c00093{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00093{word-spacing:-0.840000px;}
.wsa_c00093{word-spacing:-0.720000px;}
.ws1_c00093{word-spacing:0.000000px;}
.ws6_c00093{word-spacing:2.592000px;}
.ws4_c00093{word-spacing:3.528000px;}
.ws9_c00093{word-spacing:3.744000px;}
.ws7_c00093{word-spacing:3.960000px;}
.ws8_c00093{word-spacing:4.608000px;}
.ws3_c00093{word-spacing:9.648000px;}
.ws5_c00093{word-spacing:11.952000px;}
._0_c00093{margin-left:-480.336000px;}
._3_c00093{margin-left:-6.552000px;}
._1_c00093{margin-left:-4.200000px;}
._2_c00093{margin-left:-1.440000px;}
.fc2_c00093{color:rgb(32,32,32);}
.fc1_c00093{color:rgb(232,86,17);}
.fc0_c00093{color:rgb(60,60,59);}
.fs1_c00093{font-size:42.000000px;}
.fs0_c00093{font-size:60.000000px;}
.fs3_c00093{font-size:72.000000px;}
.fs2_c00093{font-size:84.000000px;}
.y0_c00093{bottom:0.000000px;}
.y1_c00093{bottom:41.250000px;}
.yc_c00093{bottom:586.322700px;}
.yb_c00093{bottom:616.328700px;}
.ya_c00093{bottom:646.334700px;}
.y9_c00093{bottom:706.334700px;}
.y8_c00093{bottom:796.304700px;}
.y7_c00093{bottom:826.310700px;}
.y6_c00093{bottom:856.316700px;}
.y5_c00093{bottom:886.322700px;}
.y4_c00093{bottom:916.328700px;}
.y3_c00093{bottom:946.334700px;}
.y2_c00093{bottom:1006.334700px;}
.h2_c00093{height:54.000000px;}
.h4_c00093{height:64.800000px;}
.h3_c00093{height:78.540000px;}
.h0_c00093{height:1262.835000px;}
.h1_c00093{height:1263.000000px;}
.w0_c00093{width:892.914000px;}
.w1_c00093{width:893.250000px;}
.x0_c00093{left:0.000000px;}
.x2_c00093{left:90.000000px;}
.x3_c00093{left:106.500000px;}
.x1_c00093{left:793.238550px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls1_c00093{letter-spacing:0.000000pt;}
.ls0_c00093{letter-spacing:0.640000pt;}
.ls2_c00093{letter-spacing:0.746667pt;}
.ws0_c00093{word-spacing:-9.066667pt;}
.ws2_c00093{word-spacing:-0.746667pt;}
.wsa_c00093{word-spacing:-0.640000pt;}
.ws1_c00093{word-spacing:0.000000pt;}
.ws6_c00093{word-spacing:2.304000pt;}
.ws4_c00093{word-spacing:3.136000pt;}
.ws9_c00093{word-spacing:3.328000pt;}
.ws7_c00093{word-spacing:3.520000pt;}
.ws8_c00093{word-spacing:4.096000pt;}
.ws3_c00093{word-spacing:8.576000pt;}
.ws5_c00093{word-spacing:10.624000pt;}
._0_c00093{margin-left:-426.965333pt;}
._3_c00093{margin-left:-5.824000pt;}
._1_c00093{margin-left:-3.733333pt;}
._2_c00093{margin-left:-1.280000pt;}
.fs1_c00093{font-size:37.333333pt;}
.fs0_c00093{font-size:53.333333pt;}
.fs3_c00093{font-size:64.000000pt;}
.fs2_c00093{font-size:74.666667pt;}
.y0_c00093{bottom:0.000000pt;}
.y1_c00093{bottom:36.666667pt;}
.yc_c00093{bottom:521.175733pt;}
.yb_c00093{bottom:547.847733pt;}
.ya_c00093{bottom:574.519733pt;}
.y9_c00093{bottom:627.853067pt;}
.y8_c00093{bottom:707.826400pt;}
.y7_c00093{bottom:734.498400pt;}
.y6_c00093{bottom:761.170400pt;}
.y5_c00093{bottom:787.842400pt;}
.y4_c00093{bottom:814.514400pt;}
.y3_c00093{bottom:841.186400pt;}
.y2_c00093{bottom:894.519733pt;}
.h2_c00093{height:48.000000pt;}
.h4_c00093{height:57.600000pt;}
.h3_c00093{height:69.813333pt;}
.h0_c00093{height:1122.520000pt;}
.h1_c00093{height:1122.666667pt;}
.w0_c00093{width:793.701333pt;}
.w1_c00093{width:794.000000pt;}
.x0_c00093{left:0.000000pt;}
.x2_c00093{left:80.000000pt;}
.x3_c00093{left:94.666667pt;}
.x1_c00093{left:705.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00094;src:url('chunks/assets/font_a56fbd298d082f4bdc9a31ba.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00094;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00094;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff5_c00094{font-family:ff5_c00094;line-height:1.161000;font-style: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);}
.m1_c00094{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls6_c00094{letter-spacing:-0.324000px;}
.ls5_c00094{letter-spacing:0.000000px;}
.ls0_c00094{letter-spacing:0.720000px;}
.ls1_c00094{letter-spacing:0.784800px;}
.ls2_c00094{letter-spacing:0.840000px;}
.ls4_c00094{letter-spacing:1.500000px;}
.ls3_c00094{letter-spacing:1.650000px;}
.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:-21.276000px;}
.ws3_c00094{word-spacing:-14.850000px;}
.ws2_c00094{word-spacing:-12.960000px;}
.ws0_c00094{word-spacing:-10.200000px;}
.ws10_c00094{word-spacing:-3.600000px;}
.ws11_c00094{word-spacing:-2.160000px;}
.ws14_c00094{word-spacing:-1.500000px;}
.wsa_c00094{word-spacing:-1.008000px;}
.ws5_c00094{word-spacing:-0.840000px;}
.wsf_c00094{word-spacing:-0.288000px;}
.ws4_c00094{word-spacing:0.000000px;}
.wsd_c00094{word-spacing:1.944000px;}
.ws12_c00094{word-spacing:4.176000px;}
.wse_c00094{word-spacing:5.472000px;}
.wsc_c00094{word-spacing:6.408000px;}
.ws7_c00094{word-spacing:7.344000px;}
.ws13_c00094{word-spacing:9.792000px;}
.ws9_c00094{word-spacing:9.864000px;}
.ws6_c00094{word-spacing:15.840000px;}
.ws8_c00094{word-spacing:16.272000px;}
.wsb_c00094{word-spacing:19.512000px;}
._0_c00094{margin-left:-480.335400px;}
._4_c00094{margin-left:-5.760000px;}
._1_c00094{margin-left:-4.200000px;}
._3_c00094{margin-left:-2.160000px;}
._2_c00094{margin-left:-1.134000px;}
.fc3_c00094{color:rgb(32,32,32);}
.fc2_c00094{color:rgb(233,83,14);}
.fc1_c00094{color:rgb(232,86,17);}
.fc4_c00094{color:rgb(157,157,156);}
.fc0_c00094{color:rgb(60,60,59);}
.fs1_c00094{font-size:42.000000px;}
.fs0_c00094{font-size:60.000000px;}
.fs5_c00094{font-size:66.000000px;}
.fs4_c00094{font-size:72.000000px;}
.fs3_c00094{font-size:84.000000px;}
.fs2_c00094{font-size:108.000000px;}
.y0_c00094{bottom:0.000000px;}
.y1_c00094{bottom:41.250000px;}
.y18_c00094{bottom:76.286700px;}
.y17_c00094{bottom:106.292700px;}
.y16_c00094{bottom:136.298700px;}
.y15_c00094{bottom:166.304700px;}
.y14_c00094{bottom:196.310700px;}
.y13_c00094{bottom:226.316700px;}
.y12_c00094{bottom:256.322700px;}
.y11_c00094{bottom:286.328700px;}
.y10_c00094{bottom:316.334700px;}
.yf_c00094{bottom:376.334700px;}
.ye_c00094{bottom:466.328700px;}
.yd_c00094{bottom:496.334700px;}
.yc_c00094{bottom:556.334700px;}
.yb_c00094{bottom:646.292700px;}
.ya_c00094{bottom:676.298700px;}
.y9_c00094{bottom:706.304700px;}
.y8_c00094{bottom:736.310700px;}
.y1d_c00094{bottom:736.334700px;}
.y7_c00094{bottom:766.316700px;}
.y1c_c00094{bottom:766.334700px;}
.y6_c00094{bottom:796.322700px;}
.y1b_c00094{bottom:796.334700px;}
.y5_c00094{bottom:826.328700px;}
.y1a_c00094{bottom:826.334700px;}
.y4_c00094{bottom:856.334700px;}
.y19_c00094{bottom:857.517300px;}
.y3_c00094{bottom:916.334700px;}
.y2_c00094{bottom:1006.334700px;}
.h6_c00094{height:50.292000px;}
.h2_c00094{height:54.000000px;}
.h5_c00094{height:64.800000px;}
.h4_c00094{height:78.540000px;}
.h3_c00094{height:100.980000px;}
.h0_c00094{height:1262.835000px;}
.h1_c00094{height:1263.000000px;}
.w0_c00094{width:892.914000px;}
.w1_c00094{width:893.250000px;}
.x0_c00094{left:0.000000px;}
.x2_c00094{left:82.500000px;}
.x3_c00094{left:90.000000px;}
.x4_c00094{left:106.500000px;}
.x5_c00094{left:675.611100px;}
.x1_c00094{left:794.288400px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls6_c00094{letter-spacing:-0.288000pt;}
.ls5_c00094{letter-spacing:0.000000pt;}
.ls0_c00094{letter-spacing:0.640000pt;}
.ls1_c00094{letter-spacing:0.697600pt;}
.ls2_c00094{letter-spacing:0.746667pt;}
.ls4_c00094{letter-spacing:1.333333pt;}
.ls3_c00094{letter-spacing:1.466667pt;}
.ws1_c00094{word-spacing:-18.912000pt;}
.ws3_c00094{word-spacing:-13.200000pt;}
.ws2_c00094{word-spacing:-11.520000pt;}
.ws0_c00094{word-spacing:-9.066667pt;}
.ws10_c00094{word-spacing:-3.200000pt;}
.ws11_c00094{word-spacing:-1.920000pt;}
.ws14_c00094{word-spacing:-1.333333pt;}
.wsa_c00094{word-spacing:-0.896000pt;}
.ws5_c00094{word-spacing:-0.746667pt;}
.wsf_c00094{word-spacing:-0.256000pt;}
.ws4_c00094{word-spacing:0.000000pt;}
.wsd_c00094{word-spacing:1.728000pt;}
.ws12_c00094{word-spacing:3.712000pt;}
.wse_c00094{word-spacing:4.864000pt;}
.wsc_c00094{word-spacing:5.696000pt;}
.ws7_c00094{word-spacing:6.528000pt;}
.ws13_c00094{word-spacing:8.704000pt;}
.ws9_c00094{word-spacing:8.768000pt;}
.ws6_c00094{word-spacing:14.080000pt;}
.ws8_c00094{word-spacing:14.464000pt;}
.wsb_c00094{word-spacing:17.344000pt;}
._0_c00094{margin-left:-426.964800pt;}
._4_c00094{margin-left:-5.120000pt;}
._1_c00094{margin-left:-3.733333pt;}
._3_c00094{margin-left:-1.920000pt;}
._2_c00094{margin-left:-1.008000pt;}
.fs1_c00094{font-size:37.333333pt;}
.fs0_c00094{font-size:53.333333pt;}
.fs5_c00094{font-size:58.666667pt;}
.fs4_c00094{font-size:64.000000pt;}
.fs3_c00094{font-size:74.666667pt;}
.fs2_c00094{font-size:96.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y1_c00094{bottom:36.666667pt;}
.y18_c00094{bottom:67.810400pt;}
.y17_c00094{bottom:94.482400pt;}
.y16_c00094{bottom:121.154400pt;}
.y15_c00094{bottom:147.826400pt;}
.y14_c00094{bottom:174.498400pt;}
.y13_c00094{bottom:201.170400pt;}
.y12_c00094{bottom:227.842400pt;}
.y11_c00094{bottom:254.514400pt;}
.y10_c00094{bottom:281.186400pt;}
.yf_c00094{bottom:334.519733pt;}
.ye_c00094{bottom:414.514400pt;}
.yd_c00094{bottom:441.186400pt;}
.yc_c00094{bottom:494.519733pt;}
.yb_c00094{bottom:574.482400pt;}
.ya_c00094{bottom:601.154400pt;}
.y9_c00094{bottom:627.826400pt;}
.y8_c00094{bottom:654.498400pt;}
.y1d_c00094{bottom:654.519733pt;}
.y7_c00094{bottom:681.170400pt;}
.y1c_c00094{bottom:681.186400pt;}
.y6_c00094{bottom:707.842400pt;}
.y1b_c00094{bottom:707.853067pt;}
.y5_c00094{bottom:734.514400pt;}
.y1a_c00094{bottom:734.519733pt;}
.y4_c00094{bottom:761.186400pt;}
.y19_c00094{bottom:762.237600pt;}
.y3_c00094{bottom:814.519733pt;}
.y2_c00094{bottom:894.519733pt;}
.h6_c00094{height:44.704000pt;}
.h2_c00094{height:48.000000pt;}
.h5_c00094{height:57.600000pt;}
.h4_c00094{height:69.813333pt;}
.h3_c00094{height:89.760000pt;}
.h0_c00094{height:1122.520000pt;}
.h1_c00094{height:1122.666667pt;}
.w0_c00094{width:793.701333pt;}
.w1_c00094{width:794.000000pt;}
.x0_c00094{left:0.000000pt;}
.x2_c00094{left:73.333333pt;}
.x3_c00094{left:80.000000pt;}
.x4_c00094{left:94.666667pt;}
.x5_c00094{left:600.543200pt;}
.x1_c00094{left:706.034133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.199000;font-style: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);}
.m1_c00095{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls1_c00095{letter-spacing:0.000000px;}
.ls0_c00095{letter-spacing:0.720000px;}
.ls2_c00095{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00095{word-spacing:-0.840000px;}
.ws1_c00095{word-spacing:0.000000px;}
.ws6_c00095{word-spacing:0.504000px;}
.ws7_c00095{word-spacing:2.808000px;}
.ws4_c00095{word-spacing:3.888000px;}
.ws5_c00095{word-spacing:10.368000px;}
.ws3_c00095{word-spacing:12.168000px;}
._0_c00095{margin-left:-480.336000px;}
._1_c00095{margin-left:-4.200000px;}
._2_c00095{margin-left:-2.152800px;}
.fc2_c00095{color:rgb(32,32,32);}
.fc1_c00095{color:rgb(232,86,17);}
.fc0_c00095{color:rgb(60,60,59);}
.fs1_c00095{font-size:42.000000px;}
.fs0_c00095{font-size:60.000000px;}
.fs3_c00095{font-size:72.000000px;}
.fs2_c00095{font-size:84.000000px;}
.y0_c00095{bottom:0.000000px;}
.y1_c00095{bottom:41.250000px;}
.ya_c00095{bottom:646.328700px;}
.y9_c00095{bottom:676.334700px;}
.y8_c00095{bottom:736.334700px;}
.y7_c00095{bottom:826.310700px;}
.y6_c00095{bottom:856.316700px;}
.y5_c00095{bottom:886.322700px;}
.y4_c00095{bottom:916.328700px;}
.y3_c00095{bottom:946.334700px;}
.y2_c00095{bottom:1006.334700px;}
.h2_c00095{height:54.000000px;}
.h4_c00095{height:64.800000px;}
.h3_c00095{height:78.540000px;}
.h0_c00095{height:1262.835000px;}
.h1_c00095{height:1263.000000px;}
.w0_c00095{width:892.914000px;}
.w1_c00095{width:893.250000px;}
.x0_c00095{left:0.000000px;}
.x2_c00095{left:90.000000px;}
.x3_c00095{left:106.500000px;}
.x1_c00095{left:793.163550px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls1_c00095{letter-spacing:0.000000pt;}
.ls0_c00095{letter-spacing:0.640000pt;}
.ls2_c00095{letter-spacing:0.746667pt;}
.ws0_c00095{word-spacing:-9.066667pt;}
.ws2_c00095{word-spacing:-0.746667pt;}
.ws1_c00095{word-spacing:0.000000pt;}
.ws6_c00095{word-spacing:0.448000pt;}
.ws7_c00095{word-spacing:2.496000pt;}
.ws4_c00095{word-spacing:3.456000pt;}
.ws5_c00095{word-spacing:9.216000pt;}
.ws3_c00095{word-spacing:10.816000pt;}
._0_c00095{margin-left:-426.965333pt;}
._1_c00095{margin-left:-3.733333pt;}
._2_c00095{margin-left:-1.913600pt;}
.fs1_c00095{font-size:37.333333pt;}
.fs0_c00095{font-size:53.333333pt;}
.fs3_c00095{font-size:64.000000pt;}
.fs2_c00095{font-size:74.666667pt;}
.y0_c00095{bottom:0.000000pt;}
.y1_c00095{bottom:36.666667pt;}
.ya_c00095{bottom:574.514400pt;}
.y9_c00095{bottom:601.186400pt;}
.y8_c00095{bottom:654.519733pt;}
.y7_c00095{bottom:734.498400pt;}
.y6_c00095{bottom:761.170400pt;}
.y5_c00095{bottom:787.842400pt;}
.y4_c00095{bottom:814.514400pt;}
.y3_c00095{bottom:841.186400pt;}
.y2_c00095{bottom:894.519733pt;}
.h2_c00095{height:48.000000pt;}
.h4_c00095{height:57.600000pt;}
.h3_c00095{height:69.813333pt;}
.h0_c00095{height:1122.520000pt;}
.h1_c00095{height:1122.666667pt;}
.w0_c00095{width:793.701333pt;}
.w1_c00095{width:794.000000pt;}
.x0_c00095{left:0.000000pt;}
.x2_c00095{left:80.000000pt;}
.x3_c00095{left:94.666667pt;}
.x1_c00095{left:705.034267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00096;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00096;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00096;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00096{font-family:ff5_c00096;line-height:1.155000;font-style: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);}
.m1_c00096{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls3_c00096{letter-spacing:-0.288000px;}
.ls2_c00096{letter-spacing:0.000000px;}
.ls0_c00096{letter-spacing:0.864000px;}
.ls1_c00096{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00096{word-spacing:-11.952000px;}
.ws8_c00096{word-spacing:-11.160000px;}
.ws0_c00096{word-spacing:-10.200000px;}
.ws4_c00096{word-spacing:-5.400000px;}
.ws6_c00096{word-spacing:-5.112000px;}
.ws3_c00096{word-spacing:-2.952000px;}
.ws5_c00096{word-spacing:-2.664000px;}
.ws2_c00096{word-spacing:0.000000px;}
.ws7_c00096{word-spacing:0.288000px;}
._0_c00096{margin-left:-480.336000px;}
._8_c00096{margin-left:-9.000000px;}
._7_c00096{margin-left:-7.560000px;}
._6_c00096{margin-left:-6.480000px;}
._1_c00096{margin-left:-4.200000px;}
._3_c00096{margin-left:-1.440000px;}
._5_c00096{width:1.152000px;}
._2_c00096{width:2.952000px;}
._4_c00096{width:5.400000px;}
.fc3_c00096{color:rgb(255,255,255);}
.fc2_c00096{color:rgb(233,83,14);}
.fc1_c00096{color:rgb(232,86,17);}
.fc0_c00096{color:rgb(60,60,59);}
.fs1_c00096{font-size:42.000000px;}
.fs0_c00096{font-size:60.000000px;}
.fs3_c00096{font-size:72.000000px;}
.fs4_c00096{font-size:120.000000px;}
.fs2_c00096{font-size:360.000000px;}
.y0_c00096{bottom:0.000000px;}
.y1_c00096{bottom:41.250000px;}
.y9_c00096{bottom:574.310700px;}
.y8_c00096{bottom:595.316700px;}
.y7_c00096{bottom:616.322700px;}
.y6_c00096{bottom:664.328700px;}
.y5_c00096{bottom:685.334700px;}
.y4_c00096{bottom:706.340700px;}
.y3_c00096{bottom:752.834700px;}
.yb_c00096{bottom:976.334700px;}
.ya_c00096{bottom:1006.334700px;}
.y2_c00096{bottom:1093.526700px;}
.h2_c00096{height:54.000000px;}
.h5_c00096{height:64.800000px;}
.h4_c00096{height:66.456000px;}
.h6_c00096{height:112.200000px;}
.h3_c00096{height:324.000000px;}
.h0_c00096{height:1262.835000px;}
.h1_c00096{height:1263.000000px;}
.w0_c00096{width:892.914000px;}
.w1_c00096{width:893.250000px;}
.x0_c00096{left:0.000000px;}
.x2_c00096{left:81.290250px;}
.x3_c00096{left:82.393650px;}
.x5_c00096{left:112.287450px;}
.x4_c00096{left:127.393650px;}
.x1_c00096{left:795.263550px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls3_c00096{letter-spacing:-0.256000pt;}
.ls2_c00096{letter-spacing:0.000000pt;}
.ls0_c00096{letter-spacing:0.768000pt;}
.ls1_c00096{letter-spacing:1.066667pt;}
.ws1_c00096{word-spacing:-10.624000pt;}
.ws8_c00096{word-spacing:-9.920000pt;}
.ws0_c00096{word-spacing:-9.066667pt;}
.ws4_c00096{word-spacing:-4.800000pt;}
.ws6_c00096{word-spacing:-4.544000pt;}
.ws3_c00096{word-spacing:-2.624000pt;}
.ws5_c00096{word-spacing:-2.368000pt;}
.ws2_c00096{word-spacing:0.000000pt;}
.ws7_c00096{word-spacing:0.256000pt;}
._0_c00096{margin-left:-426.965333pt;}
._8_c00096{margin-left:-8.000000pt;}
._7_c00096{margin-left:-6.720000pt;}
._6_c00096{margin-left:-5.760000pt;}
._1_c00096{margin-left:-3.733333pt;}
._3_c00096{margin-left:-1.280000pt;}
._5_c00096{width:1.024000pt;}
._2_c00096{width:2.624000pt;}
._4_c00096{width:4.800000pt;}
.fs1_c00096{font-size:37.333333pt;}
.fs0_c00096{font-size:53.333333pt;}
.fs3_c00096{font-size:64.000000pt;}
.fs4_c00096{font-size:106.666667pt;}
.fs2_c00096{font-size:320.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y1_c00096{bottom:36.666667pt;}
.y9_c00096{bottom:510.498400pt;}
.y8_c00096{bottom:529.170400pt;}
.y7_c00096{bottom:547.842400pt;}
.y6_c00096{bottom:590.514400pt;}
.y5_c00096{bottom:609.186400pt;}
.y4_c00096{bottom:627.858400pt;}
.y3_c00096{bottom:669.186400pt;}
.yb_c00096{bottom:867.853067pt;}
.ya_c00096{bottom:894.519733pt;}
.y2_c00096{bottom:972.023733pt;}
.h2_c00096{height:48.000000pt;}
.h5_c00096{height:57.600000pt;}
.h4_c00096{height:59.072000pt;}
.h6_c00096{height:99.733333pt;}
.h3_c00096{height:288.000000pt;}
.h0_c00096{height:1122.520000pt;}
.h1_c00096{height:1122.666667pt;}
.w0_c00096{width:793.701333pt;}
.w1_c00096{width:794.000000pt;}
.x0_c00096{left:0.000000pt;}
.x2_c00096{left:72.258000pt;}
.x3_c00096{left:73.238800pt;}
.x5_c00096{left:99.811067pt;}
.x4_c00096{left:113.238800pt;}
.x1_c00096{left:706.900933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00097;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.161000;font-style: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);}
.m1_c00097{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls5_c00097{letter-spacing:-0.540000px;}
.ls4_c00097{letter-spacing:0.000000px;}
.ls0_c00097{letter-spacing:0.720000px;}
.ls1_c00097{letter-spacing:0.840000px;}
.ls3_c00097{letter-spacing:1.500000px;}
.ls2_c00097{letter-spacing:1.650000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00097{word-spacing:-21.060000px;}
.ws2_c00097{word-spacing:-17.640000px;}
.ws0_c00097{word-spacing:-10.200000px;}
.wsb_c00097{word-spacing:-2.808000px;}
.ws10_c00097{word-spacing:-1.500000px;}
.ws4_c00097{word-spacing:-0.840000px;}
.wsa_c00097{word-spacing:-0.720000px;}
.ws3_c00097{word-spacing:0.000000px;}
.wsc_c00097{word-spacing:1.008000px;}
.wsd_c00097{word-spacing:1.728000px;}
.ws9_c00097{word-spacing:4.320000px;}
.ws5_c00097{word-spacing:4.968000px;}
.wse_c00097{word-spacing:5.472000px;}
.ws6_c00097{word-spacing:5.904000px;}
.wsf_c00097{word-spacing:7.848000px;}
.ws8_c00097{word-spacing:8.280000px;}
.ws7_c00097{word-spacing:13.320000px;}
._0_c00097{margin-left:-480.336000px;}
._1_c00097{margin-left:-4.200000px;}
._2_c00097{margin-left:-1.432800px;}
.fc3_c00097{color:rgb(32,32,32);}
.fc2_c00097{color:rgb(233,83,14);}
.fc1_c00097{color:rgb(232,86,17);}
.fc4_c00097{color:rgb(157,157,156);}
.fc0_c00097{color:rgb(60,60,59);}
.fs1_c00097{font-size:42.000000px;}
.fs0_c00097{font-size:60.000000px;}
.fs5_c00097{font-size:66.000000px;}
.fs4_c00097{font-size:72.000000px;}
.fs3_c00097{font-size:84.000000px;}
.fs2_c00097{font-size:108.000000px;}
.y0_c00097{bottom:0.000000px;}
.y1_c00097{bottom:41.250000px;}
.y12_c00097{bottom:256.304700px;}
.y11_c00097{bottom:286.310700px;}
.y10_c00097{bottom:316.316700px;}
.yf_c00097{bottom:346.322700px;}
.ye_c00097{bottom:376.328700px;}
.yd_c00097{bottom:406.334700px;}
.yc_c00097{bottom:466.334700px;}
.yb_c00097{bottom:556.328700px;}
.ya_c00097{bottom:586.334700px;}
.y9_c00097{bottom:646.334700px;}
.y18_c00097{bottom:706.334700px;}
.y8_c00097{bottom:736.310700px;}
.y17_c00097{bottom:736.334700px;}
.y7_c00097{bottom:766.316700px;}
.y16_c00097{bottom:766.334700px;}
.y6_c00097{bottom:796.322700px;}
.y15_c00097{bottom:796.334700px;}
.y5_c00097{bottom:826.328700px;}
.y14_c00097{bottom:826.334700px;}
.y4_c00097{bottom:856.334700px;}
.y13_c00097{bottom:857.517300px;}
.y3_c00097{bottom:916.334700px;}
.y2_c00097{bottom:1006.334700px;}
.h6_c00097{height:50.292000px;}
.h2_c00097{height:54.000000px;}
.h5_c00097{height:64.800000px;}
.h4_c00097{height:78.540000px;}
.h3_c00097{height:100.980000px;}
.h0_c00097{height:1262.835000px;}
.h1_c00097{height:1263.000000px;}
.w0_c00097{width:892.914000px;}
.w1_c00097{width:893.250000px;}
.x0_c00097{left:0.000000px;}
.x2_c00097{left:82.500000px;}
.x3_c00097{left:90.000000px;}
.x4_c00097{left:106.500000px;}
.x5_c00097{left:675.611100px;}
.x1_c00097{left:793.238550px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls5_c00097{letter-spacing:-0.480000pt;}
.ls4_c00097{letter-spacing:0.000000pt;}
.ls0_c00097{letter-spacing:0.640000pt;}
.ls1_c00097{letter-spacing:0.746667pt;}
.ls3_c00097{letter-spacing:1.333333pt;}
.ls2_c00097{letter-spacing:1.466667pt;}
.ws1_c00097{word-spacing:-18.720000pt;}
.ws2_c00097{word-spacing:-15.680000pt;}
.ws0_c00097{word-spacing:-9.066667pt;}
.wsb_c00097{word-spacing:-2.496000pt;}
.ws10_c00097{word-spacing:-1.333333pt;}
.ws4_c00097{word-spacing:-0.746667pt;}
.wsa_c00097{word-spacing:-0.640000pt;}
.ws3_c00097{word-spacing:0.000000pt;}
.wsc_c00097{word-spacing:0.896000pt;}
.wsd_c00097{word-spacing:1.536000pt;}
.ws9_c00097{word-spacing:3.840000pt;}
.ws5_c00097{word-spacing:4.416000pt;}
.wse_c00097{word-spacing:4.864000pt;}
.ws6_c00097{word-spacing:5.248000pt;}
.wsf_c00097{word-spacing:6.976000pt;}
.ws8_c00097{word-spacing:7.360000pt;}
.ws7_c00097{word-spacing:11.840000pt;}
._0_c00097{margin-left:-426.965333pt;}
._1_c00097{margin-left:-3.733333pt;}
._2_c00097{margin-left:-1.273600pt;}
.fs1_c00097{font-size:37.333333pt;}
.fs0_c00097{font-size:53.333333pt;}
.fs5_c00097{font-size:58.666667pt;}
.fs4_c00097{font-size:64.000000pt;}
.fs3_c00097{font-size:74.666667pt;}
.fs2_c00097{font-size:96.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y1_c00097{bottom:36.666667pt;}
.y12_c00097{bottom:227.826400pt;}
.y11_c00097{bottom:254.498400pt;}
.y10_c00097{bottom:281.170400pt;}
.yf_c00097{bottom:307.842400pt;}
.ye_c00097{bottom:334.514400pt;}
.yd_c00097{bottom:361.186400pt;}
.yc_c00097{bottom:414.519733pt;}
.yb_c00097{bottom:494.514400pt;}
.ya_c00097{bottom:521.186400pt;}
.y9_c00097{bottom:574.519733pt;}
.y18_c00097{bottom:627.853067pt;}
.y8_c00097{bottom:654.498400pt;}
.y17_c00097{bottom:654.519733pt;}
.y7_c00097{bottom:681.170400pt;}
.y16_c00097{bottom:681.186400pt;}
.y6_c00097{bottom:707.842400pt;}
.y15_c00097{bottom:707.853067pt;}
.y5_c00097{bottom:734.514400pt;}
.y14_c00097{bottom:734.519733pt;}
.y4_c00097{bottom:761.186400pt;}
.y13_c00097{bottom:762.237600pt;}
.y3_c00097{bottom:814.519733pt;}
.y2_c00097{bottom:894.519733pt;}
.h6_c00097{height:44.704000pt;}
.h2_c00097{height:48.000000pt;}
.h5_c00097{height:57.600000pt;}
.h4_c00097{height:69.813333pt;}
.h3_c00097{height:89.760000pt;}
.h0_c00097{height:1122.520000pt;}
.h1_c00097{height:1122.666667pt;}
.w0_c00097{width:793.701333pt;}
.w1_c00097{width:794.000000pt;}
.x0_c00097{left:0.000000pt;}
.x2_c00097{left:73.333333pt;}
.x3_c00097{left:80.000000pt;}
.x4_c00097{left:94.666667pt;}
.x5_c00097{left:600.543200pt;}
.x1_c00097{left:705.100933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00098{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls1_c00098{letter-spacing:0.000000px;}
.ls0_c00098{letter-spacing:0.720000px;}
.ls2_c00098{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws8_c00098{word-spacing:-3.960000px;}
.ws10_c00098{word-spacing:-1.008000px;}
.ws2_c00098{word-spacing:-0.840000px;}
.ws1_c00098{word-spacing:0.000000px;}
.ws6_c00098{word-spacing:0.072000px;}
.ws11_c00098{word-spacing:2.088000px;}
.ws13_c00098{word-spacing:2.520000px;}
.wse_c00098{word-spacing:2.664000px;}
.ws5_c00098{word-spacing:2.952000px;}
.ws3_c00098{word-spacing:3.024000px;}
.ws4_c00098{word-spacing:4.248000px;}
.wsf_c00098{word-spacing:4.464000px;}
.wsd_c00098{word-spacing:6.336000px;}
.wsb_c00098{word-spacing:7.920000px;}
.ws9_c00098{word-spacing:9.864000px;}
.wsa_c00098{word-spacing:10.296000px;}
.ws12_c00098{word-spacing:10.440000px;}
.wsc_c00098{word-spacing:11.016000px;}
.ws7_c00098{word-spacing:12.024000px;}
._0_c00098{margin-left:-480.336000px;}
._1_c00098{margin-left:-4.200000px;}
._2_c00098{margin-left:-2.152800px;}
._6_c00098{margin-left:-1.008000px;}
._4_c00098{width:1.785600px;}
._5_c00098{width:2.952000px;}
._3_c00098{width:3.952800px;}
.fc2_c00098{color:rgb(32,32,32);}
.fc1_c00098{color:rgb(232,86,17);}
.fc0_c00098{color:rgb(60,60,59);}
.fs1_c00098{font-size:42.000000px;}
.fs0_c00098{font-size:60.000000px;}
.fs3_c00098{font-size:72.000000px;}
.fs2_c00098{font-size:84.000000px;}
.y0_c00098{bottom:0.000000px;}
.y1_c00098{bottom:41.250000px;}
.y16_c00098{bottom:286.262700px;}
.y15_c00098{bottom:316.268700px;}
.y14_c00098{bottom:346.274700px;}
.y13_c00098{bottom:376.280700px;}
.y12_c00098{bottom:406.286700px;}
.y11_c00098{bottom:436.292700px;}
.y10_c00098{bottom:466.298700px;}
.yf_c00098{bottom:496.304700px;}
.ye_c00098{bottom:526.310700px;}
.yd_c00098{bottom:556.316700px;}
.yc_c00098{bottom:586.322700px;}
.yb_c00098{bottom:616.328700px;}
.ya_c00098{bottom:646.334700px;}
.y9_c00098{bottom:706.334700px;}
.y8_c00098{bottom:796.304700px;}
.y7_c00098{bottom:826.310700px;}
.y6_c00098{bottom:856.316700px;}
.y5_c00098{bottom:886.322700px;}
.y4_c00098{bottom:916.328700px;}
.y3_c00098{bottom:946.334700px;}
.y2_c00098{bottom:1006.334700px;}
.h2_c00098{height:54.000000px;}
.h4_c00098{height:64.800000px;}
.h3_c00098{height:78.540000px;}
.h0_c00098{height:1262.835000px;}
.h1_c00098{height:1263.000000px;}
.w0_c00098{width:892.914000px;}
.w1_c00098{width:893.250000px;}
.x0_c00098{left:0.000000px;}
.x2_c00098{left:90.000000px;}
.x3_c00098{left:106.500000px;}
.x1_c00098{left:793.163550px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls1_c00098{letter-spacing:0.000000pt;}
.ls0_c00098{letter-spacing:0.640000pt;}
.ls2_c00098{letter-spacing:0.746667pt;}
.ws0_c00098{word-spacing:-9.066667pt;}
.ws8_c00098{word-spacing:-3.520000pt;}
.ws10_c00098{word-spacing:-0.896000pt;}
.ws2_c00098{word-spacing:-0.746667pt;}
.ws1_c00098{word-spacing:0.000000pt;}
.ws6_c00098{word-spacing:0.064000pt;}
.ws11_c00098{word-spacing:1.856000pt;}
.ws13_c00098{word-spacing:2.240000pt;}
.wse_c00098{word-spacing:2.368000pt;}
.ws5_c00098{word-spacing:2.624000pt;}
.ws3_c00098{word-spacing:2.688000pt;}
.ws4_c00098{word-spacing:3.776000pt;}
.wsf_c00098{word-spacing:3.968000pt;}
.wsd_c00098{word-spacing:5.632000pt;}
.wsb_c00098{word-spacing:7.040000pt;}
.ws9_c00098{word-spacing:8.768000pt;}
.wsa_c00098{word-spacing:9.152000pt;}
.ws12_c00098{word-spacing:9.280000pt;}
.wsc_c00098{word-spacing:9.792000pt;}
.ws7_c00098{word-spacing:10.688000pt;}
._0_c00098{margin-left:-426.965333pt;}
._1_c00098{margin-left:-3.733333pt;}
._2_c00098{margin-left:-1.913600pt;}
._6_c00098{margin-left:-0.896000pt;}
._4_c00098{width:1.587200pt;}
._5_c00098{width:2.624000pt;}
._3_c00098{width:3.513600pt;}
.fs1_c00098{font-size:37.333333pt;}
.fs0_c00098{font-size:53.333333pt;}
.fs3_c00098{font-size:64.000000pt;}
.fs2_c00098{font-size:74.666667pt;}
.y0_c00098{bottom:0.000000pt;}
.y1_c00098{bottom:36.666667pt;}
.y16_c00098{bottom:254.455733pt;}
.y15_c00098{bottom:281.127733pt;}
.y14_c00098{bottom:307.799733pt;}
.y13_c00098{bottom:334.471733pt;}
.y12_c00098{bottom:361.143733pt;}
.y11_c00098{bottom:387.815733pt;}
.y10_c00098{bottom:414.487733pt;}
.yf_c00098{bottom:441.159733pt;}
.ye_c00098{bottom:467.831733pt;}
.yd_c00098{bottom:494.503733pt;}
.yc_c00098{bottom:521.175733pt;}
.yb_c00098{bottom:547.847733pt;}
.ya_c00098{bottom:574.519733pt;}
.y9_c00098{bottom:627.853067pt;}
.y8_c00098{bottom:707.826400pt;}
.y7_c00098{bottom:734.498400pt;}
.y6_c00098{bottom:761.170400pt;}
.y5_c00098{bottom:787.842400pt;}
.y4_c00098{bottom:814.514400pt;}
.y3_c00098{bottom:841.186400pt;}
.y2_c00098{bottom:894.519733pt;}
.h2_c00098{height:48.000000pt;}
.h4_c00098{height:57.600000pt;}
.h3_c00098{height:69.813333pt;}
.h0_c00098{height:1122.520000pt;}
.h1_c00098{height:1122.666667pt;}
.w0_c00098{width:793.701333pt;}
.w1_c00098{width:794.000000pt;}
.x0_c00098{left:0.000000pt;}
.x2_c00098{left:80.000000pt;}
.x3_c00098{left:94.666667pt;}
.x1_c00098{left:705.034267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc04a28aa7b69d9b6e0497a8.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.160000;font-style:normal;font-weight:normal;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_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00099;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;line-height:1.161000;font-style: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);}
.m1_c00099{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls6_c00099{letter-spacing:-0.324000px;}
.ls5_c00099{letter-spacing:0.000000px;}
.ls2_c00099{letter-spacing:0.360000px;}
.ls0_c00099{letter-spacing:0.720000px;}
.ls1_c00099{letter-spacing:0.840000px;}
.ls4_c00099{letter-spacing:1.500000px;}
.ls3_c00099{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00099{word-spacing:-21.276000px;}
.ws2_c00099{word-spacing:-14.850000px;}
.ws0_c00099{word-spacing:-10.200000px;}
.ws5_c00099{word-spacing:-4.608000px;}
.ws8_c00099{word-spacing:-1.584000px;}
.wsf_c00099{word-spacing:-1.500000px;}
.ws4_c00099{word-spacing:-0.840000px;}
.wsb_c00099{word-spacing:-0.648000px;}
.ws9_c00099{word-spacing:-0.072000px;}
.ws3_c00099{word-spacing:0.000000px;}
.wse_c00099{word-spacing:2.304000px;}
.ws7_c00099{word-spacing:2.808000px;}
.wsd_c00099{word-spacing:2.880000px;}
.ws6_c00099{word-spacing:5.328000px;}
.wsa_c00099{word-spacing:5.544000px;}
.wsc_c00099{word-spacing:10.296000px;}
._0_c00099{margin-left:-480.337800px;}
._4_c00099{margin-left:-6.480000px;}
._1_c00099{margin-left:-4.200000px;}
._3_c00099{margin-left:-2.986800px;}
._2_c00099{margin-left:-1.134000px;}
._6_c00099{width:2.325600px;}
._5_c00099{width:3.384000px;}
.fc3_c00099{color:rgb(32,32,32);}
.fc2_c00099{color:rgb(233,83,14);}
.fc1_c00099{color:rgb(232,86,17);}
.fc4_c00099{color:rgb(157,157,156);}
.fc0_c00099{color:rgb(60,60,59);}
.fs1_c00099{font-size:42.000000px;}
.fs0_c00099{font-size:60.000000px;}
.fs5_c00099{font-size:66.000000px;}
.fs4_c00099{font-size:72.000000px;}
.fs3_c00099{font-size:84.000000px;}
.fs2_c00099{font-size:108.000000px;}
.y0_c00099{bottom:0.000000px;}
.y1_c00099{bottom:41.250000px;}
.y11_c00099{bottom:256.310700px;}
.y10_c00099{bottom:286.316700px;}
.yf_c00099{bottom:316.322700px;}
.ye_c00099{bottom:376.316700px;}
.yd_c00099{bottom:406.322700px;}
.yc_c00099{bottom:436.328700px;}
.yb_c00099{bottom:466.334700px;}
.ya_c00099{bottom:526.334700px;}
.y9_c00099{bottom:616.334700px;}
.y8_c00099{bottom:676.334700px;}
.y7_c00099{bottom:766.316700px;}
.y15_c00099{bottom:766.334700px;}
.y6_c00099{bottom:796.322700px;}
.y14_c00099{bottom:796.334700px;}
.y5_c00099{bottom:826.328700px;}
.y13_c00099{bottom:826.334700px;}
.y4_c00099{bottom:856.334700px;}
.y12_c00099{bottom:857.517300px;}
.y3_c00099{bottom:916.334700px;}
.y2_c00099{bottom:1006.334700px;}
.h6_c00099{height:50.292000px;}
.h2_c00099{height:54.000000px;}
.h5_c00099{height:64.800000px;}
.h4_c00099{height:78.540000px;}
.h3_c00099{height:100.980000px;}
.h0_c00099{height:1262.835000px;}
.h1_c00099{height:1263.000000px;}
.w0_c00099{width:892.914000px;}
.w1_c00099{width:893.250000px;}
.x0_c00099{left:0.000000px;}
.x2_c00099{left:82.500000px;}
.x3_c00099{left:90.000000px;}
.x4_c00099{left:106.500000px;}
.x5_c00099{left:675.611100px;}
.x1_c00099{left:788.244000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls6_c00099{letter-spacing:-0.288000pt;}
.ls5_c00099{letter-spacing:0.000000pt;}
.ls2_c00099{letter-spacing:0.320000pt;}
.ls0_c00099{letter-spacing:0.640000pt;}
.ls1_c00099{letter-spacing:0.746667pt;}
.ls4_c00099{letter-spacing:1.333333pt;}
.ls3_c00099{letter-spacing:1.466667pt;}
.ws1_c00099{word-spacing:-18.912000pt;}
.ws2_c00099{word-spacing:-13.200000pt;}
.ws0_c00099{word-spacing:-9.066667pt;}
.ws5_c00099{word-spacing:-4.096000pt;}
.ws8_c00099{word-spacing:-1.408000pt;}
.wsf_c00099{word-spacing:-1.333333pt;}
.ws4_c00099{word-spacing:-0.746667pt;}
.wsb_c00099{word-spacing:-0.576000pt;}
.ws9_c00099{word-spacing:-0.064000pt;}
.ws3_c00099{word-spacing:0.000000pt;}
.wse_c00099{word-spacing:2.048000pt;}
.ws7_c00099{word-spacing:2.496000pt;}
.wsd_c00099{word-spacing:2.560000pt;}
.ws6_c00099{word-spacing:4.736000pt;}
.wsa_c00099{word-spacing:4.928000pt;}
.wsc_c00099{word-spacing:9.152000pt;}
._0_c00099{margin-left:-426.966933pt;}
._4_c00099{margin-left:-5.760000pt;}
._1_c00099{margin-left:-3.733333pt;}
._3_c00099{margin-left:-2.654933pt;}
._2_c00099{margin-left:-1.008000pt;}
._6_c00099{width:2.067200pt;}
._5_c00099{width:3.008000pt;}
.fs1_c00099{font-size:37.333333pt;}
.fs0_c00099{font-size:53.333333pt;}
.fs5_c00099{font-size:58.666667pt;}
.fs4_c00099{font-size:64.000000pt;}
.fs3_c00099{font-size:74.666667pt;}
.fs2_c00099{font-size:96.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y1_c00099{bottom:36.666667pt;}
.y11_c00099{bottom:227.831733pt;}
.y10_c00099{bottom:254.503733pt;}
.yf_c00099{bottom:281.175733pt;}
.ye_c00099{bottom:334.503733pt;}
.yd_c00099{bottom:361.175733pt;}
.yc_c00099{bottom:387.847733pt;}
.yb_c00099{bottom:414.519733pt;}
.ya_c00099{bottom:467.853067pt;}
.y9_c00099{bottom:547.853067pt;}
.y8_c00099{bottom:601.186400pt;}
.y7_c00099{bottom:681.170400pt;}
.y15_c00099{bottom:681.186400pt;}
.y6_c00099{bottom:707.842400pt;}
.y14_c00099{bottom:707.853067pt;}
.y5_c00099{bottom:734.514400pt;}
.y13_c00099{bottom:734.519733pt;}
.y4_c00099{bottom:761.186400pt;}
.y12_c00099{bottom:762.237600pt;}
.y3_c00099{bottom:814.519733pt;}
.y2_c00099{bottom:894.519733pt;}
.h6_c00099{height:44.704000pt;}
.h2_c00099{height:48.000000pt;}
.h5_c00099{height:57.600000pt;}
.h4_c00099{height:69.813333pt;}
.h3_c00099{height:89.760000pt;}
.h0_c00099{height:1122.520000pt;}
.h1_c00099{height:1122.666667pt;}
.w0_c00099{width:793.701333pt;}
.w1_c00099{width:794.000000pt;}
.x0_c00099{left:0.000000pt;}
.x2_c00099{left:73.333333pt;}
.x3_c00099{left:80.000000pt;}
.x4_c00099{left:94.666667pt;}
.x5_c00099{left:600.543200pt;}
.x1_c00099{left:700.661333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9503b9fc57b923a4d197bd9.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.199000;font-style: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);}
.m1_c00100{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls1_c00100{letter-spacing:0.000000px;}
.ls0_c00100{letter-spacing:0.720000px;}
.ls2_c00100{letter-spacing:0.840000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:-10.200000px;}
.ws8_c00100{word-spacing:-4.104000px;}
.wsb_c00100{word-spacing:-1.296000px;}
.ws10_c00100{word-spacing:-1.224000px;}
.ws2_c00100{word-spacing:-0.840000px;}
.ws13_c00100{word-spacing:-0.720000px;}
.ws1_c00100{word-spacing:0.000000px;}
.ws5_c00100{word-spacing:0.360000px;}
.ws3_c00100{word-spacing:2.664000px;}
.ws4_c00100{word-spacing:3.096000px;}
.wsd_c00100{word-spacing:3.744000px;}
.ws6_c00100{word-spacing:4.104000px;}
.wsa_c00100{word-spacing:4.896000px;}
.ws9_c00100{word-spacing:4.968000px;}
.wsc_c00100{word-spacing:6.840000px;}
.wse_c00100{word-spacing:7.488000px;}
.ws11_c00100{word-spacing:10.080000px;}
.wsf_c00100{word-spacing:11.592000px;}
.ws7_c00100{word-spacing:12.312000px;}
.ws12_c00100{word-spacing:13.896000px;}
._0_c00100{margin-left:-480.337800px;}
._3_c00100{margin-left:-5.760000px;}
._1_c00100{margin-left:-4.200000px;}
._4_c00100{margin-left:-2.748000px;}
._2_c00100{margin-left:-1.440000px;}
._5_c00100{width:2.376000px;}
.fc2_c00100{color:rgb(32,32,32);}
.fc1_c00100{color:rgb(232,86,17);}
.fc0_c00100{color:rgb(60,60,59);}
.fs1_c00100{font-size:42.000000px;}
.fs0_c00100{font-size:60.000000px;}
.fs3_c00100{font-size:72.000000px;}
.fs2_c00100{font-size:84.000000px;}
.y0_c00100{bottom:0.000000px;}
.y1_c00100{bottom:41.250000px;}
.y15_c00100{bottom:316.268700px;}
.y14_c00100{bottom:346.274700px;}
.y13_c00100{bottom:376.280700px;}
.y12_c00100{bottom:406.286700px;}
.y11_c00100{bottom:436.292700px;}
.y10_c00100{bottom:466.298700px;}
.yf_c00100{bottom:496.304700px;}
.ye_c00100{bottom:526.310700px;}
.yd_c00100{bottom:556.316700px;}
.yc_c00100{bottom:586.322700px;}
.yb_c00100{bottom:616.328700px;}
.ya_c00100{bottom:646.334700px;}
.y9_c00100{bottom:706.334700px;}
.y8_c00100{bottom:796.304700px;}
.y7_c00100{bottom:826.310700px;}
.y6_c00100{bottom:856.316700px;}
.y5_c00100{bottom:886.322700px;}
.y4_c00100{bottom:916.328700px;}
.y3_c00100{bottom:946.334700px;}
.y2_c00100{bottom:1006.334700px;}
.h2_c00100{height:54.000000px;}
.h4_c00100{height:64.800000px;}
.h3_c00100{height:78.540000px;}
.h0_c00100{height:1262.835000px;}
.h1_c00100{height:1263.000000px;}
.w0_c00100{width:892.914000px;}
.w1_c00100{width:893.250000px;}
.x0_c00100{left:0.000000px;}
.x2_c00100{left:90.000000px;}
.x3_c00100{left:106.500000px;}
.x1_c00100{left:791.904000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls1_c00100{letter-spacing:0.000000pt;}
.ls0_c00100{letter-spacing:0.640000pt;}
.ls2_c00100{letter-spacing:0.746667pt;}
.ws0_c00100{word-spacing:-9.066667pt;}
.ws8_c00100{word-spacing:-3.648000pt;}
.wsb_c00100{word-spacing:-1.152000pt;}
.ws10_c00100{word-spacing:-1.088000pt;}
.ws2_c00100{word-spacing:-0.746667pt;}
.ws13_c00100{word-spacing:-0.640000pt;}
.ws1_c00100{word-spacing:0.000000pt;}
.ws5_c00100{word-spacing:0.320000pt;}
.ws3_c00100{word-spacing:2.368000pt;}
.ws4_c00100{word-spacing:2.752000pt;}
.wsd_c00100{word-spacing:3.328000pt;}
.ws6_c00100{word-spacing:3.648000pt;}
.wsa_c00100{word-spacing:4.352000pt;}
.ws9_c00100{word-spacing:4.416000pt;}
.wsc_c00100{word-spacing:6.080000pt;}
.wse_c00100{word-spacing:6.656000pt;}
.ws11_c00100{word-spacing:8.960000pt;}
.wsf_c00100{word-spacing:10.304000pt;}
.ws7_c00100{word-spacing:10.944000pt;}
.ws12_c00100{word-spacing:12.352000pt;}
._0_c00100{margin-left:-426.966933pt;}
._3_c00100{margin-left:-5.120000pt;}
._1_c00100{margin-left:-3.733333pt;}
._4_c00100{margin-left:-2.442667pt;}
._2_c00100{margin-left:-1.280000pt;}
._5_c00100{width:2.112000pt;}
.fs1_c00100{font-size:37.333333pt;}
.fs0_c00100{font-size:53.333333pt;}
.fs3_c00100{font-size:64.000000pt;}
.fs2_c00100{font-size:74.666667pt;}
.y0_c00100{bottom:0.000000pt;}
.y1_c00100{bottom:36.666667pt;}
.y15_c00100{bottom:281.127733pt;}
.y14_c00100{bottom:307.799733pt;}
.y13_c00100{bottom:334.471733pt;}
.y12_c00100{bottom:361.143733pt;}
.y11_c00100{bottom:387.815733pt;}
.y10_c00100{bottom:414.487733pt;}
.yf_c00100{bottom:441.159733pt;}
.ye_c00100{bottom:467.831733pt;}
.yd_c00100{bottom:494.503733pt;}
.yc_c00100{bottom:521.175733pt;}
.yb_c00100{bottom:547.847733pt;}
.ya_c00100{bottom:574.519733pt;}
.y9_c00100{bottom:627.853067pt;}
.y8_c00100{bottom:707.826400pt;}
.y7_c00100{bottom:734.498400pt;}
.y6_c00100{bottom:761.170400pt;}
.y5_c00100{bottom:787.842400pt;}
.y4_c00100{bottom:814.514400pt;}
.y3_c00100{bottom:841.186400pt;}
.y2_c00100{bottom:894.519733pt;}
.h2_c00100{height:48.000000pt;}
.h4_c00100{height:57.600000pt;}
.h3_c00100{height:69.813333pt;}
.h0_c00100{height:1122.520000pt;}
.h1_c00100{height:1122.666667pt;}
.w0_c00100{width:793.701333pt;}
.w1_c00100{width:794.000000pt;}
.x0_c00100{left:0.000000pt;}
.x2_c00100{left:80.000000pt;}
.x3_c00100{left:94.666667pt;}
.x1_c00100{left:703.914667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.160000;font-style:normal;font-weight:normal;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_9d51748d99916ba36a084ebd.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00101;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls3_c00101{letter-spacing:-0.360000px;}
.ls2_c00101{letter-spacing:0.000000px;}
.ls0_c00101{letter-spacing:0.864000px;}
.ls1_c00101{letter-spacing:1.200000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00101{word-spacing:-23.640000px;}
.ws1_c00101{word-spacing:-13.104000px;}
.ws0_c00101{word-spacing:-10.200000px;}
.ws6_c00101{word-spacing:-5.880000px;}
.ws5_c00101{word-spacing:-3.816000px;}
.ws4_c00101{word-spacing:-2.952000px;}
.ws3_c00101{word-spacing:0.000000px;}
._0_c00101{margin-left:-480.337200px;}
._4_c00101{margin-left:-6.480000px;}
._7_c00101{margin-left:-5.328000px;}
._1_c00101{margin-left:-4.200000px;}
._5_c00101{margin-left:-2.592000px;}
._3_c00101{margin-left:-1.440000px;}
._2_c00101{width:2.952000px;}
._6_c00101{width:4.104000px;}
._8_c00101{width:6.480000px;}
.fc3_c00101{color:rgb(255,255,255);}
.fc2_c00101{color:rgb(233,83,14);}
.fc1_c00101{color:rgb(232,86,17);}
.fc0_c00101{color:rgb(60,60,59);}
.fs1_c00101{font-size:42.000000px;}
.fs0_c00101{font-size:60.000000px;}
.fs3_c00101{font-size:72.000000px;}
.fs4_c00101{font-size:120.000000px;}
.fs2_c00101{font-size:360.000000px;}
.y0_c00101{bottom:0.000000px;}
.y1_c00101{bottom:41.250000px;}
.y9_c00101{bottom:574.328700px;}
.y8_c00101{bottom:595.334700px;}
.y7_c00101{bottom:616.340700px;}
.y6_c00101{bottom:663.734700px;}
.y5_c00101{bottom:685.334700px;}
.y4_c00101{bottom:706.340700px;}
.y3_c00101{bottom:752.834700px;}
.yc_c00101{bottom:946.334700px;}
.yb_c00101{bottom:976.334700px;}
.ya_c00101{bottom:1006.334700px;}
.y2_c00101{bottom:1093.526700px;}
.h2_c00101{height:54.000000px;}
.h5_c00101{height:64.800000px;}
.h4_c00101{height:66.456000px;}
.h6_c00101{height:112.200000px;}
.h3_c00101{height:324.000000px;}
.h0_c00101{height:1262.835000px;}
.h1_c00101{height:1263.000000px;}
.w0_c00101{width:892.914000px;}
.w1_c00101{width:893.250000px;}
.x0_c00101{left:0.000000px;}
.x2_c00101{left:81.290250px;}
.x3_c00101{left:82.393650px;}
.x5_c00101{left:112.287450px;}
.x4_c00101{left:127.393650px;}
.x1_c00101{left:789.428850px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls3_c00101{letter-spacing:-0.320000pt;}
.ls2_c00101{letter-spacing:0.000000pt;}
.ls0_c00101{letter-spacing:0.768000pt;}
.ls1_c00101{letter-spacing:1.066667pt;}
.ws2_c00101{word-spacing:-21.013333pt;}
.ws1_c00101{word-spacing:-11.648000pt;}
.ws0_c00101{word-spacing:-9.066667pt;}
.ws6_c00101{word-spacing:-5.226667pt;}
.ws5_c00101{word-spacing:-3.392000pt;}
.ws4_c00101{word-spacing:-2.624000pt;}
.ws3_c00101{word-spacing:0.000000pt;}
._0_c00101{margin-left:-426.966400pt;}
._4_c00101{margin-left:-5.760000pt;}
._7_c00101{margin-left:-4.736000pt;}
._1_c00101{margin-left:-3.733333pt;}
._5_c00101{margin-left:-2.304000pt;}
._3_c00101{margin-left:-1.280000pt;}
._2_c00101{width:2.624000pt;}
._6_c00101{width:3.648000pt;}
._8_c00101{width:5.760000pt;}
.fs1_c00101{font-size:37.333333pt;}
.fs0_c00101{font-size:53.333333pt;}
.fs3_c00101{font-size:64.000000pt;}
.fs4_c00101{font-size:106.666667pt;}
.fs2_c00101{font-size:320.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y1_c00101{bottom:36.666667pt;}
.y9_c00101{bottom:510.514400pt;}
.y8_c00101{bottom:529.186400pt;}
.y7_c00101{bottom:547.858400pt;}
.y6_c00101{bottom:589.986400pt;}
.y5_c00101{bottom:609.186400pt;}
.y4_c00101{bottom:627.858400pt;}
.y3_c00101{bottom:669.186400pt;}
.yc_c00101{bottom:841.186400pt;}
.yb_c00101{bottom:867.853067pt;}
.ya_c00101{bottom:894.519733pt;}
.y2_c00101{bottom:972.023733pt;}
.h2_c00101{height:48.000000pt;}
.h5_c00101{height:57.600000pt;}
.h4_c00101{height:59.072000pt;}
.h6_c00101{height:99.733333pt;}
.h3_c00101{height:288.000000pt;}
.h0_c00101{height:1122.520000pt;}
.h1_c00101{height:1122.666667pt;}
.w0_c00101{width:793.701333pt;}
.w1_c00101{width:794.000000pt;}
.x0_c00101{left:0.000000pt;}
.x2_c00101{left:72.258000pt;}
.x3_c00101{left:73.238800pt;}
.x5_c00101{left:99.811067pt;}
.x4_c00101{left:113.238800pt;}
.x1_c00101{left:701.714533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00102;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00102;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls5_c00102{letter-spacing:-0.540000px;}
.ls4_c00102{letter-spacing:0.000000px;}
.ls0_c00102{letter-spacing:0.720000px;}
.ls1_c00102{letter-spacing:0.840000px;}
.ls3_c00102{letter-spacing:1.500000px;}
.ls2_c00102{letter-spacing:1.650000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00102{word-spacing:-21.060000px;}
.ws2_c00102{word-spacing:-17.640000px;}
.ws0_c00102{word-spacing:-10.200000px;}
.ws8_c00102{word-spacing:-1.656000px;}
.ws15_c00102{word-spacing:-1.500000px;}
.ws14_c00102{word-spacing:-1.080000px;}
.ws4_c00102{word-spacing:-0.840000px;}
.wsd_c00102{word-spacing:-0.720000px;}
.ws3_c00102{word-spacing:0.000000px;}
.ws9_c00102{word-spacing:2.880000px;}
.wsc_c00102{word-spacing:4.752000px;}
.wsb_c00102{word-spacing:7.272000px;}
.ws6_c00102{word-spacing:8.136000px;}
.wse_c00102{word-spacing:8.640000px;}
.ws7_c00102{word-spacing:8.856000px;}
.wsa_c00102{word-spacing:9.000000px;}
.ws5_c00102{word-spacing:9.504000px;}
.wsf_c00102{word-spacing:11.880000px;}
.ws11_c00102{word-spacing:14.832000px;}
.ws12_c00102{word-spacing:15.408000px;}
.ws13_c00102{word-spacing:19.008000px;}
.ws10_c00102{word-spacing:23.040000px;}
._0_c00102{margin-left:-480.337800px;}
._5_c00102{margin-left:-6.552000px;}
._1_c00102{margin-left:-4.200000px;}
._4_c00102{margin-left:-2.952000px;}
._3_c00102{margin-left:-1.440000px;}
._2_c00102{width:1.562400px;}
.fc3_c00102{color:rgb(32,32,32);}
.fc2_c00102{color:rgb(233,83,14);}
.fc1_c00102{color:rgb(232,86,17);}
.fc4_c00102{color:rgb(157,157,156);}
.fc0_c00102{color:rgb(60,60,59);}
.fs1_c00102{font-size:42.000000px;}
.fs0_c00102{font-size:60.000000px;}
.fs5_c00102{font-size:66.000000px;}
.fs4_c00102{font-size:72.000000px;}
.fs3_c00102{font-size:84.000000px;}
.fs2_c00102{font-size:108.000000px;}
.y0_c00102{bottom:0.000000px;}
.y1_c00102{bottom:41.250000px;}
.y18_c00102{bottom:76.304700px;}
.y17_c00102{bottom:106.310700px;}
.y16_c00102{bottom:136.316700px;}
.y15_c00102{bottom:166.322700px;}
.y14_c00102{bottom:196.328700px;}
.y13_c00102{bottom:226.334700px;}
.y12_c00102{bottom:286.334700px;}
.y11_c00102{bottom:376.322700px;}
.y10_c00102{bottom:406.328700px;}
.yf_c00102{bottom:436.334700px;}
.ye_c00102{bottom:496.334700px;}
.yd_c00102{bottom:586.280700px;}
.yc_c00102{bottom:616.286700px;}
.yb_c00102{bottom:646.292700px;}
.ya_c00102{bottom:676.298700px;}
.y9_c00102{bottom:706.304700px;}
.y8_c00102{bottom:736.310700px;}
.y1d_c00102{bottom:736.334700px;}
.y7_c00102{bottom:766.316700px;}
.y1c_c00102{bottom:766.334700px;}
.y6_c00102{bottom:796.322700px;}
.y1b_c00102{bottom:796.334700px;}
.y5_c00102{bottom:826.328700px;}
.y1a_c00102{bottom:826.334700px;}
.y4_c00102{bottom:856.334700px;}
.y19_c00102{bottom:857.517300px;}
.y3_c00102{bottom:916.334700px;}
.y2_c00102{bottom:1006.334700px;}
.h6_c00102{height:50.292000px;}
.h2_c00102{height:54.000000px;}
.h5_c00102{height:64.800000px;}
.h4_c00102{height:78.540000px;}
.h3_c00102{height:100.980000px;}
.h0_c00102{height:1262.835000px;}
.h1_c00102{height:1263.000000px;}
.w0_c00102{width:892.914000px;}
.w1_c00102{width:893.250000px;}
.x0_c00102{left:0.000000px;}
.x2_c00102{left:82.500000px;}
.x3_c00102{left:90.000000px;}
.x4_c00102{left:106.500000px;}
.x5_c00102{left:675.611100px;}
.x1_c00102{left:789.279000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls5_c00102{letter-spacing:-0.480000pt;}
.ls4_c00102{letter-spacing:0.000000pt;}
.ls0_c00102{letter-spacing:0.640000pt;}
.ls1_c00102{letter-spacing:0.746667pt;}
.ls3_c00102{letter-spacing:1.333333pt;}
.ls2_c00102{letter-spacing:1.466667pt;}
.ws1_c00102{word-spacing:-18.720000pt;}
.ws2_c00102{word-spacing:-15.680000pt;}
.ws0_c00102{word-spacing:-9.066667pt;}
.ws8_c00102{word-spacing:-1.472000pt;}
.ws15_c00102{word-spacing:-1.333333pt;}
.ws14_c00102{word-spacing:-0.960000pt;}
.ws4_c00102{word-spacing:-0.746667pt;}
.wsd_c00102{word-spacing:-0.640000pt;}
.ws3_c00102{word-spacing:0.000000pt;}
.ws9_c00102{word-spacing:2.560000pt;}
.wsc_c00102{word-spacing:4.224000pt;}
.wsb_c00102{word-spacing:6.464000pt;}
.ws6_c00102{word-spacing:7.232000pt;}
.wse_c00102{word-spacing:7.680000pt;}
.ws7_c00102{word-spacing:7.872000pt;}
.wsa_c00102{word-spacing:8.000000pt;}
.ws5_c00102{word-spacing:8.448000pt;}
.wsf_c00102{word-spacing:10.560000pt;}
.ws11_c00102{word-spacing:13.184000pt;}
.ws12_c00102{word-spacing:13.696000pt;}
.ws13_c00102{word-spacing:16.896000pt;}
.ws10_c00102{word-spacing:20.480000pt;}
._0_c00102{margin-left:-426.966933pt;}
._5_c00102{margin-left:-5.824000pt;}
._1_c00102{margin-left:-3.733333pt;}
._4_c00102{margin-left:-2.624000pt;}
._3_c00102{margin-left:-1.280000pt;}
._2_c00102{width:1.388800pt;}
.fs1_c00102{font-size:37.333333pt;}
.fs0_c00102{font-size:53.333333pt;}
.fs5_c00102{font-size:58.666667pt;}
.fs4_c00102{font-size:64.000000pt;}
.fs3_c00102{font-size:74.666667pt;}
.fs2_c00102{font-size:96.000000pt;}
.y0_c00102{bottom:0.000000pt;}
.y1_c00102{bottom:36.666667pt;}
.y18_c00102{bottom:67.826400pt;}
.y17_c00102{bottom:94.498400pt;}
.y16_c00102{bottom:121.170400pt;}
.y15_c00102{bottom:147.842400pt;}
.y14_c00102{bottom:174.514400pt;}
.y13_c00102{bottom:201.186400pt;}
.y12_c00102{bottom:254.519733pt;}
.y11_c00102{bottom:334.509067pt;}
.y10_c00102{bottom:361.181067pt;}
.yf_c00102{bottom:387.853067pt;}
.ye_c00102{bottom:441.186400pt;}
.yd_c00102{bottom:521.138400pt;}
.yc_c00102{bottom:547.810400pt;}
.yb_c00102{bottom:574.482400pt;}
.ya_c00102{bottom:601.154400pt;}
.y9_c00102{bottom:627.826400pt;}
.y8_c00102{bottom:654.498400pt;}
.y1d_c00102{bottom:654.519733pt;}
.y7_c00102{bottom:681.170400pt;}
.y1c_c00102{bottom:681.186400pt;}
.y6_c00102{bottom:707.842400pt;}
.y1b_c00102{bottom:707.853067pt;}
.y5_c00102{bottom:734.514400pt;}
.y1a_c00102{bottom:734.519733pt;}
.y4_c00102{bottom:761.186400pt;}
.y19_c00102{bottom:762.237600pt;}
.y3_c00102{bottom:814.519733pt;}
.y2_c00102{bottom:894.519733pt;}
.h6_c00102{height:44.704000pt;}
.h2_c00102{height:48.000000pt;}
.h5_c00102{height:57.600000pt;}
.h4_c00102{height:69.813333pt;}
.h3_c00102{height:89.760000pt;}
.h0_c00102{height:1122.520000pt;}
.h1_c00102{height:1122.666667pt;}
.w0_c00102{width:793.701333pt;}
.w1_c00102{width:794.000000pt;}
.x0_c00102{left:0.000000pt;}
.x2_c00102{left:73.333333pt;}
.x3_c00102{left:80.000000pt;}
.x4_c00102{left:94.666667pt;}
.x5_c00102{left:600.543200pt;}
.x1_c00102{left:701.581333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00103;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.199000;font-style: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);}
.m1_c00103{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls1_c00103{letter-spacing:0.000000px;}
.ls0_c00103{letter-spacing:0.720000px;}
.ls2_c00103{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws4_c00103{word-spacing:-3.384000px;}
.ws2_c00103{word-spacing:-0.840000px;}
.ws9_c00103{word-spacing:-0.720000px;}
.ws1_c00103{word-spacing:0.000000px;}
.ws5_c00103{word-spacing:2.160000px;}
.ws3_c00103{word-spacing:2.376000px;}
.ws7_c00103{word-spacing:4.032000px;}
.wsa_c00103{word-spacing:4.176000px;}
.ws11_c00103{word-spacing:4.320000px;}
.ws8_c00103{word-spacing:6.984000px;}
.wsd_c00103{word-spacing:7.416000px;}
.wsf_c00103{word-spacing:8.064000px;}
.ws12_c00103{word-spacing:9.288000px;}
.ws6_c00103{word-spacing:9.432000px;}
.ws13_c00103{word-spacing:10.080000px;}
.ws10_c00103{word-spacing:10.584000px;}
.wsb_c00103{word-spacing:12.816000px;}
.wsc_c00103{word-spacing:13.392000px;}
.wse_c00103{word-spacing:13.896000px;}
._0_c00103{margin-left:-480.337200px;}
._6_c00103{margin-left:-6.530400px;}
._1_c00103{margin-left:-4.200000px;}
._2_c00103{margin-left:-2.160000px;}
._3_c00103{margin-left:-1.008000px;}
._5_c00103{width:4.132800px;}
._4_c00103{width:5.673600px;}
.fc2_c00103{color:rgb(32,32,32);}
.fc1_c00103{color:rgb(232,86,17);}
.fc0_c00103{color:rgb(60,60,59);}
.fs1_c00103{font-size:42.000000px;}
.fs0_c00103{font-size:60.000000px;}
.fs3_c00103{font-size:72.000000px;}
.fs2_c00103{font-size:84.000000px;}
.y0_c00103{bottom:0.000000px;}
.y1_c00103{bottom:41.250000px;}
.y15_c00103{bottom:316.274700px;}
.y14_c00103{bottom:346.280700px;}
.y13_c00103{bottom:376.286700px;}
.y12_c00103{bottom:406.292700px;}
.y11_c00103{bottom:436.298700px;}
.y10_c00103{bottom:466.304700px;}
.yf_c00103{bottom:496.310700px;}
.ye_c00103{bottom:526.316700px;}
.yd_c00103{bottom:556.322700px;}
.yc_c00103{bottom:586.328700px;}
.yb_c00103{bottom:616.334700px;}
.ya_c00103{bottom:676.334700px;}
.y9_c00103{bottom:766.298700px;}
.y8_c00103{bottom:796.304700px;}
.y7_c00103{bottom:826.310700px;}
.y6_c00103{bottom:856.316700px;}
.y5_c00103{bottom:886.322700px;}
.y4_c00103{bottom:916.328700px;}
.y3_c00103{bottom:946.334700px;}
.y2_c00103{bottom:1006.334700px;}
.h2_c00103{height:54.000000px;}
.h4_c00103{height:64.800000px;}
.h3_c00103{height:78.540000px;}
.h0_c00103{height:1262.835000px;}
.h1_c00103{height:1263.000000px;}
.w0_c00103{width:892.914000px;}
.w1_c00103{width:893.250000px;}
.x0_c00103{left:0.000000px;}
.x2_c00103{left:90.000000px;}
.x3_c00103{left:106.500000px;}
.x1_c00103{left:788.303850px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls1_c00103{letter-spacing:0.000000pt;}
.ls0_c00103{letter-spacing:0.640000pt;}
.ls2_c00103{letter-spacing:0.746667pt;}
.ws0_c00103{word-spacing:-9.066667pt;}
.ws4_c00103{word-spacing:-3.008000pt;}
.ws2_c00103{word-spacing:-0.746667pt;}
.ws9_c00103{word-spacing:-0.640000pt;}
.ws1_c00103{word-spacing:0.000000pt;}
.ws5_c00103{word-spacing:1.920000pt;}
.ws3_c00103{word-spacing:2.112000pt;}
.ws7_c00103{word-spacing:3.584000pt;}
.wsa_c00103{word-spacing:3.712000pt;}
.ws11_c00103{word-spacing:3.840000pt;}
.ws8_c00103{word-spacing:6.208000pt;}
.wsd_c00103{word-spacing:6.592000pt;}
.wsf_c00103{word-spacing:7.168000pt;}
.ws12_c00103{word-spacing:8.256000pt;}
.ws6_c00103{word-spacing:8.384000pt;}
.ws13_c00103{word-spacing:8.960000pt;}
.ws10_c00103{word-spacing:9.408000pt;}
.wsb_c00103{word-spacing:11.392000pt;}
.wsc_c00103{word-spacing:11.904000pt;}
.wse_c00103{word-spacing:12.352000pt;}
._0_c00103{margin-left:-426.966400pt;}
._6_c00103{margin-left:-5.804800pt;}
._1_c00103{margin-left:-3.733333pt;}
._2_c00103{margin-left:-1.920000pt;}
._3_c00103{margin-left:-0.896000pt;}
._5_c00103{width:3.673600pt;}
._4_c00103{width:5.043200pt;}
.fs1_c00103{font-size:37.333333pt;}
.fs0_c00103{font-size:53.333333pt;}
.fs3_c00103{font-size:64.000000pt;}
.fs2_c00103{font-size:74.666667pt;}
.y0_c00103{bottom:0.000000pt;}
.y1_c00103{bottom:36.666667pt;}
.y15_c00103{bottom:281.133067pt;}
.y14_c00103{bottom:307.805067pt;}
.y13_c00103{bottom:334.477067pt;}
.y12_c00103{bottom:361.149067pt;}
.y11_c00103{bottom:387.821067pt;}
.y10_c00103{bottom:414.493067pt;}
.yf_c00103{bottom:441.165067pt;}
.ye_c00103{bottom:467.837067pt;}
.yd_c00103{bottom:494.509067pt;}
.yc_c00103{bottom:521.181067pt;}
.yb_c00103{bottom:547.853067pt;}
.ya_c00103{bottom:601.186400pt;}
.y9_c00103{bottom:681.154400pt;}
.y8_c00103{bottom:707.826400pt;}
.y7_c00103{bottom:734.498400pt;}
.y6_c00103{bottom:761.170400pt;}
.y5_c00103{bottom:787.842400pt;}
.y4_c00103{bottom:814.514400pt;}
.y3_c00103{bottom:841.186400pt;}
.y2_c00103{bottom:894.519733pt;}
.h2_c00103{height:48.000000pt;}
.h4_c00103{height:57.600000pt;}
.h3_c00103{height:69.813333pt;}
.h0_c00103{height:1122.520000pt;}
.h1_c00103{height:1122.666667pt;}
.w0_c00103{width:793.701333pt;}
.w1_c00103{width:794.000000pt;}
.x0_c00103{left:0.000000pt;}
.x2_c00103{left:80.000000pt;}
.x3_c00103{left:94.666667pt;}
.x1_c00103{left:700.714533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73c7dea85163a337c1490c92.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00104;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00104;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls5_c00104{letter-spacing:-0.324000px;}
.ls4_c00104{letter-spacing:0.000000px;}
.ls0_c00104{letter-spacing:0.720000px;}
.ls1_c00104{letter-spacing:0.840000px;}
.ls3_c00104{letter-spacing:1.500000px;}
.ls2_c00104{letter-spacing:1.650000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00104{word-spacing:-21.276000px;}
.ws3_c00104{word-spacing:-14.850000px;}
.ws2_c00104{word-spacing:-12.960000px;}
.ws4_c00104{word-spacing:-11.700000px;}
.ws0_c00104{word-spacing:-10.200000px;}
.wsf_c00104{word-spacing:-1.656000px;}
.ws15_c00104{word-spacing:-1.500000px;}
.wsa_c00104{word-spacing:-1.080000px;}
.ws6_c00104{word-spacing:-0.840000px;}
.ws5_c00104{word-spacing:0.000000px;}
.ws9_c00104{word-spacing:0.936000px;}
.wse_c00104{word-spacing:2.664000px;}
.ws13_c00104{word-spacing:3.456000px;}
.ws7_c00104{word-spacing:3.600000px;}
.ws12_c00104{word-spacing:3.888000px;}
.wsd_c00104{word-spacing:5.472000px;}
.ws8_c00104{word-spacing:6.336000px;}
.wsc_c00104{word-spacing:6.552000px;}
.wsb_c00104{word-spacing:9.000000px;}
.ws10_c00104{word-spacing:9.792000px;}
.ws11_c00104{word-spacing:15.984000px;}
.ws14_c00104{word-spacing:18.576000px;}
._0_c00104{margin-left:-480.336600px;}
._1_c00104{margin-left:-4.200000px;}
._3_c00104{margin-left:-2.224800px;}
._2_c00104{margin-left:-1.134000px;}
.fc3_c00104{color:rgb(32,32,32);}
.fc2_c00104{color:rgb(233,83,14);}
.fc1_c00104{color:rgb(232,86,17);}
.fc4_c00104{color:rgb(157,157,156);}
.fc0_c00104{color:rgb(60,60,59);}
.fs1_c00104{font-size:42.000000px;}
.fs0_c00104{font-size:60.000000px;}
.fs5_c00104{font-size:66.000000px;}
.fs4_c00104{font-size:72.000000px;}
.fs3_c00104{font-size:84.000000px;}
.fs2_c00104{font-size:108.000000px;}
.y0_c00104{bottom:0.000000px;}
.y1_c00104{bottom:41.250000px;}
.y16_c00104{bottom:136.310700px;}
.y15_c00104{bottom:166.316700px;}
.y14_c00104{bottom:196.322700px;}
.y13_c00104{bottom:226.328700px;}
.y12_c00104{bottom:256.334700px;}
.y11_c00104{bottom:316.334700px;}
.y10_c00104{bottom:406.322700px;}
.yf_c00104{bottom:436.328700px;}
.ye_c00104{bottom:466.334700px;}
.yd_c00104{bottom:526.334700px;}
.yc_c00104{bottom:616.286700px;}
.yb_c00104{bottom:646.292700px;}
.ya_c00104{bottom:676.298700px;}
.y9_c00104{bottom:706.304700px;}
.y8_c00104{bottom:736.310700px;}
.y1b_c00104{bottom:736.334700px;}
.y7_c00104{bottom:766.316700px;}
.y1a_c00104{bottom:766.334700px;}
.y6_c00104{bottom:796.322700px;}
.y19_c00104{bottom:796.334700px;}
.y5_c00104{bottom:826.328700px;}
.y18_c00104{bottom:826.334700px;}
.y4_c00104{bottom:856.334700px;}
.y17_c00104{bottom:857.517300px;}
.y3_c00104{bottom:916.334700px;}
.y2_c00104{bottom:1006.334700px;}
.h6_c00104{height:50.292000px;}
.h2_c00104{height:54.000000px;}
.h5_c00104{height:64.800000px;}
.h4_c00104{height:78.540000px;}
.h3_c00104{height:100.980000px;}
.h0_c00104{height:1262.835000px;}
.h1_c00104{height:1263.000000px;}
.w0_c00104{width:892.914000px;}
.w1_c00104{width:893.250000px;}
.x0_c00104{left:0.000000px;}
.x2_c00104{left:82.500000px;}
.x3_c00104{left:90.000000px;}
.x4_c00104{left:106.500000px;}
.x5_c00104{left:675.611100px;}
.x1_c00104{left:789.353700px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls5_c00104{letter-spacing:-0.288000pt;}
.ls4_c00104{letter-spacing:0.000000pt;}
.ls0_c00104{letter-spacing:0.640000pt;}
.ls1_c00104{letter-spacing:0.746667pt;}
.ls3_c00104{letter-spacing:1.333333pt;}
.ls2_c00104{letter-spacing:1.466667pt;}
.ws1_c00104{word-spacing:-18.912000pt;}
.ws3_c00104{word-spacing:-13.200000pt;}
.ws2_c00104{word-spacing:-11.520000pt;}
.ws4_c00104{word-spacing:-10.400000pt;}
.ws0_c00104{word-spacing:-9.066667pt;}
.wsf_c00104{word-spacing:-1.472000pt;}
.ws15_c00104{word-spacing:-1.333333pt;}
.wsa_c00104{word-spacing:-0.960000pt;}
.ws6_c00104{word-spacing:-0.746667pt;}
.ws5_c00104{word-spacing:0.000000pt;}
.ws9_c00104{word-spacing:0.832000pt;}
.wse_c00104{word-spacing:2.368000pt;}
.ws13_c00104{word-spacing:3.072000pt;}
.ws7_c00104{word-spacing:3.200000pt;}
.ws12_c00104{word-spacing:3.456000pt;}
.wsd_c00104{word-spacing:4.864000pt;}
.ws8_c00104{word-spacing:5.632000pt;}
.wsc_c00104{word-spacing:5.824000pt;}
.wsb_c00104{word-spacing:8.000000pt;}
.ws10_c00104{word-spacing:8.704000pt;}
.ws11_c00104{word-spacing:14.208000pt;}
.ws14_c00104{word-spacing:16.512000pt;}
._0_c00104{margin-left:-426.965867pt;}
._1_c00104{margin-left:-3.733333pt;}
._3_c00104{margin-left:-1.977600pt;}
._2_c00104{margin-left:-1.008000pt;}
.fs1_c00104{font-size:37.333333pt;}
.fs0_c00104{font-size:53.333333pt;}
.fs5_c00104{font-size:58.666667pt;}
.fs4_c00104{font-size:64.000000pt;}
.fs3_c00104{font-size:74.666667pt;}
.fs2_c00104{font-size:96.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y1_c00104{bottom:36.666667pt;}
.y16_c00104{bottom:121.165067pt;}
.y15_c00104{bottom:147.837067pt;}
.y14_c00104{bottom:174.509067pt;}
.y13_c00104{bottom:201.181067pt;}
.y12_c00104{bottom:227.853067pt;}
.y11_c00104{bottom:281.186400pt;}
.y10_c00104{bottom:361.175733pt;}
.yf_c00104{bottom:387.847733pt;}
.ye_c00104{bottom:414.519733pt;}
.yd_c00104{bottom:467.853067pt;}
.yc_c00104{bottom:547.810400pt;}
.yb_c00104{bottom:574.482400pt;}
.ya_c00104{bottom:601.154400pt;}
.y9_c00104{bottom:627.826400pt;}
.y8_c00104{bottom:654.498400pt;}
.y1b_c00104{bottom:654.519733pt;}
.y7_c00104{bottom:681.170400pt;}
.y1a_c00104{bottom:681.186400pt;}
.y6_c00104{bottom:707.842400pt;}
.y19_c00104{bottom:707.853067pt;}
.y5_c00104{bottom:734.514400pt;}
.y18_c00104{bottom:734.519733pt;}
.y4_c00104{bottom:761.186400pt;}
.y17_c00104{bottom:762.237600pt;}
.y3_c00104{bottom:814.519733pt;}
.y2_c00104{bottom:894.519733pt;}
.h6_c00104{height:44.704000pt;}
.h2_c00104{height:48.000000pt;}
.h5_c00104{height:57.600000pt;}
.h4_c00104{height:69.813333pt;}
.h3_c00104{height:89.760000pt;}
.h0_c00104{height:1122.520000pt;}
.h1_c00104{height:1122.666667pt;}
.w0_c00104{width:793.701333pt;}
.w1_c00104{width:794.000000pt;}
.x0_c00104{left:0.000000pt;}
.x2_c00104{left:73.333333pt;}
.x3_c00104{left:80.000000pt;}
.x4_c00104{left:94.666667pt;}
.x5_c00104{left:600.543200pt;}
.x1_c00104{left:701.647733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00105{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls3_c00105{letter-spacing:-0.720000px;}
.ls1_c00105{letter-spacing:0.000000px;}
.ls0_c00105{letter-spacing:0.720000px;}
.ls2_c00105{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws5_c00105{word-spacing:-1.872000px;}
.ws2_c00105{word-spacing:-0.840000px;}
.ws8_c00105{word-spacing:-0.144000px;}
.ws1_c00105{word-spacing:0.000000px;}
.ws7_c00105{word-spacing:0.504000px;}
.wsc_c00105{word-spacing:0.792000px;}
.ws3_c00105{word-spacing:0.864000px;}
.ws6_c00105{word-spacing:1.368000px;}
.ws4_c00105{word-spacing:2.160000px;}
.wsd_c00105{word-spacing:3.456000px;}
.wsb_c00105{word-spacing:4.248000px;}
.wsa_c00105{word-spacing:5.544000px;}
.ws9_c00105{word-spacing:6.624000px;}
.wse_c00105{word-spacing:8.784000px;}
._0_c00105{margin-left:-480.337200px;}
._1_c00105{margin-left:-4.200000px;}
._3_c00105{margin-left:-2.556000px;}
._2_c00105{margin-left:-1.440000px;}
._4_c00105{width:3.297600px;}
.fc2_c00105{color:rgb(32,32,32);}
.fc1_c00105{color:rgb(232,86,17);}
.fc0_c00105{color:rgb(60,60,59);}
.fs1_c00105{font-size:42.000000px;}
.fs0_c00105{font-size:60.000000px;}
.fs3_c00105{font-size:72.000000px;}
.fs2_c00105{font-size:84.000000px;}
.y0_c00105{bottom:0.000000px;}
.y1_c00105{bottom:41.250000px;}
.y12_c00105{bottom:406.286700px;}
.y11_c00105{bottom:436.292700px;}
.y10_c00105{bottom:466.298700px;}
.yf_c00105{bottom:496.304700px;}
.ye_c00105{bottom:526.310700px;}
.yd_c00105{bottom:556.316700px;}
.yc_c00105{bottom:586.322700px;}
.yb_c00105{bottom:616.328700px;}
.ya_c00105{bottom:646.334700px;}
.y9_c00105{bottom:706.334700px;}
.y8_c00105{bottom:796.304700px;}
.y7_c00105{bottom:826.310700px;}
.y6_c00105{bottom:856.316700px;}
.y5_c00105{bottom:886.322700px;}
.y4_c00105{bottom:916.328700px;}
.y3_c00105{bottom:946.334700px;}
.y2_c00105{bottom:1006.334700px;}
.h2_c00105{height:54.000000px;}
.h4_c00105{height:64.800000px;}
.h3_c00105{height:78.540000px;}
.h0_c00105{height:1262.835000px;}
.h1_c00105{height:1263.000000px;}
.w0_c00105{width:892.914000px;}
.w1_c00105{width:893.250000px;}
.x0_c00105{left:0.000000px;}
.x2_c00105{left:90.000000px;}
.x3_c00105{left:106.500000px;}
.x1_c00105{left:788.228850px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls3_c00105{letter-spacing:-0.640000pt;}
.ls1_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:0.640000pt;}
.ls2_c00105{letter-spacing:0.746667pt;}
.ws0_c00105{word-spacing:-9.066667pt;}
.ws5_c00105{word-spacing:-1.664000pt;}
.ws2_c00105{word-spacing:-0.746667pt;}
.ws8_c00105{word-spacing:-0.128000pt;}
.ws1_c00105{word-spacing:0.000000pt;}
.ws7_c00105{word-spacing:0.448000pt;}
.wsc_c00105{word-spacing:0.704000pt;}
.ws3_c00105{word-spacing:0.768000pt;}
.ws6_c00105{word-spacing:1.216000pt;}
.ws4_c00105{word-spacing:1.920000pt;}
.wsd_c00105{word-spacing:3.072000pt;}
.wsb_c00105{word-spacing:3.776000pt;}
.wsa_c00105{word-spacing:4.928000pt;}
.ws9_c00105{word-spacing:5.888000pt;}
.wse_c00105{word-spacing:7.808000pt;}
._0_c00105{margin-left:-426.966400pt;}
._1_c00105{margin-left:-3.733333pt;}
._3_c00105{margin-left:-2.272000pt;}
._2_c00105{margin-left:-1.280000pt;}
._4_c00105{width:2.931200pt;}
.fs1_c00105{font-size:37.333333pt;}
.fs0_c00105{font-size:53.333333pt;}
.fs3_c00105{font-size:64.000000pt;}
.fs2_c00105{font-size:74.666667pt;}
.y0_c00105{bottom:0.000000pt;}
.y1_c00105{bottom:36.666667pt;}
.y12_c00105{bottom:361.143733pt;}
.y11_c00105{bottom:387.815733pt;}
.y10_c00105{bottom:414.487733pt;}
.yf_c00105{bottom:441.159733pt;}
.ye_c00105{bottom:467.831733pt;}
.yd_c00105{bottom:494.503733pt;}
.yc_c00105{bottom:521.175733pt;}
.yb_c00105{bottom:547.847733pt;}
.ya_c00105{bottom:574.519733pt;}
.y9_c00105{bottom:627.853067pt;}
.y8_c00105{bottom:707.826400pt;}
.y7_c00105{bottom:734.498400pt;}
.y6_c00105{bottom:761.170400pt;}
.y5_c00105{bottom:787.842400pt;}
.y4_c00105{bottom:814.514400pt;}
.y3_c00105{bottom:841.186400pt;}
.y2_c00105{bottom:894.519733pt;}
.h2_c00105{height:48.000000pt;}
.h4_c00105{height:57.600000pt;}
.h3_c00105{height:69.813333pt;}
.h0_c00105{height:1122.520000pt;}
.h1_c00105{height:1122.666667pt;}
.w0_c00105{width:793.701333pt;}
.w1_c00105{width:794.000000pt;}
.x0_c00105{left:0.000000pt;}
.x2_c00105{left:80.000000pt;}
.x3_c00105{left:94.666667pt;}
.x1_c00105{left:700.647867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00106;src:url('chunks/assets/font_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00106;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00106;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls2_c00106{letter-spacing:0.000000px;}
.ls0_c00106{letter-spacing:0.864000px;}
.ls1_c00106{letter-spacing:1.200000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00106{word-spacing:-13.104000px;}
.ws4_c00106{word-spacing:-11.400000px;}
.ws0_c00106{word-spacing:-10.200000px;}
.ws5_c00106{word-spacing:-5.400000px;}
.ws3_c00106{word-spacing:-0.864000px;}
.ws2_c00106{word-spacing:0.000000px;}
._0_c00106{margin-left:-480.337200px;}
._3_c00106{margin-left:-10.087200px;}
._6_c00106{margin-left:-9.000000px;}
._1_c00106{margin-left:-4.200000px;}
._7_c00106{margin-left:-2.512800px;}
._2_c00106{margin-left:-1.440000px;}
._5_c00106{width:4.320000px;}
._4_c00106{width:10.440000px;}
.fc3_c00106{color:rgb(255,255,255);}
.fc2_c00106{color:rgb(233,83,14);}
.fc1_c00106{color:rgb(232,86,17);}
.fc0_c00106{color:rgb(60,60,59);}
.fs1_c00106{font-size:42.000000px;}
.fs0_c00106{font-size:60.000000px;}
.fs3_c00106{font-size:72.000000px;}
.fs4_c00106{font-size:120.000000px;}
.fs2_c00106{font-size:360.000000px;}
.y0_c00106{bottom:0.000000px;}
.y1_c00106{bottom:41.250000px;}
.y1b_c00106{bottom:151.220700px;}
.y1a_c00106{bottom:172.226700px;}
.y19_c00106{bottom:193.232700px;}
.y18_c00106{bottom:214.238700px;}
.y17_c00106{bottom:235.244700px;}
.y16_c00106{bottom:256.250700px;}
.y15_c00106{bottom:301.250700px;}
.y14_c00106{bottom:322.256700px;}
.y13_c00106{bottom:343.262700px;}
.y12_c00106{bottom:364.268700px;}
.y11_c00106{bottom:385.274700px;}
.y10_c00106{bottom:406.280700px;}
.yf_c00106{bottom:451.280700px;}
.ye_c00106{bottom:472.286700px;}
.yd_c00106{bottom:493.292700px;}
.yc_c00106{bottom:514.298700px;}
.yb_c00106{bottom:535.304700px;}
.ya_c00106{bottom:556.310700px;}
.y9_c00106{bottom:601.310700px;}
.y8_c00106{bottom:622.316700px;}
.y7_c00106{bottom:643.322700px;}
.y6_c00106{bottom:664.328700px;}
.y5_c00106{bottom:685.334700px;}
.y4_c00106{bottom:706.340700px;}
.y3_c00106{bottom:752.834700px;}
.y1f_c00106{bottom:916.334700px;}
.y1e_c00106{bottom:946.334700px;}
.y1d_c00106{bottom:976.334700px;}
.y1c_c00106{bottom:1006.334700px;}
.y2_c00106{bottom:1093.526700px;}
.h2_c00106{height:54.000000px;}
.h5_c00106{height:64.800000px;}
.h4_c00106{height:66.456000px;}
.h6_c00106{height:112.200000px;}
.h3_c00106{height:324.000000px;}
.h0_c00106{height:1262.835000px;}
.h1_c00106{height:1263.000000px;}
.w0_c00106{width:892.914000px;}
.w1_c00106{width:893.250000px;}
.x0_c00106{left:0.000000px;}
.x2_c00106{left:81.290250px;}
.x3_c00106{left:82.393650px;}
.x5_c00106{left:112.287450px;}
.x4_c00106{left:127.393650px;}
.x1_c00106{left:790.328850px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls2_c00106{letter-spacing:0.000000pt;}
.ls0_c00106{letter-spacing:0.768000pt;}
.ls1_c00106{letter-spacing:1.066667pt;}
.ws1_c00106{word-spacing:-11.648000pt;}
.ws4_c00106{word-spacing:-10.133333pt;}
.ws0_c00106{word-spacing:-9.066667pt;}
.ws5_c00106{word-spacing:-4.800000pt;}
.ws3_c00106{word-spacing:-0.768000pt;}
.ws2_c00106{word-spacing:0.000000pt;}
._0_c00106{margin-left:-426.966400pt;}
._3_c00106{margin-left:-8.966400pt;}
._6_c00106{margin-left:-8.000000pt;}
._1_c00106{margin-left:-3.733333pt;}
._7_c00106{margin-left:-2.233600pt;}
._2_c00106{margin-left:-1.280000pt;}
._5_c00106{width:3.840000pt;}
._4_c00106{width:9.280000pt;}
.fs1_c00106{font-size:37.333333pt;}
.fs0_c00106{font-size:53.333333pt;}
.fs3_c00106{font-size:64.000000pt;}
.fs4_c00106{font-size:106.666667pt;}
.fs2_c00106{font-size:320.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.y1_c00106{bottom:36.666667pt;}
.y1b_c00106{bottom:134.418400pt;}
.y1a_c00106{bottom:153.090400pt;}
.y19_c00106{bottom:171.762400pt;}
.y18_c00106{bottom:190.434400pt;}
.y17_c00106{bottom:209.106400pt;}
.y16_c00106{bottom:227.778400pt;}
.y15_c00106{bottom:267.778400pt;}
.y14_c00106{bottom:286.450400pt;}
.y13_c00106{bottom:305.122400pt;}
.y12_c00106{bottom:323.794400pt;}
.y11_c00106{bottom:342.466400pt;}
.y10_c00106{bottom:361.138400pt;}
.yf_c00106{bottom:401.138400pt;}
.ye_c00106{bottom:419.810400pt;}
.yd_c00106{bottom:438.482400pt;}
.yc_c00106{bottom:457.154400pt;}
.yb_c00106{bottom:475.826400pt;}
.ya_c00106{bottom:494.498400pt;}
.y9_c00106{bottom:534.498400pt;}
.y8_c00106{bottom:553.170400pt;}
.y7_c00106{bottom:571.842400pt;}
.y6_c00106{bottom:590.514400pt;}
.y5_c00106{bottom:609.186400pt;}
.y4_c00106{bottom:627.858400pt;}
.y3_c00106{bottom:669.186400pt;}
.y1f_c00106{bottom:814.519733pt;}
.y1e_c00106{bottom:841.186400pt;}
.y1d_c00106{bottom:867.853067pt;}
.y1c_c00106{bottom:894.519733pt;}
.y2_c00106{bottom:972.023733pt;}
.h2_c00106{height:48.000000pt;}
.h5_c00106{height:57.600000pt;}
.h4_c00106{height:59.072000pt;}
.h6_c00106{height:99.733333pt;}
.h3_c00106{height:288.000000pt;}
.h0_c00106{height:1122.520000pt;}
.h1_c00106{height:1122.666667pt;}
.w0_c00106{width:793.701333pt;}
.w1_c00106{width:794.000000pt;}
.x0_c00106{left:0.000000pt;}
.x2_c00106{left:72.258000pt;}
.x3_c00106{left:73.238800pt;}
.x5_c00106{left:99.811067pt;}
.x4_c00106{left:113.238800pt;}
.x1_c00106{left:702.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls5_c00107{letter-spacing:-0.540000px;}
.ls4_c00107{letter-spacing:0.000000px;}
.ls0_c00107{letter-spacing:0.720000px;}
.ls1_c00107{letter-spacing:0.840000px;}
.ls3_c00107{letter-spacing:1.500000px;}
.ls2_c00107{letter-spacing:1.650000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00107{word-spacing:-21.060000px;}
.ws2_c00107{word-spacing:-17.640000px;}
.ws0_c00107{word-spacing:-10.200000px;}
.wsf_c00107{word-spacing:-1.500000px;}
.wsb_c00107{word-spacing:-0.864000px;}
.ws4_c00107{word-spacing:-0.840000px;}
.ws3_c00107{word-spacing:0.000000px;}
.ws9_c00107{word-spacing:0.432000px;}
.wsa_c00107{word-spacing:0.936000px;}
.ws8_c00107{word-spacing:3.024000px;}
.wse_c00107{word-spacing:3.528000px;}
.ws6_c00107{word-spacing:7.992000px;}
.ws5_c00107{word-spacing:13.464000px;}
.ws7_c00107{word-spacing:14.904000px;}
.wsd_c00107{word-spacing:15.984000px;}
.wsc_c00107{word-spacing:27.936000px;}
._0_c00107{margin-left:-480.337200px;}
._1_c00107{margin-left:-4.200000px;}
._2_c00107{margin-left:-1.512000px;}
.fc3_c00107{color:rgb(32,32,32);}
.fc2_c00107{color:rgb(233,83,14);}
.fc1_c00107{color:rgb(232,86,17);}
.fc4_c00107{color:rgb(157,157,156);}
.fc0_c00107{color:rgb(60,60,59);}
.fs1_c00107{font-size:42.000000px;}
.fs0_c00107{font-size:60.000000px;}
.fs5_c00107{font-size:66.000000px;}
.fs4_c00107{font-size:72.000000px;}
.fs3_c00107{font-size:84.000000px;}
.fs2_c00107{font-size:108.000000px;}
.y0_c00107{bottom:0.000000px;}
.y1_c00107{bottom:41.250000px;}
.y12_c00107{bottom:256.310700px;}
.y11_c00107{bottom:286.316700px;}
.y10_c00107{bottom:316.322700px;}
.yf_c00107{bottom:346.328700px;}
.ye_c00107{bottom:376.334700px;}
.yd_c00107{bottom:436.334700px;}
.yc_c00107{bottom:526.322700px;}
.yb_c00107{bottom:556.328700px;}
.ya_c00107{bottom:586.334700px;}
.y9_c00107{bottom:646.334700px;}
.y8_c00107{bottom:736.310700px;}
.y7_c00107{bottom:766.316700px;}
.y16_c00107{bottom:766.334700px;}
.y6_c00107{bottom:796.322700px;}
.y15_c00107{bottom:796.334700px;}
.y5_c00107{bottom:826.328700px;}
.y14_c00107{bottom:826.334700px;}
.y4_c00107{bottom:856.334700px;}
.y13_c00107{bottom:857.517300px;}
.y3_c00107{bottom:916.334700px;}
.y2_c00107{bottom:1006.334700px;}
.h6_c00107{height:50.292000px;}
.h2_c00107{height:54.000000px;}
.h5_c00107{height:64.800000px;}
.h4_c00107{height:78.540000px;}
.h3_c00107{height:100.980000px;}
.h0_c00107{height:1262.835000px;}
.h1_c00107{height:1263.000000px;}
.w0_c00107{width:892.914000px;}
.w1_c00107{width:893.250000px;}
.x0_c00107{left:0.000000px;}
.x2_c00107{left:82.500000px;}
.x3_c00107{left:90.000000px;}
.x4_c00107{left:106.500000px;}
.x5_c00107{left:675.611100px;}
.x1_c00107{left:788.303850px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls5_c00107{letter-spacing:-0.480000pt;}
.ls4_c00107{letter-spacing:0.000000pt;}
.ls0_c00107{letter-spacing:0.640000pt;}
.ls1_c00107{letter-spacing:0.746667pt;}
.ls3_c00107{letter-spacing:1.333333pt;}
.ls2_c00107{letter-spacing:1.466667pt;}
.ws1_c00107{word-spacing:-18.720000pt;}
.ws2_c00107{word-spacing:-15.680000pt;}
.ws0_c00107{word-spacing:-9.066667pt;}
.wsf_c00107{word-spacing:-1.333333pt;}
.wsb_c00107{word-spacing:-0.768000pt;}
.ws4_c00107{word-spacing:-0.746667pt;}
.ws3_c00107{word-spacing:0.000000pt;}
.ws9_c00107{word-spacing:0.384000pt;}
.wsa_c00107{word-spacing:0.832000pt;}
.ws8_c00107{word-spacing:2.688000pt;}
.wse_c00107{word-spacing:3.136000pt;}
.ws6_c00107{word-spacing:7.104000pt;}
.ws5_c00107{word-spacing:11.968000pt;}
.ws7_c00107{word-spacing:13.248000pt;}
.wsd_c00107{word-spacing:14.208000pt;}
.wsc_c00107{word-spacing:24.832000pt;}
._0_c00107{margin-left:-426.966400pt;}
._1_c00107{margin-left:-3.733333pt;}
._2_c00107{margin-left:-1.344000pt;}
.fs1_c00107{font-size:37.333333pt;}
.fs0_c00107{font-size:53.333333pt;}
.fs5_c00107{font-size:58.666667pt;}
.fs4_c00107{font-size:64.000000pt;}
.fs3_c00107{font-size:74.666667pt;}
.fs2_c00107{font-size:96.000000pt;}
.y0_c00107{bottom:0.000000pt;}
.y1_c00107{bottom:36.666667pt;}
.y12_c00107{bottom:227.831733pt;}
.y11_c00107{bottom:254.503733pt;}
.y10_c00107{bottom:281.175733pt;}
.yf_c00107{bottom:307.847733pt;}
.ye_c00107{bottom:334.519733pt;}
.yd_c00107{bottom:387.853067pt;}
.yc_c00107{bottom:467.842400pt;}
.yb_c00107{bottom:494.514400pt;}
.ya_c00107{bottom:521.186400pt;}
.y9_c00107{bottom:574.519733pt;}
.y8_c00107{bottom:654.498400pt;}
.y7_c00107{bottom:681.170400pt;}
.y16_c00107{bottom:681.186400pt;}
.y6_c00107{bottom:707.842400pt;}
.y15_c00107{bottom:707.853067pt;}
.y5_c00107{bottom:734.514400pt;}
.y14_c00107{bottom:734.519733pt;}
.y4_c00107{bottom:761.186400pt;}
.y13_c00107{bottom:762.237600pt;}
.y3_c00107{bottom:814.519733pt;}
.y2_c00107{bottom:894.519733pt;}
.h6_c00107{height:44.704000pt;}
.h2_c00107{height:48.000000pt;}
.h5_c00107{height:57.600000pt;}
.h4_c00107{height:69.813333pt;}
.h3_c00107{height:89.760000pt;}
.h0_c00107{height:1122.520000pt;}
.h1_c00107{height:1122.666667pt;}
.w0_c00107{width:793.701333pt;}
.w1_c00107{width:794.000000pt;}
.x0_c00107{left:0.000000pt;}
.x2_c00107{left:73.333333pt;}
.x3_c00107{left:80.000000pt;}
.x4_c00107{left:94.666667pt;}
.x5_c00107{left:600.543200pt;}
.x1_c00107{left:700.714533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.199000;font-style: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);}
.m1_c00108{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls1_c00108{letter-spacing:0.000000px;}
.ls0_c00108{letter-spacing:0.720000px;}
.ls2_c00108{letter-spacing:0.840000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:-10.200000px;}
.ws4_c00108{word-spacing:-3.024000px;}
.ws5_c00108{word-spacing:-2.376000px;}
.ws10_c00108{word-spacing:-1.872000px;}
.ws9_c00108{word-spacing:-1.728000px;}
.ws6_c00108{word-spacing:-1.656000px;}
.ws2_c00108{word-spacing:-0.840000px;}
.ws1_c00108{word-spacing:0.000000px;}
.wsa_c00108{word-spacing:0.648000px;}
.wsd_c00108{word-spacing:1.512000px;}
.ws3_c00108{word-spacing:2.160000px;}
.ws8_c00108{word-spacing:2.232000px;}
.wsc_c00108{word-spacing:2.592000px;}
.ws7_c00108{word-spacing:2.880000px;}
.wsf_c00108{word-spacing:6.192000px;}
.wsb_c00108{word-spacing:6.912000px;}
.wse_c00108{word-spacing:8.280000px;}
._0_c00108{margin-left:-480.337200px;}
._1_c00108{margin-left:-4.200000px;}
._2_c00108{margin-left:-1.476000px;}
.fc2_c00108{color:rgb(32,32,32);}
.fc1_c00108{color:rgb(232,86,17);}
.fc0_c00108{color:rgb(60,60,59);}
.fs1_c00108{font-size:42.000000px;}
.fs0_c00108{font-size:60.000000px;}
.fs3_c00108{font-size:72.000000px;}
.fs2_c00108{font-size:84.000000px;}
.y0_c00108{bottom:0.000000px;}
.y1_c00108{bottom:41.250000px;}
.y15_c00108{bottom:316.316700px;}
.y14_c00108{bottom:346.322700px;}
.y13_c00108{bottom:376.328700px;}
.y12_c00108{bottom:406.334700px;}
.y11_c00108{bottom:466.334700px;}
.y10_c00108{bottom:556.256700px;}
.yf_c00108{bottom:586.262700px;}
.ye_c00108{bottom:616.268700px;}
.yd_c00108{bottom:646.274700px;}
.yc_c00108{bottom:676.280700px;}
.yb_c00108{bottom:706.286700px;}
.ya_c00108{bottom:736.292700px;}
.y9_c00108{bottom:766.298700px;}
.y8_c00108{bottom:796.304700px;}
.y7_c00108{bottom:826.310700px;}
.y6_c00108{bottom:856.316700px;}
.y5_c00108{bottom:886.322700px;}
.y4_c00108{bottom:916.328700px;}
.y3_c00108{bottom:946.334700px;}
.y2_c00108{bottom:1006.334700px;}
.h2_c00108{height:54.000000px;}
.h4_c00108{height:64.800000px;}
.h3_c00108{height:78.540000px;}
.h0_c00108{height:1262.835000px;}
.h1_c00108{height:1263.000000px;}
.w0_c00108{width:892.914000px;}
.w1_c00108{width:893.250000px;}
.x0_c00108{left:0.000000px;}
.x2_c00108{left:90.000000px;}
.x3_c00108{left:106.500000px;}
.x1_c00108{left:788.228850px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls1_c00108{letter-spacing:0.000000pt;}
.ls0_c00108{letter-spacing:0.640000pt;}
.ls2_c00108{letter-spacing:0.746667pt;}
.ws0_c00108{word-spacing:-9.066667pt;}
.ws4_c00108{word-spacing:-2.688000pt;}
.ws5_c00108{word-spacing:-2.112000pt;}
.ws10_c00108{word-spacing:-1.664000pt;}
.ws9_c00108{word-spacing:-1.536000pt;}
.ws6_c00108{word-spacing:-1.472000pt;}
.ws2_c00108{word-spacing:-0.746667pt;}
.ws1_c00108{word-spacing:0.000000pt;}
.wsa_c00108{word-spacing:0.576000pt;}
.wsd_c00108{word-spacing:1.344000pt;}
.ws3_c00108{word-spacing:1.920000pt;}
.ws8_c00108{word-spacing:1.984000pt;}
.wsc_c00108{word-spacing:2.304000pt;}
.ws7_c00108{word-spacing:2.560000pt;}
.wsf_c00108{word-spacing:5.504000pt;}
.wsb_c00108{word-spacing:6.144000pt;}
.wse_c00108{word-spacing:7.360000pt;}
._0_c00108{margin-left:-426.966400pt;}
._1_c00108{margin-left:-3.733333pt;}
._2_c00108{margin-left:-1.312000pt;}
.fs1_c00108{font-size:37.333333pt;}
.fs0_c00108{font-size:53.333333pt;}
.fs3_c00108{font-size:64.000000pt;}
.fs2_c00108{font-size:74.666667pt;}
.y0_c00108{bottom:0.000000pt;}
.y1_c00108{bottom:36.666667pt;}
.y15_c00108{bottom:281.170400pt;}
.y14_c00108{bottom:307.842400pt;}
.y13_c00108{bottom:334.514400pt;}
.y12_c00108{bottom:361.186400pt;}
.y11_c00108{bottom:414.519733pt;}
.y10_c00108{bottom:494.450400pt;}
.yf_c00108{bottom:521.122400pt;}
.ye_c00108{bottom:547.794400pt;}
.yd_c00108{bottom:574.466400pt;}
.yc_c00108{bottom:601.138400pt;}
.yb_c00108{bottom:627.810400pt;}
.ya_c00108{bottom:654.482400pt;}
.y9_c00108{bottom:681.154400pt;}
.y8_c00108{bottom:707.826400pt;}
.y7_c00108{bottom:734.498400pt;}
.y6_c00108{bottom:761.170400pt;}
.y5_c00108{bottom:787.842400pt;}
.y4_c00108{bottom:814.514400pt;}
.y3_c00108{bottom:841.186400pt;}
.y2_c00108{bottom:894.519733pt;}
.h2_c00108{height:48.000000pt;}
.h4_c00108{height:57.600000pt;}
.h3_c00108{height:69.813333pt;}
.h0_c00108{height:1122.520000pt;}
.h1_c00108{height:1122.666667pt;}
.w0_c00108{width:793.701333pt;}
.w1_c00108{width:794.000000pt;}
.x0_c00108{left:0.000000pt;}
.x2_c00108{left:80.000000pt;}
.x3_c00108{left:94.666667pt;}
.x1_c00108{left:700.647867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a378ba6f218df5456748c66d.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.160000;font-style:normal;font-weight:normal;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_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.161000;font-style: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);}
.m1_c00109{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls5_c00109{letter-spacing:-0.324000px;}
.ls4_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:0.720000px;}
.ls1_c00109{letter-spacing:0.840000px;}
.ls3_c00109{letter-spacing:1.500000px;}
.ls2_c00109{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00109{word-spacing:-21.276000px;}
.ws2_c00109{word-spacing:-14.850000px;}
.ws0_c00109{word-spacing:-10.200000px;}
.ws10_c00109{word-spacing:-1.500000px;}
.ws4_c00109{word-spacing:-0.840000px;}
.ws3_c00109{word-spacing:0.000000px;}
.wsa_c00109{word-spacing:1.512000px;}
.ws6_c00109{word-spacing:3.024000px;}
.ws7_c00109{word-spacing:3.600000px;}
.wse_c00109{word-spacing:5.832000px;}
.wsc_c00109{word-spacing:7.632000px;}
.ws8_c00109{word-spacing:8.280000px;}
.ws9_c00109{word-spacing:9.144000px;}
.ws5_c00109{word-spacing:9.504000px;}
.wsf_c00109{word-spacing:11.736000px;}
.wsd_c00109{word-spacing:14.472000px;}
.wsb_c00109{word-spacing:27.360000px;}
._0_c00109{margin-left:-480.337800px;}
._4_c00109{margin-left:-6.480000px;}
._1_c00109{margin-left:-4.200000px;}
._3_c00109{margin-left:-2.160000px;}
._2_c00109{margin-left:-1.134000px;}
.fc3_c00109{color:rgb(32,32,32);}
.fc2_c00109{color:rgb(233,83,14);}
.fc1_c00109{color:rgb(232,86,17);}
.fc4_c00109{color:rgb(157,157,156);}
.fc0_c00109{color:rgb(60,60,59);}
.fs1_c00109{font-size:42.000000px;}
.fs0_c00109{font-size:60.000000px;}
.fs5_c00109{font-size:66.000000px;}
.fs4_c00109{font-size:72.000000px;}
.fs3_c00109{font-size:84.000000px;}
.fs2_c00109{font-size:108.000000px;}
.y0_c00109{bottom:0.000000px;}
.y1_c00109{bottom:41.250000px;}
.y13_c00109{bottom:226.304700px;}
.y12_c00109{bottom:256.310700px;}
.y11_c00109{bottom:286.316700px;}
.y10_c00109{bottom:316.322700px;}
.yf_c00109{bottom:346.328700px;}
.ye_c00109{bottom:376.334700px;}
.yd_c00109{bottom:436.334700px;}
.yc_c00109{bottom:526.322700px;}
.yb_c00109{bottom:556.328700px;}
.ya_c00109{bottom:586.334700px;}
.y9_c00109{bottom:646.334700px;}
.y8_c00109{bottom:736.310700px;}
.y18_c00109{bottom:736.334700px;}
.y7_c00109{bottom:766.316700px;}
.y17_c00109{bottom:766.334700px;}
.y6_c00109{bottom:796.322700px;}
.y16_c00109{bottom:796.334700px;}
.y5_c00109{bottom:826.328700px;}
.y15_c00109{bottom:826.334700px;}
.y4_c00109{bottom:856.334700px;}
.y14_c00109{bottom:857.517300px;}
.y3_c00109{bottom:916.334700px;}
.y2_c00109{bottom:1006.334700px;}
.h6_c00109{height:50.292000px;}
.h2_c00109{height:54.000000px;}
.h5_c00109{height:64.800000px;}
.h4_c00109{height:78.540000px;}
.h3_c00109{height:100.980000px;}
.h0_c00109{height:1262.835000px;}
.h1_c00109{height:1263.000000px;}
.w0_c00109{width:892.914000px;}
.w1_c00109{width:893.250000px;}
.x0_c00109{left:0.000000px;}
.x2_c00109{left:82.500000px;}
.x3_c00109{left:90.000000px;}
.x4_c00109{left:106.500000px;}
.x5_c00109{left:675.611100px;}
.x1_c00109{left:791.904000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls5_c00109{letter-spacing:-0.288000pt;}
.ls4_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:0.640000pt;}
.ls1_c00109{letter-spacing:0.746667pt;}
.ls3_c00109{letter-spacing:1.333333pt;}
.ls2_c00109{letter-spacing:1.466667pt;}
.ws1_c00109{word-spacing:-18.912000pt;}
.ws2_c00109{word-spacing:-13.200000pt;}
.ws0_c00109{word-spacing:-9.066667pt;}
.ws10_c00109{word-spacing:-1.333333pt;}
.ws4_c00109{word-spacing:-0.746667pt;}
.ws3_c00109{word-spacing:0.000000pt;}
.wsa_c00109{word-spacing:1.344000pt;}
.ws6_c00109{word-spacing:2.688000pt;}
.ws7_c00109{word-spacing:3.200000pt;}
.wse_c00109{word-spacing:5.184000pt;}
.wsc_c00109{word-spacing:6.784000pt;}
.ws8_c00109{word-spacing:7.360000pt;}
.ws9_c00109{word-spacing:8.128000pt;}
.ws5_c00109{word-spacing:8.448000pt;}
.wsf_c00109{word-spacing:10.432000pt;}
.wsd_c00109{word-spacing:12.864000pt;}
.wsb_c00109{word-spacing:24.320000pt;}
._0_c00109{margin-left:-426.966933pt;}
._4_c00109{margin-left:-5.760000pt;}
._1_c00109{margin-left:-3.733333pt;}
._3_c00109{margin-left:-1.920000pt;}
._2_c00109{margin-left:-1.008000pt;}
.fs1_c00109{font-size:37.333333pt;}
.fs0_c00109{font-size:53.333333pt;}
.fs5_c00109{font-size:58.666667pt;}
.fs4_c00109{font-size:64.000000pt;}
.fs3_c00109{font-size:74.666667pt;}
.fs2_c00109{font-size:96.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y1_c00109{bottom:36.666667pt;}
.y13_c00109{bottom:201.159733pt;}
.y12_c00109{bottom:227.831733pt;}
.y11_c00109{bottom:254.503733pt;}
.y10_c00109{bottom:281.175733pt;}
.yf_c00109{bottom:307.847733pt;}
.ye_c00109{bottom:334.519733pt;}
.yd_c00109{bottom:387.853067pt;}
.yc_c00109{bottom:467.842400pt;}
.yb_c00109{bottom:494.514400pt;}
.ya_c00109{bottom:521.186400pt;}
.y9_c00109{bottom:574.519733pt;}
.y8_c00109{bottom:654.498400pt;}
.y18_c00109{bottom:654.519733pt;}
.y7_c00109{bottom:681.170400pt;}
.y17_c00109{bottom:681.186400pt;}
.y6_c00109{bottom:707.842400pt;}
.y16_c00109{bottom:707.853067pt;}
.y5_c00109{bottom:734.514400pt;}
.y15_c00109{bottom:734.519733pt;}
.y4_c00109{bottom:761.186400pt;}
.y14_c00109{bottom:762.237600pt;}
.y3_c00109{bottom:814.519733pt;}
.y2_c00109{bottom:894.519733pt;}
.h6_c00109{height:44.704000pt;}
.h2_c00109{height:48.000000pt;}
.h5_c00109{height:57.600000pt;}
.h4_c00109{height:69.813333pt;}
.h3_c00109{height:89.760000pt;}
.h0_c00109{height:1122.520000pt;}
.h1_c00109{height:1122.666667pt;}
.w0_c00109{width:793.701333pt;}
.w1_c00109{width:794.000000pt;}
.x0_c00109{left:0.000000pt;}
.x2_c00109{left:73.333333pt;}
.x3_c00109{left:80.000000pt;}
.x4_c00109{left:94.666667pt;}
.x5_c00109{left:600.543200pt;}
.x1_c00109{left:703.914667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00110;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls1_c00110{letter-spacing:0.000000px;}
.ls0_c00110{letter-spacing:0.720000px;}
.ls2_c00110{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wse_c00110{word-spacing:-2.520000px;}
.wsc_c00110{word-spacing:-2.160000px;}
.ws4_c00110{word-spacing:-1.440000px;}
.ws2_c00110{word-spacing:-0.840000px;}
.ws1_c00110{word-spacing:0.000000px;}
.wsd_c00110{word-spacing:0.576000px;}
.ws6_c00110{word-spacing:0.864000px;}
.ws8_c00110{word-spacing:3.168000px;}
.ws3_c00110{word-spacing:3.888000px;}
.wsa_c00110{word-spacing:6.192000px;}
.ws7_c00110{word-spacing:6.336000px;}
.ws12_c00110{word-spacing:6.624000px;}
.ws10_c00110{word-spacing:7.200000px;}
.ws11_c00110{word-spacing:7.632000px;}
.ws5_c00110{word-spacing:9.432000px;}
.ws9_c00110{word-spacing:9.936000px;}
.wsf_c00110{word-spacing:11.304000px;}
.wsb_c00110{word-spacing:11.520000px;}
._0_c00110{margin-left:-480.337800px;}
._3_c00110{margin-left:-5.760000px;}
._1_c00110{margin-left:-4.200000px;}
._2_c00110{margin-left:-1.432800px;}
.fc2_c00110{color:rgb(32,32,32);}
.fc1_c00110{color:rgb(232,86,17);}
.fc0_c00110{color:rgb(60,60,59);}
.fs1_c00110{font-size:42.000000px;}
.fs0_c00110{font-size:60.000000px;}
.fs3_c00110{font-size:72.000000px;}
.fs2_c00110{font-size:84.000000px;}
.y0_c00110{bottom:0.000000px;}
.y1_c00110{bottom:41.250000px;}
.y15_c00110{bottom:316.316700px;}
.y14_c00110{bottom:346.322700px;}
.y13_c00110{bottom:376.328700px;}
.y12_c00110{bottom:406.334700px;}
.y11_c00110{bottom:466.334700px;}
.y10_c00110{bottom:556.256700px;}
.yf_c00110{bottom:586.262700px;}
.ye_c00110{bottom:616.268700px;}
.yd_c00110{bottom:646.274700px;}
.yc_c00110{bottom:676.280700px;}
.yb_c00110{bottom:706.286700px;}
.ya_c00110{bottom:736.292700px;}
.y9_c00110{bottom:766.298700px;}
.y8_c00110{bottom:796.304700px;}
.y7_c00110{bottom:826.310700px;}
.y6_c00110{bottom:856.316700px;}
.y5_c00110{bottom:886.322700px;}
.y4_c00110{bottom:916.328700px;}
.y3_c00110{bottom:946.334700px;}
.y2_c00110{bottom:1006.334700px;}
.h2_c00110{height:54.000000px;}
.h4_c00110{height:64.800000px;}
.h3_c00110{height:78.540000px;}
.h0_c00110{height:1262.835000px;}
.h1_c00110{height:1263.000000px;}
.w0_c00110{width:892.914000px;}
.w1_c00110{width:893.250000px;}
.x0_c00110{left:0.000000px;}
.x2_c00110{left:90.000000px;}
.x3_c00110{left:106.500000px;}
.x1_c00110{left:795.564000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls1_c00110{letter-spacing:0.000000pt;}
.ls0_c00110{letter-spacing:0.640000pt;}
.ls2_c00110{letter-spacing:0.746667pt;}
.ws0_c00110{word-spacing:-9.066667pt;}
.wse_c00110{word-spacing:-2.240000pt;}
.wsc_c00110{word-spacing:-1.920000pt;}
.ws4_c00110{word-spacing:-1.280000pt;}
.ws2_c00110{word-spacing:-0.746667pt;}
.ws1_c00110{word-spacing:0.000000pt;}
.wsd_c00110{word-spacing:0.512000pt;}
.ws6_c00110{word-spacing:0.768000pt;}
.ws8_c00110{word-spacing:2.816000pt;}
.ws3_c00110{word-spacing:3.456000pt;}
.wsa_c00110{word-spacing:5.504000pt;}
.ws7_c00110{word-spacing:5.632000pt;}
.ws12_c00110{word-spacing:5.888000pt;}
.ws10_c00110{word-spacing:6.400000pt;}
.ws11_c00110{word-spacing:6.784000pt;}
.ws5_c00110{word-spacing:8.384000pt;}
.ws9_c00110{word-spacing:8.832000pt;}
.wsf_c00110{word-spacing:10.048000pt;}
.wsb_c00110{word-spacing:10.240000pt;}
._0_c00110{margin-left:-426.966933pt;}
._3_c00110{margin-left:-5.120000pt;}
._1_c00110{margin-left:-3.733333pt;}
._2_c00110{margin-left:-1.273600pt;}
.fs1_c00110{font-size:37.333333pt;}
.fs0_c00110{font-size:53.333333pt;}
.fs3_c00110{font-size:64.000000pt;}
.fs2_c00110{font-size:74.666667pt;}
.y0_c00110{bottom:0.000000pt;}
.y1_c00110{bottom:36.666667pt;}
.y15_c00110{bottom:281.170400pt;}
.y14_c00110{bottom:307.842400pt;}
.y13_c00110{bottom:334.514400pt;}
.y12_c00110{bottom:361.186400pt;}
.y11_c00110{bottom:414.519733pt;}
.y10_c00110{bottom:494.450400pt;}
.yf_c00110{bottom:521.122400pt;}
.ye_c00110{bottom:547.794400pt;}
.yd_c00110{bottom:574.466400pt;}
.yc_c00110{bottom:601.138400pt;}
.yb_c00110{bottom:627.810400pt;}
.ya_c00110{bottom:654.482400pt;}
.y9_c00110{bottom:681.154400pt;}
.y8_c00110{bottom:707.826400pt;}
.y7_c00110{bottom:734.498400pt;}
.y6_c00110{bottom:761.170400pt;}
.y5_c00110{bottom:787.842400pt;}
.y4_c00110{bottom:814.514400pt;}
.y3_c00110{bottom:841.186400pt;}
.y2_c00110{bottom:894.519733pt;}
.h2_c00110{height:48.000000pt;}
.h4_c00110{height:57.600000pt;}
.h3_c00110{height:69.813333pt;}
.h0_c00110{height:1122.520000pt;}
.h1_c00110{height:1122.666667pt;}
.w0_c00110{width:793.701333pt;}
.w1_c00110{width:794.000000pt;}
.x0_c00110{left:0.000000pt;}
.x2_c00110{left:80.000000pt;}
.x3_c00110{left:94.666667pt;}
.x1_c00110{left:707.168000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00111;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00111;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00111;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00111;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00111{font-family:ff5_c00111;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls2_c00111{letter-spacing:0.000000px;}
.ls0_c00111{letter-spacing:0.864000px;}
.ls1_c00111{letter-spacing:1.200000px;}
.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:-10.200000px;}
.ws4_c00111{word-spacing:-7.200000px;}
.ws5_c00111{word-spacing:-6.240000px;}
.ws3_c00111{word-spacing:-1.728000px;}
.ws2_c00111{word-spacing:-1.440000px;}
.ws1_c00111{word-spacing:0.000000px;}
._0_c00111{margin-left:-480.337800px;}
._6_c00111{margin-left:-10.944000px;}
._7_c00111{margin-left:-9.000000px;}
._4_c00111{margin-left:-5.904000px;}
._1_c00111{margin-left:-4.200000px;}
._5_c00111{margin-left:-3.160800px;}
._3_c00111{margin-left:-1.728000px;}
._2_c00111{width:1.440000px;}
._8_c00111{width:5.160000px;}
._9_c00111{width:7.200000px;}
.fc3_c00111{color:rgb(255,255,255);}
.fc2_c00111{color:rgb(233,83,14);}
.fc1_c00111{color:rgb(232,86,17);}
.fc0_c00111{color:rgb(60,60,59);}
.fs1_c00111{font-size:42.000000px;}
.fs0_c00111{font-size:60.000000px;}
.fs3_c00111{font-size:72.000000px;}
.fs4_c00111{font-size:120.000000px;}
.fs2_c00111{font-size:360.000000px;}
.y0_c00111{bottom:0.000000px;}
.y1_c00111{bottom:41.250000px;}
.y9_c00111{bottom:574.310700px;}
.y8_c00111{bottom:595.316700px;}
.y7_c00111{bottom:616.322700px;}
.y6_c00111{bottom:664.328700px;}
.y5_c00111{bottom:685.334700px;}
.y4_c00111{bottom:706.340700px;}
.y3_c00111{bottom:752.834700px;}
.yd_c00111{bottom:916.334700px;}
.yc_c00111{bottom:946.334700px;}
.yb_c00111{bottom:976.334700px;}
.ya_c00111{bottom:1006.334700px;}
.y2_c00111{bottom:1093.526700px;}
.h2_c00111{height:54.000000px;}
.h5_c00111{height:64.800000px;}
.h4_c00111{height:66.456000px;}
.h6_c00111{height:112.200000px;}
.h3_c00111{height:324.000000px;}
.h0_c00111{height:1262.835000px;}
.h1_c00111{height:1263.000000px;}
.w0_c00111{width:892.914000px;}
.w1_c00111{width:893.250000px;}
.x0_c00111{left:0.000000px;}
.x2_c00111{left:81.290250px;}
.x3_c00111{left:82.393650px;}
.x5_c00111{left:112.287450px;}
.x4_c00111{left:127.393650px;}
.x1_c00111{left:793.089000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls2_c00111{letter-spacing:0.000000pt;}
.ls0_c00111{letter-spacing:0.768000pt;}
.ls1_c00111{letter-spacing:1.066667pt;}
.ws0_c00111{word-spacing:-9.066667pt;}
.ws4_c00111{word-spacing:-6.400000pt;}
.ws5_c00111{word-spacing:-5.546667pt;}
.ws3_c00111{word-spacing:-1.536000pt;}
.ws2_c00111{word-spacing:-1.280000pt;}
.ws1_c00111{word-spacing:0.000000pt;}
._0_c00111{margin-left:-426.966933pt;}
._6_c00111{margin-left:-9.728000pt;}
._7_c00111{margin-left:-8.000000pt;}
._4_c00111{margin-left:-5.248000pt;}
._1_c00111{margin-left:-3.733333pt;}
._5_c00111{margin-left:-2.809600pt;}
._3_c00111{margin-left:-1.536000pt;}
._2_c00111{width:1.280000pt;}
._8_c00111{width:4.586667pt;}
._9_c00111{width:6.400000pt;}
.fs1_c00111{font-size:37.333333pt;}
.fs0_c00111{font-size:53.333333pt;}
.fs3_c00111{font-size:64.000000pt;}
.fs4_c00111{font-size:106.666667pt;}
.fs2_c00111{font-size:320.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.y1_c00111{bottom:36.666667pt;}
.y9_c00111{bottom:510.498400pt;}
.y8_c00111{bottom:529.170400pt;}
.y7_c00111{bottom:547.842400pt;}
.y6_c00111{bottom:590.514400pt;}
.y5_c00111{bottom:609.186400pt;}
.y4_c00111{bottom:627.858400pt;}
.y3_c00111{bottom:669.186400pt;}
.yd_c00111{bottom:814.519733pt;}
.yc_c00111{bottom:841.186400pt;}
.yb_c00111{bottom:867.853067pt;}
.ya_c00111{bottom:894.519733pt;}
.y2_c00111{bottom:972.023733pt;}
.h2_c00111{height:48.000000pt;}
.h5_c00111{height:57.600000pt;}
.h4_c00111{height:59.072000pt;}
.h6_c00111{height:99.733333pt;}
.h3_c00111{height:288.000000pt;}
.h0_c00111{height:1122.520000pt;}
.h1_c00111{height:1122.666667pt;}
.w0_c00111{width:793.701333pt;}
.w1_c00111{width:794.000000pt;}
.x0_c00111{left:0.000000pt;}
.x2_c00111{left:72.258000pt;}
.x3_c00111{left:73.238800pt;}
.x5_c00111{left:99.811067pt;}
.x4_c00111{left:113.238800pt;}
.x1_c00111{left:704.968000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls4_c00112{letter-spacing:-0.540000px;}
.ls3_c00112{letter-spacing:0.000000px;}
.ls0_c00112{letter-spacing:0.720000px;}
.ls2_c00112{letter-spacing:1.500000px;}
.ls1_c00112{letter-spacing:1.650000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00112{word-spacing:-21.060000px;}
.ws0_c00112{word-spacing:-10.200000px;}
.wsb_c00112{word-spacing:-4.968000px;}
.wse_c00112{word-spacing:-3.672000px;}
.ws8_c00112{word-spacing:-2.520000px;}
.wsd_c00112{word-spacing:-2.232000px;}
.wsf_c00112{word-spacing:-1.944000px;}
.ws1c_c00112{word-spacing:-1.500000px;}
.wsc_c00112{word-spacing:-1.080000px;}
.ws2_c00112{word-spacing:0.000000px;}
.ws11_c00112{word-spacing:0.144000px;}
.ws9_c00112{word-spacing:0.504000px;}
.ws16_c00112{word-spacing:0.576000px;}
.ws10_c00112{word-spacing:0.864000px;}
.ws17_c00112{word-spacing:1.872000px;}
.ws1b_c00112{word-spacing:2.088000px;}
.ws5_c00112{word-spacing:2.376000px;}
.ws1a_c00112{word-spacing:2.808000px;}
.ws12_c00112{word-spacing:3.816000px;}
.wsa_c00112{word-spacing:5.616000px;}
.ws3_c00112{word-spacing:6.120000px;}
.ws15_c00112{word-spacing:7.848000px;}
.ws18_c00112{word-spacing:9.936000px;}
.ws13_c00112{word-spacing:10.584000px;}
.ws4_c00112{word-spacing:11.448000px;}
.ws14_c00112{word-spacing:11.592000px;}
.ws6_c00112{word-spacing:12.456000px;}
.ws7_c00112{word-spacing:15.408000px;}
.ws19_c00112{word-spacing:16.992000px;}
._0_c00112{margin-left:-480.337800px;}
._1_c00112{margin-left:-4.200000px;}
._2_c00112{margin-left:-1.440000px;}
.fc3_c00112{color:rgb(32,32,32);}
.fc2_c00112{color:rgb(233,83,14);}
.fc1_c00112{color:rgb(232,86,17);}
.fc4_c00112{color:rgb(157,157,156);}
.fc0_c00112{color:rgb(60,60,59);}
.fs1_c00112{font-size:42.000000px;}
.fs0_c00112{font-size:60.000000px;}
.fs4_c00112{font-size:66.000000px;}
.fs3_c00112{font-size:72.000000px;}
.fs2_c00112{font-size:108.000000px;}
.y0_c00112{bottom:0.000000px;}
.y1_c00112{bottom:41.250000px;}
.y1e_c00112{bottom:136.172700px;}
.y1d_c00112{bottom:166.178700px;}
.y1c_c00112{bottom:196.184700px;}
.y1b_c00112{bottom:226.190700px;}
.y1a_c00112{bottom:256.196700px;}
.y19_c00112{bottom:286.202700px;}
.y18_c00112{bottom:316.208700px;}
.y17_c00112{bottom:346.214700px;}
.y16_c00112{bottom:376.220700px;}
.y15_c00112{bottom:406.226700px;}
.y14_c00112{bottom:436.232700px;}
.y13_c00112{bottom:466.238700px;}
.y12_c00112{bottom:496.244700px;}
.y11_c00112{bottom:526.250700px;}
.y10_c00112{bottom:556.256700px;}
.yf_c00112{bottom:586.262700px;}
.ye_c00112{bottom:616.268700px;}
.yd_c00112{bottom:646.274700px;}
.yc_c00112{bottom:676.280700px;}
.yb_c00112{bottom:706.286700px;}
.ya_c00112{bottom:736.292700px;}
.y9_c00112{bottom:766.298700px;}
.y8_c00112{bottom:796.304700px;}
.y23_c00112{bottom:825.085650px;}
.y7_c00112{bottom:826.310700px;}
.y22_c00112{bottom:855.085650px;}
.y6_c00112{bottom:856.316700px;}
.y21_c00112{bottom:885.085650px;}
.y5_c00112{bottom:886.322700px;}
.y20_c00112{bottom:915.085650px;}
.y4_c00112{bottom:916.328700px;}
.y1f_c00112{bottom:945.085650px;}
.y3_c00112{bottom:946.334700px;}
.y2_c00112{bottom:1006.334700px;}
.h5_c00112{height:50.292000px;}
.h2_c00112{height:54.000000px;}
.h4_c00112{height:64.800000px;}
.h3_c00112{height:100.980000px;}
.h0_c00112{height:1262.835000px;}
.h1_c00112{height:1263.000000px;}
.w0_c00112{width:892.914000px;}
.w1_c00112{width:893.250000px;}
.x0_c00112{left:0.000000px;}
.x2_c00112{left:82.500000px;}
.x3_c00112{left:106.500000px;}
.x4_c00112{left:675.611100px;}
.x1_c00112{left:792.939000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls4_c00112{letter-spacing:-0.480000pt;}
.ls3_c00112{letter-spacing:0.000000pt;}
.ls0_c00112{letter-spacing:0.640000pt;}
.ls2_c00112{letter-spacing:1.333333pt;}
.ls1_c00112{letter-spacing:1.466667pt;}
.ws1_c00112{word-spacing:-18.720000pt;}
.ws0_c00112{word-spacing:-9.066667pt;}
.wsb_c00112{word-spacing:-4.416000pt;}
.wse_c00112{word-spacing:-3.264000pt;}
.ws8_c00112{word-spacing:-2.240000pt;}
.wsd_c00112{word-spacing:-1.984000pt;}
.wsf_c00112{word-spacing:-1.728000pt;}
.ws1c_c00112{word-spacing:-1.333333pt;}
.wsc_c00112{word-spacing:-0.960000pt;}
.ws2_c00112{word-spacing:0.000000pt;}
.ws11_c00112{word-spacing:0.128000pt;}
.ws9_c00112{word-spacing:0.448000pt;}
.ws16_c00112{word-spacing:0.512000pt;}
.ws10_c00112{word-spacing:0.768000pt;}
.ws17_c00112{word-spacing:1.664000pt;}
.ws1b_c00112{word-spacing:1.856000pt;}
.ws5_c00112{word-spacing:2.112000pt;}
.ws1a_c00112{word-spacing:2.496000pt;}
.ws12_c00112{word-spacing:3.392000pt;}
.wsa_c00112{word-spacing:4.992000pt;}
.ws3_c00112{word-spacing:5.440000pt;}
.ws15_c00112{word-spacing:6.976000pt;}
.ws18_c00112{word-spacing:8.832000pt;}
.ws13_c00112{word-spacing:9.408000pt;}
.ws4_c00112{word-spacing:10.176000pt;}
.ws14_c00112{word-spacing:10.304000pt;}
.ws6_c00112{word-spacing:11.072000pt;}
.ws7_c00112{word-spacing:13.696000pt;}
.ws19_c00112{word-spacing:15.104000pt;}
._0_c00112{margin-left:-426.966933pt;}
._1_c00112{margin-left:-3.733333pt;}
._2_c00112{margin-left:-1.280000pt;}
.fs1_c00112{font-size:37.333333pt;}
.fs0_c00112{font-size:53.333333pt;}
.fs4_c00112{font-size:58.666667pt;}
.fs3_c00112{font-size:64.000000pt;}
.fs2_c00112{font-size:96.000000pt;}
.y0_c00112{bottom:0.000000pt;}
.y1_c00112{bottom:36.666667pt;}
.y1e_c00112{bottom:121.042400pt;}
.y1d_c00112{bottom:147.714400pt;}
.y1c_c00112{bottom:174.386400pt;}
.y1b_c00112{bottom:201.058400pt;}
.y1a_c00112{bottom:227.730400pt;}
.y19_c00112{bottom:254.402400pt;}
.y18_c00112{bottom:281.074400pt;}
.y17_c00112{bottom:307.746400pt;}
.y16_c00112{bottom:334.418400pt;}
.y15_c00112{bottom:361.090400pt;}
.y14_c00112{bottom:387.762400pt;}
.y13_c00112{bottom:414.434400pt;}
.y12_c00112{bottom:441.106400pt;}
.y11_c00112{bottom:467.778400pt;}
.y10_c00112{bottom:494.450400pt;}
.yf_c00112{bottom:521.122400pt;}
.ye_c00112{bottom:547.794400pt;}
.yd_c00112{bottom:574.466400pt;}
.yc_c00112{bottom:601.138400pt;}
.yb_c00112{bottom:627.810400pt;}
.ya_c00112{bottom:654.482400pt;}
.y9_c00112{bottom:681.154400pt;}
.y8_c00112{bottom:707.826400pt;}
.y23_c00112{bottom:733.409467pt;}
.y7_c00112{bottom:734.498400pt;}
.y22_c00112{bottom:760.076133pt;}
.y6_c00112{bottom:761.170400pt;}
.y21_c00112{bottom:786.742800pt;}
.y5_c00112{bottom:787.842400pt;}
.y20_c00112{bottom:813.409467pt;}
.y4_c00112{bottom:814.514400pt;}
.y1f_c00112{bottom:840.076133pt;}
.y3_c00112{bottom:841.186400pt;}
.y2_c00112{bottom:894.519733pt;}
.h5_c00112{height:44.704000pt;}
.h2_c00112{height:48.000000pt;}
.h4_c00112{height:57.600000pt;}
.h3_c00112{height:89.760000pt;}
.h0_c00112{height:1122.520000pt;}
.h1_c00112{height:1122.666667pt;}
.w0_c00112{width:793.701333pt;}
.w1_c00112{width:794.000000pt;}
.x0_c00112{left:0.000000pt;}
.x2_c00112{left:73.333333pt;}
.x3_c00112{left:94.666667pt;}
.x4_c00112{left:600.543200pt;}
.x1_c00112{left:704.834667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00113;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.161000;font-style: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);}
.m1_c00113{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls4_c00113{letter-spacing:-0.324000px;}
.ls3_c00113{letter-spacing:0.000000px;}
.ls0_c00113{letter-spacing:0.720000px;}
.ls2_c00113{letter-spacing:1.500000px;}
.ls1_c00113{letter-spacing:1.650000px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00113{word-spacing:-21.276000px;}
.ws2_c00113{word-spacing:-14.850000px;}
.ws0_c00113{word-spacing:-10.200000px;}
.ws19_c00113{word-spacing:-2.592000px;}
.ws8_c00113{word-spacing:-2.520000px;}
.ws18_c00113{word-spacing:-0.648000px;}
.ws9_c00113{word-spacing:-0.144000px;}
.ws3_c00113{word-spacing:0.000000px;}
.ws14_c00113{word-spacing:0.864000px;}
.ws16_c00113{word-spacing:1.296000px;}
.ws7_c00113{word-spacing:2.448000px;}
.wsa_c00113{word-spacing:2.808000px;}
.ws17_c00113{word-spacing:3.168000px;}
.ws10_c00113{word-spacing:3.312000px;}
.ws4_c00113{word-spacing:4.176000px;}
.ws1b_c00113{word-spacing:4.248000px;}
.ws13_c00113{word-spacing:4.536000px;}
.ws15_c00113{word-spacing:4.680000px;}
.wse_c00113{word-spacing:4.752000px;}
.wsc_c00113{word-spacing:4.896000px;}
.ws1a_c00113{word-spacing:5.688000px;}
.ws12_c00113{word-spacing:6.264000px;}
.ws5_c00113{word-spacing:6.624000px;}
.ws11_c00113{word-spacing:8.136000px;}
.wsf_c00113{word-spacing:9.000000px;}
.wsb_c00113{word-spacing:12.168000px;}
.ws6_c00113{word-spacing:14.472000px;}
.wsd_c00113{word-spacing:15.048000px;}
._0_c00113{margin-left:-480.337800px;}
._3_c00113{margin-left:-5.760000px;}
._1_c00113{margin-left:-4.200000px;}
._4_c00113{margin-left:-2.160000px;}
._2_c00113{margin-left:-1.134000px;}
.fc3_c00113{color:rgb(32,32,32);}
.fc2_c00113{color:rgb(233,83,14);}
.fc1_c00113{color:rgb(232,86,17);}
.fc4_c00113{color:rgb(157,157,156);}
.fc0_c00113{color:rgb(60,60,59);}
.fs1_c00113{font-size:42.000000px;}
.fs0_c00113{font-size:60.000000px;}
.fs4_c00113{font-size:66.000000px;}
.fs3_c00113{font-size:72.000000px;}
.fs2_c00113{font-size:108.000000px;}
.y0_c00113{bottom:0.000000px;}
.y1_c00113{bottom:41.250000px;}
.y1c_c00113{bottom:196.184700px;}
.y1b_c00113{bottom:226.190700px;}
.y1a_c00113{bottom:256.196700px;}
.y19_c00113{bottom:286.202700px;}
.y18_c00113{bottom:316.208700px;}
.y17_c00113{bottom:346.214700px;}
.y16_c00113{bottom:376.220700px;}
.y15_c00113{bottom:406.226700px;}
.y14_c00113{bottom:436.232700px;}
.y13_c00113{bottom:466.238700px;}
.y12_c00113{bottom:496.244700px;}
.y11_c00113{bottom:526.250700px;}
.y10_c00113{bottom:556.256700px;}
.yf_c00113{bottom:586.262700px;}
.ye_c00113{bottom:616.268700px;}
.yd_c00113{bottom:646.274700px;}
.yc_c00113{bottom:676.280700px;}
.yb_c00113{bottom:706.286700px;}
.ya_c00113{bottom:736.292700px;}
.y9_c00113{bottom:766.298700px;}
.y8_c00113{bottom:796.304700px;}
.y7_c00113{bottom:826.310700px;}
.y6_c00113{bottom:856.316700px;}
.y20_c00113{bottom:856.334700px;}
.y5_c00113{bottom:886.322700px;}
.y1f_c00113{bottom:886.334700px;}
.y4_c00113{bottom:916.328700px;}
.y1e_c00113{bottom:916.334700px;}
.y3_c00113{bottom:946.334700px;}
.y1d_c00113{bottom:947.258850px;}
.y2_c00113{bottom:1006.334700px;}
.h5_c00113{height:50.292000px;}
.h2_c00113{height:54.000000px;}
.h4_c00113{height:64.800000px;}
.h3_c00113{height:100.980000px;}
.h0_c00113{height:1262.835000px;}
.h1_c00113{height:1263.000000px;}
.w0_c00113{width:892.914000px;}
.w1_c00113{width:893.250000px;}
.x0_c00113{left:0.000000px;}
.x2_c00113{left:82.500000px;}
.x3_c00113{left:106.500000px;}
.x4_c00113{left:675.611100px;}
.x1_c00113{left:791.964000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls4_c00113{letter-spacing:-0.288000pt;}
.ls3_c00113{letter-spacing:0.000000pt;}
.ls0_c00113{letter-spacing:0.640000pt;}
.ls2_c00113{letter-spacing:1.333333pt;}
.ls1_c00113{letter-spacing:1.466667pt;}
.ws1_c00113{word-spacing:-18.912000pt;}
.ws2_c00113{word-spacing:-13.200000pt;}
.ws0_c00113{word-spacing:-9.066667pt;}
.ws19_c00113{word-spacing:-2.304000pt;}
.ws8_c00113{word-spacing:-2.240000pt;}
.ws18_c00113{word-spacing:-0.576000pt;}
.ws9_c00113{word-spacing:-0.128000pt;}
.ws3_c00113{word-spacing:0.000000pt;}
.ws14_c00113{word-spacing:0.768000pt;}
.ws16_c00113{word-spacing:1.152000pt;}
.ws7_c00113{word-spacing:2.176000pt;}
.wsa_c00113{word-spacing:2.496000pt;}
.ws17_c00113{word-spacing:2.816000pt;}
.ws10_c00113{word-spacing:2.944000pt;}
.ws4_c00113{word-spacing:3.712000pt;}
.ws1b_c00113{word-spacing:3.776000pt;}
.ws13_c00113{word-spacing:4.032000pt;}
.ws15_c00113{word-spacing:4.160000pt;}
.wse_c00113{word-spacing:4.224000pt;}
.wsc_c00113{word-spacing:4.352000pt;}
.ws1a_c00113{word-spacing:5.056000pt;}
.ws12_c00113{word-spacing:5.568000pt;}
.ws5_c00113{word-spacing:5.888000pt;}
.ws11_c00113{word-spacing:7.232000pt;}
.wsf_c00113{word-spacing:8.000000pt;}
.wsb_c00113{word-spacing:10.816000pt;}
.ws6_c00113{word-spacing:12.864000pt;}
.wsd_c00113{word-spacing:13.376000pt;}
._0_c00113{margin-left:-426.966933pt;}
._3_c00113{margin-left:-5.120000pt;}
._1_c00113{margin-left:-3.733333pt;}
._4_c00113{margin-left:-1.920000pt;}
._2_c00113{margin-left:-1.008000pt;}
.fs1_c00113{font-size:37.333333pt;}
.fs0_c00113{font-size:53.333333pt;}
.fs4_c00113{font-size:58.666667pt;}
.fs3_c00113{font-size:64.000000pt;}
.fs2_c00113{font-size:96.000000pt;}
.y0_c00113{bottom:0.000000pt;}
.y1_c00113{bottom:36.666667pt;}
.y1c_c00113{bottom:174.386400pt;}
.y1b_c00113{bottom:201.058400pt;}
.y1a_c00113{bottom:227.730400pt;}
.y19_c00113{bottom:254.402400pt;}
.y18_c00113{bottom:281.074400pt;}
.y17_c00113{bottom:307.746400pt;}
.y16_c00113{bottom:334.418400pt;}
.y15_c00113{bottom:361.090400pt;}
.y14_c00113{bottom:387.762400pt;}
.y13_c00113{bottom:414.434400pt;}
.y12_c00113{bottom:441.106400pt;}
.y11_c00113{bottom:467.778400pt;}
.y10_c00113{bottom:494.450400pt;}
.yf_c00113{bottom:521.122400pt;}
.ye_c00113{bottom:547.794400pt;}
.yd_c00113{bottom:574.466400pt;}
.yc_c00113{bottom:601.138400pt;}
.yb_c00113{bottom:627.810400pt;}
.ya_c00113{bottom:654.482400pt;}
.y9_c00113{bottom:681.154400pt;}
.y8_c00113{bottom:707.826400pt;}
.y7_c00113{bottom:734.498400pt;}
.y6_c00113{bottom:761.170400pt;}
.y20_c00113{bottom:761.186400pt;}
.y5_c00113{bottom:787.842400pt;}
.y1f_c00113{bottom:787.853067pt;}
.y4_c00113{bottom:814.514400pt;}
.y1e_c00113{bottom:814.519733pt;}
.y3_c00113{bottom:841.186400pt;}
.y1d_c00113{bottom:842.007867pt;}
.y2_c00113{bottom:894.519733pt;}
.h5_c00113{height:44.704000pt;}
.h2_c00113{height:48.000000pt;}
.h4_c00113{height:57.600000pt;}
.h3_c00113{height:89.760000pt;}
.h0_c00113{height:1122.520000pt;}
.h1_c00113{height:1122.666667pt;}
.w0_c00113{width:793.701333pt;}
.w1_c00113{width:794.000000pt;}
.x0_c00113{left:0.000000pt;}
.x2_c00113{left:73.333333pt;}
.x3_c00113{left:94.666667pt;}
.x4_c00113{left:600.543200pt;}
.x1_c00113{left:703.968000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00114;src:url('chunks/assets/font_311e13d27dbc456dd012feb7.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00114;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls2_c00114{letter-spacing:0.000000px;}
.ls0_c00114{letter-spacing:0.864000px;}
.ls1_c00114{letter-spacing:1.200000px;}
.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:-13.104000px;}
.wsa_c00114{word-spacing:-12.240000px;}
.ws0_c00114{word-spacing:-10.200000px;}
.ws9_c00114{word-spacing:-4.752000px;}
.ws4_c00114{word-spacing:-4.464000px;}
.ws8_c00114{word-spacing:-4.104000px;}
.ws7_c00114{word-spacing:-2.016000px;}
.ws5_c00114{word-spacing:-0.864000px;}
.ws3_c00114{word-spacing:-0.576000px;}
.ws2_c00114{word-spacing:0.000000px;}
.ws6_c00114{word-spacing:1.224000px;}
._0_c00114{margin-left:-480.337200px;}
._7_c00114{margin-left:-17.400000px;}
._8_c00114{margin-left:-11.760000px;}
._6_c00114{margin-left:-9.600000px;}
._1_c00114{margin-left:-4.200000px;}
._2_c00114{margin-left:-2.160000px;}
._5_c00114{margin-left:-1.152000px;}
._3_c00114{width:1.584000px;}
._4_c00114{width:4.464000px;}
.fc3_c00114{color:rgb(255,255,255);}
.fc2_c00114{color:rgb(233,83,14);}
.fc1_c00114{color:rgb(232,86,17);}
.fc0_c00114{color:rgb(60,60,59);}
.fs1_c00114{font-size:42.000000px;}
.fs0_c00114{font-size:60.000000px;}
.fs3_c00114{font-size:72.000000px;}
.fs4_c00114{font-size:120.000000px;}
.fs2_c00114{font-size:360.000000px;}
.y0_c00114{bottom:0.000000px;}
.y1_c00114{bottom:41.250000px;}
.y16_c00114{bottom:193.232700px;}
.y15_c00114{bottom:214.238700px;}
.y14_c00114{bottom:235.244700px;}
.y13_c00114{bottom:256.250700px;}
.y12_c00114{bottom:304.256700px;}
.y11_c00114{bottom:325.262700px;}
.y10_c00114{bottom:346.268700px;}
.yf_c00114{bottom:394.274700px;}
.ye_c00114{bottom:415.280700px;}
.yd_c00114{bottom:436.286700px;}
.yc_c00114{bottom:484.292700px;}
.yb_c00114{bottom:505.298700px;}
.ya_c00114{bottom:526.304700px;}
.y9_c00114{bottom:574.310700px;}
.y8_c00114{bottom:595.316700px;}
.y7_c00114{bottom:616.322700px;}
.y6_c00114{bottom:664.328700px;}
.y5_c00114{bottom:685.334700px;}
.y4_c00114{bottom:706.340700px;}
.y3_c00114{bottom:752.834700px;}
.y19_c00114{bottom:946.334700px;}
.y18_c00114{bottom:976.334700px;}
.y17_c00114{bottom:1006.334700px;}
.y2_c00114{bottom:1093.526700px;}
.h2_c00114{height:54.000000px;}
.h5_c00114{height:64.800000px;}
.h4_c00114{height:66.456000px;}
.h6_c00114{height:112.200000px;}
.h3_c00114{height:324.000000px;}
.h0_c00114{height:1262.835000px;}
.h1_c00114{height:1263.000000px;}
.w0_c00114{width:892.914000px;}
.w1_c00114{width:893.250000px;}
.x0_c00114{left:0.000000px;}
.x2_c00114{left:81.290250px;}
.x3_c00114{left:82.393650px;}
.x5_c00114{left:112.287450px;}
.x4_c00114{left:127.393650px;}
.x1_c00114{left:793.013850px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls2_c00114{letter-spacing:0.000000pt;}
.ls0_c00114{letter-spacing:0.768000pt;}
.ls1_c00114{letter-spacing:1.066667pt;}
.ws1_c00114{word-spacing:-11.648000pt;}
.wsa_c00114{word-spacing:-10.880000pt;}
.ws0_c00114{word-spacing:-9.066667pt;}
.ws9_c00114{word-spacing:-4.224000pt;}
.ws4_c00114{word-spacing:-3.968000pt;}
.ws8_c00114{word-spacing:-3.648000pt;}
.ws7_c00114{word-spacing:-1.792000pt;}
.ws5_c00114{word-spacing:-0.768000pt;}
.ws3_c00114{word-spacing:-0.512000pt;}
.ws2_c00114{word-spacing:0.000000pt;}
.ws6_c00114{word-spacing:1.088000pt;}
._0_c00114{margin-left:-426.966400pt;}
._7_c00114{margin-left:-15.466667pt;}
._8_c00114{margin-left:-10.453333pt;}
._6_c00114{margin-left:-8.533333pt;}
._1_c00114{margin-left:-3.733333pt;}
._2_c00114{margin-left:-1.920000pt;}
._5_c00114{margin-left:-1.024000pt;}
._3_c00114{width:1.408000pt;}
._4_c00114{width:3.968000pt;}
.fs1_c00114{font-size:37.333333pt;}
.fs0_c00114{font-size:53.333333pt;}
.fs3_c00114{font-size:64.000000pt;}
.fs4_c00114{font-size:106.666667pt;}
.fs2_c00114{font-size:320.000000pt;}
.y0_c00114{bottom:0.000000pt;}
.y1_c00114{bottom:36.666667pt;}
.y16_c00114{bottom:171.762400pt;}
.y15_c00114{bottom:190.434400pt;}
.y14_c00114{bottom:209.106400pt;}
.y13_c00114{bottom:227.778400pt;}
.y12_c00114{bottom:270.450400pt;}
.y11_c00114{bottom:289.122400pt;}
.y10_c00114{bottom:307.794400pt;}
.yf_c00114{bottom:350.466400pt;}
.ye_c00114{bottom:369.138400pt;}
.yd_c00114{bottom:387.810400pt;}
.yc_c00114{bottom:430.482400pt;}
.yb_c00114{bottom:449.154400pt;}
.ya_c00114{bottom:467.826400pt;}
.y9_c00114{bottom:510.498400pt;}
.y8_c00114{bottom:529.170400pt;}
.y7_c00114{bottom:547.842400pt;}
.y6_c00114{bottom:590.514400pt;}
.y5_c00114{bottom:609.186400pt;}
.y4_c00114{bottom:627.858400pt;}
.y3_c00114{bottom:669.186400pt;}
.y19_c00114{bottom:841.186400pt;}
.y18_c00114{bottom:867.853067pt;}
.y17_c00114{bottom:894.519733pt;}
.y2_c00114{bottom:972.023733pt;}
.h2_c00114{height:48.000000pt;}
.h5_c00114{height:57.600000pt;}
.h4_c00114{height:59.072000pt;}
.h6_c00114{height:99.733333pt;}
.h3_c00114{height:288.000000pt;}
.h0_c00114{height:1122.520000pt;}
.h1_c00114{height:1122.666667pt;}
.w0_c00114{width:793.701333pt;}
.w1_c00114{width:794.000000pt;}
.x0_c00114{left:0.000000pt;}
.x2_c00114{left:72.258000pt;}
.x3_c00114{left:73.238800pt;}
.x5_c00114{left:99.811067pt;}
.x4_c00114{left:113.238800pt;}
.x1_c00114{left:704.901200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00115;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls5_c00115{letter-spacing:-0.540000px;}
.ls4_c00115{letter-spacing:0.000000px;}
.ls0_c00115{letter-spacing:0.720000px;}
.ls1_c00115{letter-spacing:0.840000px;}
.ls3_c00115{letter-spacing:1.500000px;}
.ls2_c00115{letter-spacing:1.650000px;}
.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:-21.060000px;}
.ws2_c00115{word-spacing:-17.640000px;}
.ws3_c00115{word-spacing:-11.700000px;}
.ws0_c00115{word-spacing:-10.200000px;}
.wsb_c00115{word-spacing:-3.096000px;}
.wse_c00115{word-spacing:-2.736000px;}
.ws10_c00115{word-spacing:-1.500000px;}
.ws5_c00115{word-spacing:-0.840000px;}
.ws4_c00115{word-spacing:0.000000px;}
.wsd_c00115{word-spacing:0.288000px;}
.ws9_c00115{word-spacing:0.576000px;}
.wsa_c00115{word-spacing:1.728000px;}
.wsc_c00115{word-spacing:2.376000px;}
.ws6_c00115{word-spacing:4.824000px;}
.wsf_c00115{word-spacing:5.904000px;}
.ws7_c00115{word-spacing:7.344000px;}
.ws8_c00115{word-spacing:10.224000px;}
._0_c00115{margin-left:-480.337200px;}
._1_c00115{margin-left:-4.200000px;}
._2_c00115{margin-left:-1.440000px;}
.fc3_c00115{color:rgb(32,32,32);}
.fc2_c00115{color:rgb(233,83,14);}
.fc1_c00115{color:rgb(232,86,17);}
.fc4_c00115{color:rgb(157,157,156);}
.fc0_c00115{color:rgb(60,60,59);}
.fs1_c00115{font-size:42.000000px;}
.fs0_c00115{font-size:60.000000px;}
.fs5_c00115{font-size:66.000000px;}
.fs4_c00115{font-size:72.000000px;}
.fs3_c00115{font-size:84.000000px;}
.fs2_c00115{font-size:108.000000px;}
.y0_c00115{bottom:0.000000px;}
.y1_c00115{bottom:41.250000px;}
.y10_c00115{bottom:406.322700px;}
.yf_c00115{bottom:436.328700px;}
.ye_c00115{bottom:466.334700px;}
.yd_c00115{bottom:526.334700px;}
.yc_c00115{bottom:616.286700px;}
.yb_c00115{bottom:646.292700px;}
.ya_c00115{bottom:676.298700px;}
.y9_c00115{bottom:706.304700px;}
.y16_c00115{bottom:706.334700px;}
.y8_c00115{bottom:736.310700px;}
.y15_c00115{bottom:736.334700px;}
.y7_c00115{bottom:766.316700px;}
.y14_c00115{bottom:766.334700px;}
.y6_c00115{bottom:796.322700px;}
.y13_c00115{bottom:796.334700px;}
.y5_c00115{bottom:826.328700px;}
.y12_c00115{bottom:826.334700px;}
.y4_c00115{bottom:856.334700px;}
.y11_c00115{bottom:857.517300px;}
.y3_c00115{bottom:916.334700px;}
.y2_c00115{bottom:1006.334700px;}
.h6_c00115{height:50.292000px;}
.h2_c00115{height:54.000000px;}
.h5_c00115{height:64.800000px;}
.h4_c00115{height:78.540000px;}
.h3_c00115{height:100.980000px;}
.h0_c00115{height:1262.835000px;}
.h1_c00115{height:1263.000000px;}
.w0_c00115{width:892.914000px;}
.w1_c00115{width:893.250000px;}
.x0_c00115{left:0.000000px;}
.x2_c00115{left:82.500000px;}
.x3_c00115{left:90.000000px;}
.x4_c00115{left:106.500000px;}
.x5_c00115{left:675.611100px;}
.x1_c00115{left:791.888850px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls5_c00115{letter-spacing:-0.480000pt;}
.ls4_c00115{letter-spacing:0.000000pt;}
.ls0_c00115{letter-spacing:0.640000pt;}
.ls1_c00115{letter-spacing:0.746667pt;}
.ls3_c00115{letter-spacing:1.333333pt;}
.ls2_c00115{letter-spacing:1.466667pt;}
.ws1_c00115{word-spacing:-18.720000pt;}
.ws2_c00115{word-spacing:-15.680000pt;}
.ws3_c00115{word-spacing:-10.400000pt;}
.ws0_c00115{word-spacing:-9.066667pt;}
.wsb_c00115{word-spacing:-2.752000pt;}
.wse_c00115{word-spacing:-2.432000pt;}
.ws10_c00115{word-spacing:-1.333333pt;}
.ws5_c00115{word-spacing:-0.746667pt;}
.ws4_c00115{word-spacing:0.000000pt;}
.wsd_c00115{word-spacing:0.256000pt;}
.ws9_c00115{word-spacing:0.512000pt;}
.wsa_c00115{word-spacing:1.536000pt;}
.wsc_c00115{word-spacing:2.112000pt;}
.ws6_c00115{word-spacing:4.288000pt;}
.wsf_c00115{word-spacing:5.248000pt;}
.ws7_c00115{word-spacing:6.528000pt;}
.ws8_c00115{word-spacing:9.088000pt;}
._0_c00115{margin-left:-426.966400pt;}
._1_c00115{margin-left:-3.733333pt;}
._2_c00115{margin-left:-1.280000pt;}
.fs1_c00115{font-size:37.333333pt;}
.fs0_c00115{font-size:53.333333pt;}
.fs5_c00115{font-size:58.666667pt;}
.fs4_c00115{font-size:64.000000pt;}
.fs3_c00115{font-size:74.666667pt;}
.fs2_c00115{font-size:96.000000pt;}
.y0_c00115{bottom:0.000000pt;}
.y1_c00115{bottom:36.666667pt;}
.y10_c00115{bottom:361.175733pt;}
.yf_c00115{bottom:387.847733pt;}
.ye_c00115{bottom:414.519733pt;}
.yd_c00115{bottom:467.853067pt;}
.yc_c00115{bottom:547.810400pt;}
.yb_c00115{bottom:574.482400pt;}
.ya_c00115{bottom:601.154400pt;}
.y9_c00115{bottom:627.826400pt;}
.y16_c00115{bottom:627.853067pt;}
.y8_c00115{bottom:654.498400pt;}
.y15_c00115{bottom:654.519733pt;}
.y7_c00115{bottom:681.170400pt;}
.y14_c00115{bottom:681.186400pt;}
.y6_c00115{bottom:707.842400pt;}
.y13_c00115{bottom:707.853067pt;}
.y5_c00115{bottom:734.514400pt;}
.y12_c00115{bottom:734.519733pt;}
.y4_c00115{bottom:761.186400pt;}
.y11_c00115{bottom:762.237600pt;}
.y3_c00115{bottom:814.519733pt;}
.y2_c00115{bottom:894.519733pt;}
.h6_c00115{height:44.704000pt;}
.h2_c00115{height:48.000000pt;}
.h5_c00115{height:57.600000pt;}
.h4_c00115{height:69.813333pt;}
.h3_c00115{height:89.760000pt;}
.h0_c00115{height:1122.520000pt;}
.h1_c00115{height:1122.666667pt;}
.w0_c00115{width:793.701333pt;}
.w1_c00115{width:794.000000pt;}
.x0_c00115{left:0.000000pt;}
.x2_c00115{left:73.333333pt;}
.x3_c00115{left:80.000000pt;}
.x4_c00115{left:94.666667pt;}
.x5_c00115{left:600.543200pt;}
.x1_c00115{left:703.901200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls1_c00116{letter-spacing:0.000000px;}
.ls0_c00116{letter-spacing:0.720000px;}
.ls2_c00116{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws7_c00116{word-spacing:-2.016000px;}
.ws4_c00116{word-spacing:-1.800000px;}
.wsa_c00116{word-spacing:-0.840000px;}
.ws5_c00116{word-spacing:-0.792000px;}
.ws1_c00116{word-spacing:0.000000px;}
.wsd_c00116{word-spacing:0.648000px;}
.ws6_c00116{word-spacing:1.008000px;}
.ws3_c00116{word-spacing:1.440000px;}
.ws9_c00116{word-spacing:2.016000px;}
.wsc_c00116{word-spacing:2.232000px;}
.ws11_c00116{word-spacing:2.304000px;}
.wsb_c00116{word-spacing:4.248000px;}
.ws8_c00116{word-spacing:5.760000px;}
.wse_c00116{word-spacing:6.840000px;}
.ws2_c00116{word-spacing:9.288000px;}
.ws10_c00116{word-spacing:10.872000px;}
.wsf_c00116{word-spacing:20.304000px;}
._0_c00116{margin-left:-480.337200px;}
._1_c00116{margin-left:-4.200000px;}
._2_c00116{margin-left:-1.440000px;}
.fc2_c00116{color:rgb(32,32,32);}
.fc1_c00116{color:rgb(232,86,17);}
.fc0_c00116{color:rgb(60,60,59);}
.fs1_c00116{font-size:42.000000px;}
.fs0_c00116{font-size:60.000000px;}
.fs3_c00116{font-size:72.000000px;}
.fs2_c00116{font-size:84.000000px;}
.y0_c00116{bottom:0.000000px;}
.y1_c00116{bottom:41.250000px;}
.y17_c00116{bottom:166.322700px;}
.y16_c00116{bottom:196.328700px;}
.y15_c00116{bottom:226.334700px;}
.y14_c00116{bottom:286.334700px;}
.y13_c00116{bottom:376.298700px;}
.y12_c00116{bottom:406.304700px;}
.y11_c00116{bottom:436.310700px;}
.y10_c00116{bottom:466.316700px;}
.yf_c00116{bottom:496.322700px;}
.ye_c00116{bottom:526.328700px;}
.yd_c00116{bottom:556.334700px;}
.yc_c00116{bottom:616.334700px;}
.yb_c00116{bottom:706.286700px;}
.ya_c00116{bottom:736.292700px;}
.y9_c00116{bottom:766.298700px;}
.y8_c00116{bottom:796.304700px;}
.y7_c00116{bottom:826.310700px;}
.y6_c00116{bottom:856.316700px;}
.y5_c00116{bottom:886.322700px;}
.y4_c00116{bottom:916.328700px;}
.y3_c00116{bottom:946.334700px;}
.y2_c00116{bottom:1006.334700px;}
.h2_c00116{height:54.000000px;}
.h4_c00116{height:64.800000px;}
.h3_c00116{height:78.540000px;}
.h0_c00116{height:1262.835000px;}
.h1_c00116{height:1263.000000px;}
.w0_c00116{width:892.914000px;}
.w1_c00116{width:893.250000px;}
.x0_c00116{left:0.000000px;}
.x2_c00116{left:90.000000px;}
.x3_c00116{left:106.500000px;}
.x1_c00116{left:793.988850px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls1_c00116{letter-spacing:0.000000pt;}
.ls0_c00116{letter-spacing:0.640000pt;}
.ls2_c00116{letter-spacing:0.746667pt;}
.ws0_c00116{word-spacing:-9.066667pt;}
.ws7_c00116{word-spacing:-1.792000pt;}
.ws4_c00116{word-spacing:-1.600000pt;}
.wsa_c00116{word-spacing:-0.746667pt;}
.ws5_c00116{word-spacing:-0.704000pt;}
.ws1_c00116{word-spacing:0.000000pt;}
.wsd_c00116{word-spacing:0.576000pt;}
.ws6_c00116{word-spacing:0.896000pt;}
.ws3_c00116{word-spacing:1.280000pt;}
.ws9_c00116{word-spacing:1.792000pt;}
.wsc_c00116{word-spacing:1.984000pt;}
.ws11_c00116{word-spacing:2.048000pt;}
.wsb_c00116{word-spacing:3.776000pt;}
.ws8_c00116{word-spacing:5.120000pt;}
.wse_c00116{word-spacing:6.080000pt;}
.ws2_c00116{word-spacing:8.256000pt;}
.ws10_c00116{word-spacing:9.664000pt;}
.wsf_c00116{word-spacing:18.048000pt;}
._0_c00116{margin-left:-426.966400pt;}
._1_c00116{margin-left:-3.733333pt;}
._2_c00116{margin-left:-1.280000pt;}
.fs1_c00116{font-size:37.333333pt;}
.fs0_c00116{font-size:53.333333pt;}
.fs3_c00116{font-size:64.000000pt;}
.fs2_c00116{font-size:74.666667pt;}
.y0_c00116{bottom:0.000000pt;}
.y1_c00116{bottom:36.666667pt;}
.y17_c00116{bottom:147.842400pt;}
.y16_c00116{bottom:174.514400pt;}
.y15_c00116{bottom:201.186400pt;}
.y14_c00116{bottom:254.519733pt;}
.y13_c00116{bottom:334.487733pt;}
.y12_c00116{bottom:361.159733pt;}
.y11_c00116{bottom:387.831733pt;}
.y10_c00116{bottom:414.503733pt;}
.yf_c00116{bottom:441.175733pt;}
.ye_c00116{bottom:467.847733pt;}
.yd_c00116{bottom:494.519733pt;}
.yc_c00116{bottom:547.853067pt;}
.yb_c00116{bottom:627.810400pt;}
.ya_c00116{bottom:654.482400pt;}
.y9_c00116{bottom:681.154400pt;}
.y8_c00116{bottom:707.826400pt;}
.y7_c00116{bottom:734.498400pt;}
.y6_c00116{bottom:761.170400pt;}
.y5_c00116{bottom:787.842400pt;}
.y4_c00116{bottom:814.514400pt;}
.y3_c00116{bottom:841.186400pt;}
.y2_c00116{bottom:894.519733pt;}
.h2_c00116{height:48.000000pt;}
.h4_c00116{height:57.600000pt;}
.h3_c00116{height:69.813333pt;}
.h0_c00116{height:1122.520000pt;}
.h1_c00116{height:1122.666667pt;}
.w0_c00116{width:793.701333pt;}
.w1_c00116{width:794.000000pt;}
.x0_c00116{left:0.000000pt;}
.x2_c00116{left:80.000000pt;}
.x3_c00116{left:94.666667pt;}
.x1_c00116{left:705.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00c48efdbb3ba1620702c29c.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.160000;font-style:normal;font-weight:normal;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_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00117;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00117;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls5_c00117{letter-spacing:-0.324000px;}
.ls4_c00117{letter-spacing:0.000000px;}
.ls1_c00117{letter-spacing:0.720000px;}
.ls0_c00117{letter-spacing:0.840000px;}
.ls3_c00117{letter-spacing:1.500000px;}
.ls2_c00117{letter-spacing:1.650000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00117{word-spacing:-21.276000px;}
.ws2_c00117{word-spacing:-14.850000px;}
.ws3_c00117{word-spacing:-11.700000px;}
.ws0_c00117{word-spacing:-10.200000px;}
.ws10_c00117{word-spacing:-4.752000px;}
.ws11_c00117{word-spacing:-3.816000px;}
.wsb_c00117{word-spacing:-2.664000px;}
.ws17_c00117{word-spacing:-1.500000px;}
.ws5_c00117{word-spacing:-0.840000px;}
.wse_c00117{word-spacing:-0.720000px;}
.ws16_c00117{word-spacing:-0.216000px;}
.ws4_c00117{word-spacing:0.000000px;}
.ws14_c00117{word-spacing:0.864000px;}
.ws15_c00117{word-spacing:4.104000px;}
.ws7_c00117{word-spacing:5.688000px;}
.wsa_c00117{word-spacing:6.552000px;}
.ws13_c00117{word-spacing:6.840000px;}
.ws12_c00117{word-spacing:6.912000px;}
.ws6_c00117{word-spacing:7.848000px;}
.ws9_c00117{word-spacing:10.008000px;}
.ws8_c00117{word-spacing:11.232000px;}
.wsf_c00117{word-spacing:11.952000px;}
.wsc_c00117{word-spacing:12.744000px;}
.wsd_c00117{word-spacing:15.264000px;}
._0_c00117{margin-left:-480.337800px;}
._1_c00117{margin-left:-4.200000px;}
._3_c00117{margin-left:-2.160000px;}
._2_c00117{margin-left:-1.134000px;}
.fc3_c00117{color:rgb(32,32,32);}
.fc2_c00117{color:rgb(233,83,14);}
.fc1_c00117{color:rgb(232,86,17);}
.fc4_c00117{color:rgb(157,157,156);}
.fc0_c00117{color:rgb(60,60,59);}
.fs1_c00117{font-size:42.000000px;}
.fs0_c00117{font-size:60.000000px;}
.fs5_c00117{font-size:66.000000px;}
.fs4_c00117{font-size:72.000000px;}
.fs3_c00117{font-size:84.000000px;}
.fs2_c00117{font-size:108.000000px;}
.y0_c00117{bottom:0.000000px;}
.y1_c00117{bottom:41.250000px;}
.y18_c00117{bottom:76.286700px;}
.y17_c00117{bottom:106.292700px;}
.y16_c00117{bottom:136.298700px;}
.y15_c00117{bottom:166.304700px;}
.y14_c00117{bottom:196.310700px;}
.y13_c00117{bottom:226.316700px;}
.y12_c00117{bottom:256.322700px;}
.y11_c00117{bottom:286.328700px;}
.y10_c00117{bottom:316.334700px;}
.yf_c00117{bottom:376.334700px;}
.ye_c00117{bottom:466.322700px;}
.yd_c00117{bottom:496.328700px;}
.yc_c00117{bottom:526.334700px;}
.yb_c00117{bottom:586.334700px;}
.ya_c00117{bottom:676.298700px;}
.y9_c00117{bottom:706.304700px;}
.y1e_c00117{bottom:706.334700px;}
.y8_c00117{bottom:736.310700px;}
.y1d_c00117{bottom:736.334700px;}
.y7_c00117{bottom:766.316700px;}
.y1c_c00117{bottom:766.334700px;}
.y6_c00117{bottom:796.322700px;}
.y1b_c00117{bottom:796.334700px;}
.y5_c00117{bottom:826.328700px;}
.y1a_c00117{bottom:826.334700px;}
.y4_c00117{bottom:856.334700px;}
.y19_c00117{bottom:857.517300px;}
.y3_c00117{bottom:916.334700px;}
.y2_c00117{bottom:1006.334700px;}
.h6_c00117{height:50.292000px;}
.h2_c00117{height:54.000000px;}
.h5_c00117{height:64.800000px;}
.h4_c00117{height:78.540000px;}
.h3_c00117{height:100.980000px;}
.h0_c00117{height:1262.835000px;}
.h1_c00117{height:1263.000000px;}
.w0_c00117{width:892.914000px;}
.w1_c00117{width:893.250000px;}
.x0_c00117{left:0.000000px;}
.x2_c00117{left:82.500000px;}
.x3_c00117{left:90.000000px;}
.x4_c00117{left:106.500000px;}
.x5_c00117{left:675.611100px;}
.x1_c00117{left:791.964000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls5_c00117{letter-spacing:-0.288000pt;}
.ls4_c00117{letter-spacing:0.000000pt;}
.ls1_c00117{letter-spacing:0.640000pt;}
.ls0_c00117{letter-spacing:0.746667pt;}
.ls3_c00117{letter-spacing:1.333333pt;}
.ls2_c00117{letter-spacing:1.466667pt;}
.ws1_c00117{word-spacing:-18.912000pt;}
.ws2_c00117{word-spacing:-13.200000pt;}
.ws3_c00117{word-spacing:-10.400000pt;}
.ws0_c00117{word-spacing:-9.066667pt;}
.ws10_c00117{word-spacing:-4.224000pt;}
.ws11_c00117{word-spacing:-3.392000pt;}
.wsb_c00117{word-spacing:-2.368000pt;}
.ws17_c00117{word-spacing:-1.333333pt;}
.ws5_c00117{word-spacing:-0.746667pt;}
.wse_c00117{word-spacing:-0.640000pt;}
.ws16_c00117{word-spacing:-0.192000pt;}
.ws4_c00117{word-spacing:0.000000pt;}
.ws14_c00117{word-spacing:0.768000pt;}
.ws15_c00117{word-spacing:3.648000pt;}
.ws7_c00117{word-spacing:5.056000pt;}
.wsa_c00117{word-spacing:5.824000pt;}
.ws13_c00117{word-spacing:6.080000pt;}
.ws12_c00117{word-spacing:6.144000pt;}
.ws6_c00117{word-spacing:6.976000pt;}
.ws9_c00117{word-spacing:8.896000pt;}
.ws8_c00117{word-spacing:9.984000pt;}
.wsf_c00117{word-spacing:10.624000pt;}
.wsc_c00117{word-spacing:11.328000pt;}
.wsd_c00117{word-spacing:13.568000pt;}
._0_c00117{margin-left:-426.966933pt;}
._1_c00117{margin-left:-3.733333pt;}
._3_c00117{margin-left:-1.920000pt;}
._2_c00117{margin-left:-1.008000pt;}
.fs1_c00117{font-size:37.333333pt;}
.fs0_c00117{font-size:53.333333pt;}
.fs5_c00117{font-size:58.666667pt;}
.fs4_c00117{font-size:64.000000pt;}
.fs3_c00117{font-size:74.666667pt;}
.fs2_c00117{font-size:96.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y1_c00117{bottom:36.666667pt;}
.y18_c00117{bottom:67.810400pt;}
.y17_c00117{bottom:94.482400pt;}
.y16_c00117{bottom:121.154400pt;}
.y15_c00117{bottom:147.826400pt;}
.y14_c00117{bottom:174.498400pt;}
.y13_c00117{bottom:201.170400pt;}
.y12_c00117{bottom:227.842400pt;}
.y11_c00117{bottom:254.514400pt;}
.y10_c00117{bottom:281.186400pt;}
.yf_c00117{bottom:334.519733pt;}
.ye_c00117{bottom:414.509067pt;}
.yd_c00117{bottom:441.181067pt;}
.yc_c00117{bottom:467.853067pt;}
.yb_c00117{bottom:521.186400pt;}
.ya_c00117{bottom:601.154400pt;}
.y9_c00117{bottom:627.826400pt;}
.y1e_c00117{bottom:627.853067pt;}
.y8_c00117{bottom:654.498400pt;}
.y1d_c00117{bottom:654.519733pt;}
.y7_c00117{bottom:681.170400pt;}
.y1c_c00117{bottom:681.186400pt;}
.y6_c00117{bottom:707.842400pt;}
.y1b_c00117{bottom:707.853067pt;}
.y5_c00117{bottom:734.514400pt;}
.y1a_c00117{bottom:734.519733pt;}
.y4_c00117{bottom:761.186400pt;}
.y19_c00117{bottom:762.237600pt;}
.y3_c00117{bottom:814.519733pt;}
.y2_c00117{bottom:894.519733pt;}
.h6_c00117{height:44.704000pt;}
.h2_c00117{height:48.000000pt;}
.h5_c00117{height:57.600000pt;}
.h4_c00117{height:69.813333pt;}
.h3_c00117{height:89.760000pt;}
.h0_c00117{height:1122.520000pt;}
.h1_c00117{height:1122.666667pt;}
.w0_c00117{width:793.701333pt;}
.w1_c00117{width:794.000000pt;}
.x0_c00117{left:0.000000pt;}
.x2_c00117{left:73.333333pt;}
.x3_c00117{left:80.000000pt;}
.x4_c00117{left:94.666667pt;}
.x5_c00117{left:600.543200pt;}
.x1_c00117{left:703.968000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00118;src:url('chunks/assets/font_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.199000;font-style: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);}
.m1_c00118{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls1_c00118{letter-spacing:0.000000px;}
.ls0_c00118{letter-spacing:0.720000px;}
.ls2_c00118{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws3_c00118{word-spacing:-3.312000px;}
.wsa_c00118{word-spacing:-2.016000px;}
.ws2_c00118{word-spacing:-0.840000px;}
.ws1_c00118{word-spacing:0.000000px;}
.ws8_c00118{word-spacing:0.792000px;}
.ws6_c00118{word-spacing:2.304000px;}
.ws5_c00118{word-spacing:3.456000px;}
.ws9_c00118{word-spacing:6.552000px;}
.ws7_c00118{word-spacing:7.056000px;}
.ws4_c00118{word-spacing:9.000000px;}
._0_c00118{margin-left:-480.337200px;}
._4_c00118{margin-left:-5.760000px;}
._1_c00118{margin-left:-4.200000px;}
._2_c00118{margin-left:-3.168000px;}
._3_c00118{margin-left:-2.152800px;}
.fc2_c00118{color:rgb(32,32,32);}
.fc1_c00118{color:rgb(232,86,17);}
.fc0_c00118{color:rgb(60,60,59);}
.fs1_c00118{font-size:42.000000px;}
.fs0_c00118{font-size:60.000000px;}
.fs3_c00118{font-size:72.000000px;}
.fs2_c00118{font-size:84.000000px;}
.y0_c00118{bottom:0.000000px;}
.y1_c00118{bottom:41.250000px;}
.yd_c00118{bottom:556.322700px;}
.yc_c00118{bottom:586.328700px;}
.yb_c00118{bottom:616.334700px;}
.ya_c00118{bottom:676.334700px;}
.y9_c00118{bottom:766.298700px;}
.y8_c00118{bottom:796.304700px;}
.y7_c00118{bottom:826.310700px;}
.y6_c00118{bottom:856.316700px;}
.y5_c00118{bottom:886.322700px;}
.y4_c00118{bottom:916.328700px;}
.y3_c00118{bottom:946.334700px;}
.y2_c00118{bottom:1006.334700px;}
.h2_c00118{height:54.000000px;}
.h5_c00118{height:64.800000px;}
.h4_c00118{height:67.320000px;}
.h3_c00118{height:78.540000px;}
.h0_c00118{height:1262.835000px;}
.h1_c00118{height:1263.000000px;}
.w0_c00118{width:892.914000px;}
.w1_c00118{width:893.250000px;}
.x0_c00118{left:0.000000px;}
.x2_c00118{left:90.000000px;}
.x3_c00118{left:106.500000px;}
.x1_c00118{left:791.888850px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls1_c00118{letter-spacing:0.000000pt;}
.ls0_c00118{letter-spacing:0.640000pt;}
.ls2_c00118{letter-spacing:0.746667pt;}
.ws0_c00118{word-spacing:-9.066667pt;}
.ws3_c00118{word-spacing:-2.944000pt;}
.wsa_c00118{word-spacing:-1.792000pt;}
.ws2_c00118{word-spacing:-0.746667pt;}
.ws1_c00118{word-spacing:0.000000pt;}
.ws8_c00118{word-spacing:0.704000pt;}
.ws6_c00118{word-spacing:2.048000pt;}
.ws5_c00118{word-spacing:3.072000pt;}
.ws9_c00118{word-spacing:5.824000pt;}
.ws7_c00118{word-spacing:6.272000pt;}
.ws4_c00118{word-spacing:8.000000pt;}
._0_c00118{margin-left:-426.966400pt;}
._4_c00118{margin-left:-5.120000pt;}
._1_c00118{margin-left:-3.733333pt;}
._2_c00118{margin-left:-2.816000pt;}
._3_c00118{margin-left:-1.913600pt;}
.fs1_c00118{font-size:37.333333pt;}
.fs0_c00118{font-size:53.333333pt;}
.fs3_c00118{font-size:64.000000pt;}
.fs2_c00118{font-size:74.666667pt;}
.y0_c00118{bottom:0.000000pt;}
.y1_c00118{bottom:36.666667pt;}
.yd_c00118{bottom:494.509067pt;}
.yc_c00118{bottom:521.181067pt;}
.yb_c00118{bottom:547.853067pt;}
.ya_c00118{bottom:601.186400pt;}
.y9_c00118{bottom:681.154400pt;}
.y8_c00118{bottom:707.826400pt;}
.y7_c00118{bottom:734.498400pt;}
.y6_c00118{bottom:761.170400pt;}
.y5_c00118{bottom:787.842400pt;}
.y4_c00118{bottom:814.514400pt;}
.y3_c00118{bottom:841.186400pt;}
.y2_c00118{bottom:894.519733pt;}
.h2_c00118{height:48.000000pt;}
.h5_c00118{height:57.600000pt;}
.h4_c00118{height:59.840000pt;}
.h3_c00118{height:69.813333pt;}
.h0_c00118{height:1122.520000pt;}
.h1_c00118{height:1122.666667pt;}
.w0_c00118{width:793.701333pt;}
.w1_c00118{width:794.000000pt;}
.x0_c00118{left:0.000000pt;}
.x2_c00118{left:80.000000pt;}
.x3_c00118{left:94.666667pt;}
.x1_c00118{left:703.901200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00119;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00119;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00119;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls3_c00119{letter-spacing:-0.648000px;}
.ls2_c00119{letter-spacing:0.000000px;}
.ls0_c00119{letter-spacing:0.864000px;}
.ls1_c00119{letter-spacing:1.200000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00119{word-spacing:-11.592000px;}
.ws0_c00119{word-spacing:-10.200000px;}
.ws5_c00119{word-spacing:-3.528000px;}
.ws3_c00119{word-spacing:-3.240000px;}
.ws2_c00119{word-spacing:0.000000px;}
.ws4_c00119{word-spacing:0.648000px;}
._0_c00119{margin-left:-480.337200px;}
._3_c00119{margin-left:-12.744000px;}
._5_c00119{margin-left:-9.600000px;}
._4_c00119{margin-left:-6.480000px;}
._6_c00119{margin-left:-5.400000px;}
._1_c00119{margin-left:-4.200000px;}
._7_c00119{margin-left:-3.000000px;}
._2_c00119{margin-left:-1.440000px;}
.fc3_c00119{color:rgb(255,255,255);}
.fc2_c00119{color:rgb(233,83,14);}
.fc1_c00119{color:rgb(232,86,17);}
.fc0_c00119{color:rgb(60,60,59);}
.fs1_c00119{font-size:42.000000px;}
.fs0_c00119{font-size:60.000000px;}
.fs3_c00119{font-size:72.000000px;}
.fs4_c00119{font-size:120.000000px;}
.fs2_c00119{font-size:360.000000px;}
.y0_c00119{bottom:0.000000px;}
.y1_c00119{bottom:41.250000px;}
.y9_c00119{bottom:574.310700px;}
.y8_c00119{bottom:595.316700px;}
.y7_c00119{bottom:616.322700px;}
.y6_c00119{bottom:664.328700px;}
.y5_c00119{bottom:685.334700px;}
.y4_c00119{bottom:706.340700px;}
.y3_c00119{bottom:752.834700px;}
.yd_c00119{bottom:916.334700px;}
.yc_c00119{bottom:946.334700px;}
.yb_c00119{bottom:976.334700px;}
.ya_c00119{bottom:1006.334700px;}
.y2_c00119{bottom:1093.526700px;}
.h2_c00119{height:54.000000px;}
.h5_c00119{height:64.800000px;}
.h4_c00119{height:66.456000px;}
.h6_c00119{height:112.200000px;}
.h3_c00119{height:324.000000px;}
.h0_c00119{height:1262.835000px;}
.h1_c00119{height:1263.000000px;}
.w0_c00119{width:892.914000px;}
.w1_c00119{width:893.250000px;}
.x0_c00119{left:0.000000px;}
.x2_c00119{left:81.290250px;}
.x3_c00119{left:82.393650px;}
.x5_c00119{left:112.287450px;}
.x4_c00119{left:127.393650px;}
.x1_c00119{left:789.428850px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls3_c00119{letter-spacing:-0.576000pt;}
.ls2_c00119{letter-spacing:0.000000pt;}
.ls0_c00119{letter-spacing:0.768000pt;}
.ls1_c00119{letter-spacing:1.066667pt;}
.ws1_c00119{word-spacing:-10.304000pt;}
.ws0_c00119{word-spacing:-9.066667pt;}
.ws5_c00119{word-spacing:-3.136000pt;}
.ws3_c00119{word-spacing:-2.880000pt;}
.ws2_c00119{word-spacing:0.000000pt;}
.ws4_c00119{word-spacing:0.576000pt;}
._0_c00119{margin-left:-426.966400pt;}
._3_c00119{margin-left:-11.328000pt;}
._5_c00119{margin-left:-8.533333pt;}
._4_c00119{margin-left:-5.760000pt;}
._6_c00119{margin-left:-4.800000pt;}
._1_c00119{margin-left:-3.733333pt;}
._7_c00119{margin-left:-2.666667pt;}
._2_c00119{margin-left:-1.280000pt;}
.fs1_c00119{font-size:37.333333pt;}
.fs0_c00119{font-size:53.333333pt;}
.fs3_c00119{font-size:64.000000pt;}
.fs4_c00119{font-size:106.666667pt;}
.fs2_c00119{font-size:320.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y1_c00119{bottom:36.666667pt;}
.y9_c00119{bottom:510.498400pt;}
.y8_c00119{bottom:529.170400pt;}
.y7_c00119{bottom:547.842400pt;}
.y6_c00119{bottom:590.514400pt;}
.y5_c00119{bottom:609.186400pt;}
.y4_c00119{bottom:627.858400pt;}
.y3_c00119{bottom:669.186400pt;}
.yd_c00119{bottom:814.519733pt;}
.yc_c00119{bottom:841.186400pt;}
.yb_c00119{bottom:867.853067pt;}
.ya_c00119{bottom:894.519733pt;}
.y2_c00119{bottom:972.023733pt;}
.h2_c00119{height:48.000000pt;}
.h5_c00119{height:57.600000pt;}
.h4_c00119{height:59.072000pt;}
.h6_c00119{height:99.733333pt;}
.h3_c00119{height:288.000000pt;}
.h0_c00119{height:1122.520000pt;}
.h1_c00119{height:1122.666667pt;}
.w0_c00119{width:793.701333pt;}
.w1_c00119{width:794.000000pt;}
.x0_c00119{left:0.000000pt;}
.x2_c00119{left:72.258000pt;}
.x3_c00119{left:73.238800pt;}
.x5_c00119{left:99.811067pt;}
.x4_c00119{left:113.238800pt;}
.x1_c00119{left:701.714533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls4_c00120{letter-spacing:-0.540000px;}
.ls3_c00120{letter-spacing:0.000000px;}
.ls0_c00120{letter-spacing:0.720000px;}
.ls2_c00120{letter-spacing:1.500000px;}
.ls1_c00120{letter-spacing:1.650000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00120{word-spacing:-21.060000px;}
.ws0_c00120{word-spacing:-10.200000px;}
.ws1b_c00120{word-spacing:-1.500000px;}
.ws2_c00120{word-spacing:0.000000px;}
.wsd_c00120{word-spacing:0.072000px;}
.ws17_c00120{word-spacing:0.792000px;}
.ws18_c00120{word-spacing:1.800000px;}
.ws16_c00120{word-spacing:3.600000px;}
.ws9_c00120{word-spacing:3.672000px;}
.wsa_c00120{word-spacing:3.888000px;}
.wsf_c00120{word-spacing:4.824000px;}
.wse_c00120{word-spacing:5.328000px;}
.ws15_c00120{word-spacing:6.480000px;}
.wsc_c00120{word-spacing:6.768000px;}
.ws8_c00120{word-spacing:8.928000px;}
.ws13_c00120{word-spacing:9.072000px;}
.ws1a_c00120{word-spacing:9.360000px;}
.ws4_c00120{word-spacing:10.080000px;}
.ws14_c00120{word-spacing:10.728000px;}
.ws5_c00120{word-spacing:11.088000px;}
.ws7_c00120{word-spacing:11.952000px;}
.ws10_c00120{word-spacing:12.744000px;}
.ws3_c00120{word-spacing:13.824000px;}
.ws6_c00120{word-spacing:14.256000px;}
.ws19_c00120{word-spacing:16.056000px;}
.wsb_c00120{word-spacing:17.568000px;}
.ws12_c00120{word-spacing:18.936000px;}
.ws11_c00120{word-spacing:33.984000px;}
._0_c00120{margin-left:-480.337800px;}
._3_c00120{margin-left:-5.760000px;}
._1_c00120{margin-left:-4.200000px;}
._2_c00120{margin-left:-2.196000px;}
._4_c00120{margin-left:-1.008000px;}
.fc3_c00120{color:rgb(32,32,32);}
.fc2_c00120{color:rgb(233,83,14);}
.fc1_c00120{color:rgb(232,86,17);}
.fc4_c00120{color:rgb(157,157,156);}
.fc0_c00120{color:rgb(60,60,59);}
.fs1_c00120{font-size:42.000000px;}
.fs0_c00120{font-size:60.000000px;}
.fs4_c00120{font-size:66.000000px;}
.fs3_c00120{font-size:72.000000px;}
.fs2_c00120{font-size:108.000000px;}
.y0_c00120{bottom:0.000000px;}
.y1_c00120{bottom:41.250000px;}
.y1d_c00120{bottom:76.214700px;}
.y1c_c00120{bottom:106.220700px;}
.y1b_c00120{bottom:166.214700px;}
.y1a_c00120{bottom:196.220700px;}
.y19_c00120{bottom:226.226700px;}
.y18_c00120{bottom:256.232700px;}
.y17_c00120{bottom:286.238700px;}
.y16_c00120{bottom:316.244700px;}
.y15_c00120{bottom:346.250700px;}
.y14_c00120{bottom:376.256700px;}
.y13_c00120{bottom:406.262700px;}
.y12_c00120{bottom:466.256700px;}
.y11_c00120{bottom:496.262700px;}
.y10_c00120{bottom:526.268700px;}
.yf_c00120{bottom:556.274700px;}
.ye_c00120{bottom:586.280700px;}
.yd_c00120{bottom:616.286700px;}
.yc_c00120{bottom:646.292700px;}
.yb_c00120{bottom:676.298700px;}
.ya_c00120{bottom:706.304700px;}
.y9_c00120{bottom:736.310700px;}
.y25_c00120{bottom:736.334700px;}
.y24_c00120{bottom:766.334700px;}
.y8_c00120{bottom:796.304700px;}
.y23_c00120{bottom:796.334700px;}
.y7_c00120{bottom:826.310700px;}
.y22_c00120{bottom:826.334700px;}
.y6_c00120{bottom:856.316700px;}
.y21_c00120{bottom:856.334700px;}
.y5_c00120{bottom:886.322700px;}
.y20_c00120{bottom:886.334700px;}
.y4_c00120{bottom:916.328700px;}
.y1f_c00120{bottom:916.334700px;}
.y3_c00120{bottom:946.334700px;}
.y1e_c00120{bottom:948.227400px;}
.y2_c00120{bottom:1006.334700px;}
.h5_c00120{height:50.292000px;}
.h2_c00120{height:54.000000px;}
.h4_c00120{height:64.800000px;}
.h3_c00120{height:100.980000px;}
.h0_c00120{height:1262.835000px;}
.h1_c00120{height:1263.000000px;}
.w0_c00120{width:892.914000px;}
.w1_c00120{width:893.250000px;}
.x0_c00120{left:0.000000px;}
.x2_c00120{left:82.500000px;}
.x3_c00120{left:106.500000px;}
.x4_c00120{left:675.611100px;}
.x1_c00120{left:793.089000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls4_c00120{letter-spacing:-0.480000pt;}
.ls3_c00120{letter-spacing:0.000000pt;}
.ls0_c00120{letter-spacing:0.640000pt;}
.ls2_c00120{letter-spacing:1.333333pt;}
.ls1_c00120{letter-spacing:1.466667pt;}
.ws1_c00120{word-spacing:-18.720000pt;}
.ws0_c00120{word-spacing:-9.066667pt;}
.ws1b_c00120{word-spacing:-1.333333pt;}
.ws2_c00120{word-spacing:0.000000pt;}
.wsd_c00120{word-spacing:0.064000pt;}
.ws17_c00120{word-spacing:0.704000pt;}
.ws18_c00120{word-spacing:1.600000pt;}
.ws16_c00120{word-spacing:3.200000pt;}
.ws9_c00120{word-spacing:3.264000pt;}
.wsa_c00120{word-spacing:3.456000pt;}
.wsf_c00120{word-spacing:4.288000pt;}
.wse_c00120{word-spacing:4.736000pt;}
.ws15_c00120{word-spacing:5.760000pt;}
.wsc_c00120{word-spacing:6.016000pt;}
.ws8_c00120{word-spacing:7.936000pt;}
.ws13_c00120{word-spacing:8.064000pt;}
.ws1a_c00120{word-spacing:8.320000pt;}
.ws4_c00120{word-spacing:8.960000pt;}
.ws14_c00120{word-spacing:9.536000pt;}
.ws5_c00120{word-spacing:9.856000pt;}
.ws7_c00120{word-spacing:10.624000pt;}
.ws10_c00120{word-spacing:11.328000pt;}
.ws3_c00120{word-spacing:12.288000pt;}
.ws6_c00120{word-spacing:12.672000pt;}
.ws19_c00120{word-spacing:14.272000pt;}
.wsb_c00120{word-spacing:15.616000pt;}
.ws12_c00120{word-spacing:16.832000pt;}
.ws11_c00120{word-spacing:30.208000pt;}
._0_c00120{margin-left:-426.966933pt;}
._3_c00120{margin-left:-5.120000pt;}
._1_c00120{margin-left:-3.733333pt;}
._2_c00120{margin-left:-1.952000pt;}
._4_c00120{margin-left:-0.896000pt;}
.fs1_c00120{font-size:37.333333pt;}
.fs0_c00120{font-size:53.333333pt;}
.fs4_c00120{font-size:58.666667pt;}
.fs3_c00120{font-size:64.000000pt;}
.fs2_c00120{font-size:96.000000pt;}
.y0_c00120{bottom:0.000000pt;}
.y1_c00120{bottom:36.666667pt;}
.y1d_c00120{bottom:67.746400pt;}
.y1c_c00120{bottom:94.418400pt;}
.y1b_c00120{bottom:147.746400pt;}
.y1a_c00120{bottom:174.418400pt;}
.y19_c00120{bottom:201.090400pt;}
.y18_c00120{bottom:227.762400pt;}
.y17_c00120{bottom:254.434400pt;}
.y16_c00120{bottom:281.106400pt;}
.y15_c00120{bottom:307.778400pt;}
.y14_c00120{bottom:334.450400pt;}
.y13_c00120{bottom:361.122400pt;}
.y12_c00120{bottom:414.450400pt;}
.y11_c00120{bottom:441.122400pt;}
.y10_c00120{bottom:467.794400pt;}
.yf_c00120{bottom:494.466400pt;}
.ye_c00120{bottom:521.138400pt;}
.yd_c00120{bottom:547.810400pt;}
.yc_c00120{bottom:574.482400pt;}
.yb_c00120{bottom:601.154400pt;}
.ya_c00120{bottom:627.826400pt;}
.y9_c00120{bottom:654.498400pt;}
.y25_c00120{bottom:654.519733pt;}
.y24_c00120{bottom:681.186400pt;}
.y8_c00120{bottom:707.826400pt;}
.y23_c00120{bottom:707.853067pt;}
.y7_c00120{bottom:734.498400pt;}
.y22_c00120{bottom:734.519733pt;}
.y6_c00120{bottom:761.170400pt;}
.y21_c00120{bottom:761.186400pt;}
.y5_c00120{bottom:787.842400pt;}
.y20_c00120{bottom:787.853067pt;}
.y4_c00120{bottom:814.514400pt;}
.y1f_c00120{bottom:814.519733pt;}
.y3_c00120{bottom:841.186400pt;}
.y1e_c00120{bottom:842.868800pt;}
.y2_c00120{bottom:894.519733pt;}
.h5_c00120{height:44.704000pt;}
.h2_c00120{height:48.000000pt;}
.h4_c00120{height:57.600000pt;}
.h3_c00120{height:89.760000pt;}
.h0_c00120{height:1122.520000pt;}
.h1_c00120{height:1122.666667pt;}
.w0_c00120{width:793.701333pt;}
.w1_c00120{width:794.000000pt;}
.x0_c00120{left:0.000000pt;}
.x2_c00120{left:73.333333pt;}
.x3_c00120{left:94.666667pt;}
.x4_c00120{left:600.543200pt;}
.x1_c00120{left:704.968000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73c7dea85163a337c1490c92.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.161000;font-style: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);}
.m1_c00121{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls4_c00121{letter-spacing:-0.324000px;}
.ls3_c00121{letter-spacing:0.000000px;}
.ls0_c00121{letter-spacing:0.720000px;}
.ls2_c00121{letter-spacing:1.500000px;}
.ls1_c00121{letter-spacing:1.650000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00121{word-spacing:-21.276000px;}
.ws2_c00121{word-spacing:-14.850000px;}
.ws0_c00121{word-spacing:-10.200000px;}
.ws6_c00121{word-spacing:-8.856000px;}
.ws7_c00121{word-spacing:-4.176000px;}
.ws12_c00121{word-spacing:-2.664000px;}
.ws9_c00121{word-spacing:-1.296000px;}
.wsc_c00121{word-spacing:-1.152000px;}
.ws11_c00121{word-spacing:-1.080000px;}
.ws14_c00121{word-spacing:-0.720000px;}
.ws17_c00121{word-spacing:-0.504000px;}
.ws8_c00121{word-spacing:-0.144000px;}
.ws3_c00121{word-spacing:0.000000px;}
.ws5_c00121{word-spacing:3.816000px;}
.ws16_c00121{word-spacing:4.176000px;}
.ws15_c00121{word-spacing:5.400000px;}
.wsd_c00121{word-spacing:5.904000px;}
.ws13_c00121{word-spacing:6.048000px;}
.wsa_c00121{word-spacing:7.056000px;}
.wsf_c00121{word-spacing:7.272000px;}
.ws10_c00121{word-spacing:8.640000px;}
.wsb_c00121{word-spacing:8.928000px;}
.ws4_c00121{word-spacing:9.576000px;}
.wse_c00121{word-spacing:15.984000px;}
._0_c00121{margin-left:-480.337200px;}
._4_c00121{margin-left:-5.457600px;}
._1_c00121{margin-left:-4.200000px;}
._2_c00121{margin-left:-2.152800px;}
._5_c00121{margin-left:-1.134000px;}
._3_c00121{width:1.087200px;}
.fc3_c00121{color:rgb(233,83,14);}
.fc2_c00121{color:rgb(32,32,32);}
.fc1_c00121{color:rgb(232,86,17);}
.fc4_c00121{color:rgb(157,157,156);}
.fc0_c00121{color:rgb(60,60,59);}
.fs1_c00121{font-size:42.000000px;}
.fs0_c00121{font-size:60.000000px;}
.fs4_c00121{font-size:66.000000px;}
.fs2_c00121{font-size:72.000000px;}
.fs3_c00121{font-size:108.000000px;}
.y0_c00121{bottom:0.000000px;}
.y1_c00121{bottom:41.250000px;}
.y18_c00121{bottom:196.262700px;}
.y17_c00121{bottom:226.268700px;}
.y16_c00121{bottom:286.262700px;}
.y15_c00121{bottom:316.268700px;}
.y14_c00121{bottom:376.262700px;}
.y13_c00121{bottom:406.268700px;}
.y12_c00121{bottom:436.274700px;}
.y11_c00121{bottom:466.280700px;}
.y10_c00121{bottom:496.286700px;}
.yf_c00121{bottom:526.292700px;}
.ye_c00121{bottom:556.298700px;}
.yd_c00121{bottom:586.304700px;}
.yc_c00121{bottom:616.310700px;}
.yb_c00121{bottom:646.316700px;}
.y1e_c00121{bottom:676.334700px;}
.ya_c00121{bottom:706.310700px;}
.y1d_c00121{bottom:706.334700px;}
.y9_c00121{bottom:736.316700px;}
.y1c_c00121{bottom:736.334700px;}
.y8_c00121{bottom:766.322700px;}
.y1b_c00121{bottom:766.334700px;}
.y7_c00121{bottom:796.328700px;}
.y1a_c00121{bottom:796.334700px;}
.y6_c00121{bottom:826.334700px;}
.y19_c00121{bottom:828.777600px;}
.y5_c00121{bottom:886.334700px;}
.y4_c00121{bottom:962.822700px;}
.y3_c00121{bottom:992.828700px;}
.y2_c00121{bottom:1022.834700px;}
.h5_c00121{height:50.292000px;}
.h2_c00121{height:54.000000px;}
.h3_c00121{height:64.800000px;}
.h4_c00121{height:100.980000px;}
.h0_c00121{height:1262.835000px;}
.h1_c00121{height:1263.000000px;}
.w0_c00121{width:892.914000px;}
.w1_c00121{width:893.250000px;}
.x0_c00121{left:0.000000px;}
.x3_c00121{left:82.500000px;}
.x2_c00121{left:106.500000px;}
.x4_c00121{left:675.611100px;}
.x1_c00121{left:790.613850px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls4_c00121{letter-spacing:-0.288000pt;}
.ls3_c00121{letter-spacing:0.000000pt;}
.ls0_c00121{letter-spacing:0.640000pt;}
.ls2_c00121{letter-spacing:1.333333pt;}
.ls1_c00121{letter-spacing:1.466667pt;}
.ws1_c00121{word-spacing:-18.912000pt;}
.ws2_c00121{word-spacing:-13.200000pt;}
.ws0_c00121{word-spacing:-9.066667pt;}
.ws6_c00121{word-spacing:-7.872000pt;}
.ws7_c00121{word-spacing:-3.712000pt;}
.ws12_c00121{word-spacing:-2.368000pt;}
.ws9_c00121{word-spacing:-1.152000pt;}
.wsc_c00121{word-spacing:-1.024000pt;}
.ws11_c00121{word-spacing:-0.960000pt;}
.ws14_c00121{word-spacing:-0.640000pt;}
.ws17_c00121{word-spacing:-0.448000pt;}
.ws8_c00121{word-spacing:-0.128000pt;}
.ws3_c00121{word-spacing:0.000000pt;}
.ws5_c00121{word-spacing:3.392000pt;}
.ws16_c00121{word-spacing:3.712000pt;}
.ws15_c00121{word-spacing:4.800000pt;}
.wsd_c00121{word-spacing:5.248000pt;}
.ws13_c00121{word-spacing:5.376000pt;}
.wsa_c00121{word-spacing:6.272000pt;}
.wsf_c00121{word-spacing:6.464000pt;}
.ws10_c00121{word-spacing:7.680000pt;}
.wsb_c00121{word-spacing:7.936000pt;}
.ws4_c00121{word-spacing:8.512000pt;}
.wse_c00121{word-spacing:14.208000pt;}
._0_c00121{margin-left:-426.966400pt;}
._4_c00121{margin-left:-4.851200pt;}
._1_c00121{margin-left:-3.733333pt;}
._2_c00121{margin-left:-1.913600pt;}
._5_c00121{margin-left:-1.008000pt;}
._3_c00121{width:0.966400pt;}
.fs1_c00121{font-size:37.333333pt;}
.fs0_c00121{font-size:53.333333pt;}
.fs4_c00121{font-size:58.666667pt;}
.fs2_c00121{font-size:64.000000pt;}
.fs3_c00121{font-size:96.000000pt;}
.y0_c00121{bottom:0.000000pt;}
.y1_c00121{bottom:36.666667pt;}
.y18_c00121{bottom:174.455733pt;}
.y17_c00121{bottom:201.127733pt;}
.y16_c00121{bottom:254.455733pt;}
.y15_c00121{bottom:281.127733pt;}
.y14_c00121{bottom:334.455733pt;}
.y13_c00121{bottom:361.127733pt;}
.y12_c00121{bottom:387.799733pt;}
.y11_c00121{bottom:414.471733pt;}
.y10_c00121{bottom:441.143733pt;}
.yf_c00121{bottom:467.815733pt;}
.ye_c00121{bottom:494.487733pt;}
.yd_c00121{bottom:521.159733pt;}
.yc_c00121{bottom:547.831733pt;}
.yb_c00121{bottom:574.503733pt;}
.y1e_c00121{bottom:601.186400pt;}
.ya_c00121{bottom:627.831733pt;}
.y1d_c00121{bottom:627.853067pt;}
.y9_c00121{bottom:654.503733pt;}
.y1c_c00121{bottom:654.519733pt;}
.y8_c00121{bottom:681.175733pt;}
.y1b_c00121{bottom:681.186400pt;}
.y7_c00121{bottom:707.847733pt;}
.y1a_c00121{bottom:707.853067pt;}
.y6_c00121{bottom:734.519733pt;}
.y19_c00121{bottom:736.691200pt;}
.y5_c00121{bottom:787.853067pt;}
.y4_c00121{bottom:855.842400pt;}
.y3_c00121{bottom:882.514400pt;}
.y2_c00121{bottom:909.186400pt;}
.h5_c00121{height:44.704000pt;}
.h2_c00121{height:48.000000pt;}
.h3_c00121{height:57.600000pt;}
.h4_c00121{height:89.760000pt;}
.h0_c00121{height:1122.520000pt;}
.h1_c00121{height:1122.666667pt;}
.w0_c00121{width:793.701333pt;}
.w1_c00121{width:794.000000pt;}
.x0_c00121{left:0.000000pt;}
.x3_c00121{left:73.333333pt;}
.x2_c00121{left:94.666667pt;}
.x4_c00121{left:600.543200pt;}
.x1_c00121{left:702.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.199000;font-style: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);}
.m1_c00122{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls1_c00122{letter-spacing:0.000000px;}
.ls0_c00122{letter-spacing:0.720000px;}
.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:-10.200000px;}
.ws5_c00122{word-spacing:-1.800000px;}
.ws7_c00122{word-spacing:-1.656000px;}
.ws1_c00122{word-spacing:0.000000px;}
.ws2_c00122{word-spacing:1.584000px;}
.ws6_c00122{word-spacing:7.632000px;}
.ws4_c00122{word-spacing:12.960000px;}
.ws3_c00122{word-spacing:18.936000px;}
._0_c00122{margin-left:-480.337800px;}
._3_c00122{margin-left:-5.760000px;}
._1_c00122{margin-left:-4.200000px;}
._2_c00122{margin-left:-1.440000px;}
.fc2_c00122{color:rgb(32,32,32);}
.fc1_c00122{color:rgb(232,86,17);}
.fc0_c00122{color:rgb(60,60,59);}
.fs1_c00122{font-size:42.000000px;}
.fs0_c00122{font-size:60.000000px;}
.fs2_c00122{font-size:72.000000px;}
.y0_c00122{bottom:0.000000px;}
.y1_c00122{bottom:41.250000px;}
.ya_c00122{bottom:736.310700px;}
.y9_c00122{bottom:766.316700px;}
.y8_c00122{bottom:796.322700px;}
.y7_c00122{bottom:826.328700px;}
.y6_c00122{bottom:886.322700px;}
.y5_c00122{bottom:916.328700px;}
.y4_c00122{bottom:946.334700px;}
.y3_c00122{bottom:992.828700px;}
.y2_c00122{bottom:1022.834700px;}
.h2_c00122{height:54.000000px;}
.h3_c00122{height:64.800000px;}
.h0_c00122{height:1262.835000px;}
.h1_c00122{height:1263.000000px;}
.w0_c00122{width:892.914000px;}
.w1_c00122{width:893.250000px;}
.x0_c00122{left:0.000000px;}
.x2_c00122{left:106.500000px;}
.x1_c00122{left:790.464000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls1_c00122{letter-spacing:0.000000pt;}
.ls0_c00122{letter-spacing:0.640000pt;}
.ws0_c00122{word-spacing:-9.066667pt;}
.ws5_c00122{word-spacing:-1.600000pt;}
.ws7_c00122{word-spacing:-1.472000pt;}
.ws1_c00122{word-spacing:0.000000pt;}
.ws2_c00122{word-spacing:1.408000pt;}
.ws6_c00122{word-spacing:6.784000pt;}
.ws4_c00122{word-spacing:11.520000pt;}
.ws3_c00122{word-spacing:16.832000pt;}
._0_c00122{margin-left:-426.966933pt;}
._3_c00122{margin-left:-5.120000pt;}
._1_c00122{margin-left:-3.733333pt;}
._2_c00122{margin-left:-1.280000pt;}
.fs1_c00122{font-size:37.333333pt;}
.fs0_c00122{font-size:53.333333pt;}
.fs2_c00122{font-size:64.000000pt;}
.y0_c00122{bottom:0.000000pt;}
.y1_c00122{bottom:36.666667pt;}
.ya_c00122{bottom:654.498400pt;}
.y9_c00122{bottom:681.170400pt;}
.y8_c00122{bottom:707.842400pt;}
.y7_c00122{bottom:734.514400pt;}
.y6_c00122{bottom:787.842400pt;}
.y5_c00122{bottom:814.514400pt;}
.y4_c00122{bottom:841.186400pt;}
.y3_c00122{bottom:882.514400pt;}
.y2_c00122{bottom:909.186400pt;}
.h2_c00122{height:48.000000pt;}
.h3_c00122{height:57.600000pt;}
.h0_c00122{height:1122.520000pt;}
.h1_c00122{height:1122.666667pt;}
.w0_c00122{width:793.701333pt;}
.w1_c00122{width:794.000000pt;}
.x0_c00122{left:0.000000pt;}
.x2_c00122{left:94.666667pt;}
.x1_c00122{left:702.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00123;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:1.155000;font-style: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);}
.m1_c00123{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls2_c00123{letter-spacing:0.000000px;}
.ls0_c00123{letter-spacing:0.864000px;}
.ls1_c00123{letter-spacing:1.200000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00123{word-spacing:-13.104000px;}
.ws4_c00123{word-spacing:-11.760000px;}
.ws0_c00123{word-spacing:-10.200000px;}
.ws3_c00123{word-spacing:-2.400000px;}
.ws2_c00123{word-spacing:0.000000px;}
._0_c00123{margin-left:-480.337200px;}
._6_c00123{margin-left:-12.000000px;}
._5_c00123{margin-left:-9.000000px;}
._3_c00123{margin-left:-6.480000px;}
._1_c00123{margin-left:-4.200000px;}
._2_c00123{margin-left:-1.440000px;}
._4_c00123{width:1.680000px;}
._8_c00123{width:8.400000px;}
._7_c00123{width:12.360000px;}
.fc3_c00123{color:rgb(255,255,255);}
.fc2_c00123{color:rgb(233,83,14);}
.fc1_c00123{color:rgb(232,86,17);}
.fc0_c00123{color:rgb(60,60,59);}
.fs1_c00123{font-size:42.000000px;}
.fs0_c00123{font-size:60.000000px;}
.fs3_c00123{font-size:72.000000px;}
.fs4_c00123{font-size:120.000000px;}
.fs2_c00123{font-size:360.000000px;}
.y0_c00123{bottom:0.000000px;}
.y1_c00123{bottom:41.250000px;}
.y6_c00123{bottom:664.328700px;}
.y5_c00123{bottom:685.334700px;}
.y4_c00123{bottom:706.340700px;}
.y3_c00123{bottom:752.834700px;}
.ya_c00123{bottom:916.334700px;}
.y9_c00123{bottom:946.334700px;}
.y8_c00123{bottom:976.334700px;}
.y7_c00123{bottom:1006.334700px;}
.y2_c00123{bottom:1093.526700px;}
.h2_c00123{height:54.000000px;}
.h5_c00123{height:64.800000px;}
.h4_c00123{height:66.456000px;}
.h6_c00123{height:112.200000px;}
.h3_c00123{height:324.000000px;}
.h0_c00123{height:1262.835000px;}
.h1_c00123{height:1263.000000px;}
.w0_c00123{width:892.914000px;}
.w1_c00123{width:893.250000px;}
.x0_c00123{left:0.000000px;}
.x2_c00123{left:81.290250px;}
.x3_c00123{left:82.393650px;}
.x5_c00123{left:112.287450px;}
.x4_c00123{left:127.393650px;}
.x1_c00123{left:789.488850px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls2_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:0.768000pt;}
.ls1_c00123{letter-spacing:1.066667pt;}
.ws1_c00123{word-spacing:-11.648000pt;}
.ws4_c00123{word-spacing:-10.453333pt;}
.ws0_c00123{word-spacing:-9.066667pt;}
.ws3_c00123{word-spacing:-2.133333pt;}
.ws2_c00123{word-spacing:0.000000pt;}
._0_c00123{margin-left:-426.966400pt;}
._6_c00123{margin-left:-10.666667pt;}
._5_c00123{margin-left:-8.000000pt;}
._3_c00123{margin-left:-5.760000pt;}
._1_c00123{margin-left:-3.733333pt;}
._2_c00123{margin-left:-1.280000pt;}
._4_c00123{width:1.493333pt;}
._8_c00123{width:7.466667pt;}
._7_c00123{width:10.986667pt;}
.fs1_c00123{font-size:37.333333pt;}
.fs0_c00123{font-size:53.333333pt;}
.fs3_c00123{font-size:64.000000pt;}
.fs4_c00123{font-size:106.666667pt;}
.fs2_c00123{font-size:320.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y1_c00123{bottom:36.666667pt;}
.y6_c00123{bottom:590.514400pt;}
.y5_c00123{bottom:609.186400pt;}
.y4_c00123{bottom:627.858400pt;}
.y3_c00123{bottom:669.186400pt;}
.ya_c00123{bottom:814.519733pt;}
.y9_c00123{bottom:841.186400pt;}
.y8_c00123{bottom:867.853067pt;}
.y7_c00123{bottom:894.519733pt;}
.y2_c00123{bottom:972.023733pt;}
.h2_c00123{height:48.000000pt;}
.h5_c00123{height:57.600000pt;}
.h4_c00123{height:59.072000pt;}
.h6_c00123{height:99.733333pt;}
.h3_c00123{height:288.000000pt;}
.h0_c00123{height:1122.520000pt;}
.h1_c00123{height:1122.666667pt;}
.w0_c00123{width:793.701333pt;}
.w1_c00123{width:794.000000pt;}
.x0_c00123{left:0.000000pt;}
.x2_c00123{left:72.258000pt;}
.x3_c00123{left:73.238800pt;}
.x5_c00123{left:99.811067pt;}
.x4_c00123{left:113.238800pt;}
.x1_c00123{left:701.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00124;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00124;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls5_c00124{letter-spacing:-0.540000px;}
.ls4_c00124{letter-spacing:0.000000px;}
.ls0_c00124{letter-spacing:0.720000px;}
.ls1_c00124{letter-spacing:0.840000px;}
.ls3_c00124{letter-spacing:1.500000px;}
.ls2_c00124{letter-spacing:1.650000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00124{word-spacing:-21.060000px;}
.ws2_c00124{word-spacing:-17.640000px;}
.ws0_c00124{word-spacing:-10.200000px;}
.wsd_c00124{word-spacing:-1.728000px;}
.ws15_c00124{word-spacing:-1.680000px;}
.ws14_c00124{word-spacing:-1.500000px;}
.ws9_c00124{word-spacing:-1.440000px;}
.wse_c00124{word-spacing:-1.152000px;}
.ws4_c00124{word-spacing:-0.840000px;}
.ws8_c00124{word-spacing:-0.720000px;}
.wsa_c00124{word-spacing:-0.360000px;}
.ws3_c00124{word-spacing:0.000000px;}
.wsb_c00124{word-spacing:2.160000px;}
.wsf_c00124{word-spacing:3.024000px;}
.ws12_c00124{word-spacing:4.176000px;}
.ws7_c00124{word-spacing:4.464000px;}
.ws10_c00124{word-spacing:4.680000px;}
.wsc_c00124{word-spacing:5.976000px;}
.ws13_c00124{word-spacing:6.552000px;}
.ws11_c00124{word-spacing:8.136000px;}
.ws5_c00124{word-spacing:18.648000px;}
.ws6_c00124{word-spacing:18.936000px;}
._0_c00124{margin-left:-480.336600px;}
._1_c00124{margin-left:-4.200000px;}
._2_c00124{margin-left:-2.160000px;}
.fc3_c00124{color:rgb(32,32,32);}
.fc2_c00124{color:rgb(233,83,14);}
.fc1_c00124{color:rgb(232,86,17);}
.fc4_c00124{color:rgb(157,157,156);}
.fc0_c00124{color:rgb(60,60,59);}
.fs1_c00124{font-size:42.000000px;}
.fs0_c00124{font-size:60.000000px;}
.fs5_c00124{font-size:66.000000px;}
.fs4_c00124{font-size:72.000000px;}
.fs3_c00124{font-size:84.000000px;}
.fs2_c00124{font-size:108.000000px;}
.y0_c00124{bottom:0.000000px;}
.y1_c00124{bottom:41.250000px;}
.y16_c00124{bottom:136.286700px;}
.y15_c00124{bottom:166.292700px;}
.y14_c00124{bottom:196.298700px;}
.y13_c00124{bottom:226.304700px;}
.y12_c00124{bottom:256.310700px;}
.y11_c00124{bottom:286.316700px;}
.y10_c00124{bottom:316.322700px;}
.yf_c00124{bottom:346.328700px;}
.ye_c00124{bottom:376.334700px;}
.yd_c00124{bottom:436.334700px;}
.yc_c00124{bottom:526.316700px;}
.yb_c00124{bottom:556.322700px;}
.ya_c00124{bottom:586.328700px;}
.y9_c00124{bottom:616.334700px;}
.y8_c00124{bottom:676.334700px;}
.y1b_c00124{bottom:734.893650px;}
.y1a_c00124{bottom:764.893650px;}
.y7_c00124{bottom:766.316700px;}
.y19_c00124{bottom:794.893650px;}
.y6_c00124{bottom:796.322700px;}
.y18_c00124{bottom:824.893650px;}
.y5_c00124{bottom:826.328700px;}
.y17_c00124{bottom:854.893650px;}
.y4_c00124{bottom:856.334700px;}
.y3_c00124{bottom:916.334700px;}
.y2_c00124{bottom:1006.334700px;}
.h6_c00124{height:50.292000px;}
.h2_c00124{height:54.000000px;}
.h5_c00124{height:64.800000px;}
.h4_c00124{height:78.540000px;}
.h3_c00124{height:100.980000px;}
.h0_c00124{height:1262.835000px;}
.h1_c00124{height:1263.000000px;}
.w0_c00124{width:892.914000px;}
.w1_c00124{width:893.250000px;}
.x0_c00124{left:0.000000px;}
.x2_c00124{left:82.500000px;}
.x3_c00124{left:90.000000px;}
.x4_c00124{left:106.500000px;}
.x5_c00124{left:675.611100px;}
.x1_c00124{left:790.538700px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls5_c00124{letter-spacing:-0.480000pt;}
.ls4_c00124{letter-spacing:0.000000pt;}
.ls0_c00124{letter-spacing:0.640000pt;}
.ls1_c00124{letter-spacing:0.746667pt;}
.ls3_c00124{letter-spacing:1.333333pt;}
.ls2_c00124{letter-spacing:1.466667pt;}
.ws1_c00124{word-spacing:-18.720000pt;}
.ws2_c00124{word-spacing:-15.680000pt;}
.ws0_c00124{word-spacing:-9.066667pt;}
.wsd_c00124{word-spacing:-1.536000pt;}
.ws15_c00124{word-spacing:-1.493333pt;}
.ws14_c00124{word-spacing:-1.333333pt;}
.ws9_c00124{word-spacing:-1.280000pt;}
.wse_c00124{word-spacing:-1.024000pt;}
.ws4_c00124{word-spacing:-0.746667pt;}
.ws8_c00124{word-spacing:-0.640000pt;}
.wsa_c00124{word-spacing:-0.320000pt;}
.ws3_c00124{word-spacing:0.000000pt;}
.wsb_c00124{word-spacing:1.920000pt;}
.wsf_c00124{word-spacing:2.688000pt;}
.ws12_c00124{word-spacing:3.712000pt;}
.ws7_c00124{word-spacing:3.968000pt;}
.ws10_c00124{word-spacing:4.160000pt;}
.wsc_c00124{word-spacing:5.312000pt;}
.ws13_c00124{word-spacing:5.824000pt;}
.ws11_c00124{word-spacing:7.232000pt;}
.ws5_c00124{word-spacing:16.576000pt;}
.ws6_c00124{word-spacing:16.832000pt;}
._0_c00124{margin-left:-426.965867pt;}
._1_c00124{margin-left:-3.733333pt;}
._2_c00124{margin-left:-1.920000pt;}
.fs1_c00124{font-size:37.333333pt;}
.fs0_c00124{font-size:53.333333pt;}
.fs5_c00124{font-size:58.666667pt;}
.fs4_c00124{font-size:64.000000pt;}
.fs3_c00124{font-size:74.666667pt;}
.fs2_c00124{font-size:96.000000pt;}
.y0_c00124{bottom:0.000000pt;}
.y1_c00124{bottom:36.666667pt;}
.y16_c00124{bottom:121.143733pt;}
.y15_c00124{bottom:147.815733pt;}
.y14_c00124{bottom:174.487733pt;}
.y13_c00124{bottom:201.159733pt;}
.y12_c00124{bottom:227.831733pt;}
.y11_c00124{bottom:254.503733pt;}
.y10_c00124{bottom:281.175733pt;}
.yf_c00124{bottom:307.847733pt;}
.ye_c00124{bottom:334.519733pt;}
.yd_c00124{bottom:387.853067pt;}
.yc_c00124{bottom:467.837067pt;}
.yb_c00124{bottom:494.509067pt;}
.ya_c00124{bottom:521.181067pt;}
.y9_c00124{bottom:547.853067pt;}
.y8_c00124{bottom:601.186400pt;}
.y1b_c00124{bottom:653.238800pt;}
.y1a_c00124{bottom:679.905467pt;}
.y7_c00124{bottom:681.170400pt;}
.y19_c00124{bottom:706.572133pt;}
.y6_c00124{bottom:707.842400pt;}
.y18_c00124{bottom:733.238800pt;}
.y5_c00124{bottom:734.514400pt;}
.y17_c00124{bottom:759.905467pt;}
.y4_c00124{bottom:761.186400pt;}
.y3_c00124{bottom:814.519733pt;}
.y2_c00124{bottom:894.519733pt;}
.h6_c00124{height:44.704000pt;}
.h2_c00124{height:48.000000pt;}
.h5_c00124{height:57.600000pt;}
.h4_c00124{height:69.813333pt;}
.h3_c00124{height:89.760000pt;}
.h0_c00124{height:1122.520000pt;}
.h1_c00124{height:1122.666667pt;}
.w0_c00124{width:793.701333pt;}
.w1_c00124{width:794.000000pt;}
.x0_c00124{left:0.000000pt;}
.x2_c00124{left:73.333333pt;}
.x3_c00124{left:80.000000pt;}
.x4_c00124{left:94.666667pt;}
.x5_c00124{left:600.543200pt;}
.x1_c00124{left:702.701067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.199000;font-style: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);}
.m1_c00125{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls1_c00125{letter-spacing:0.000000px;}
.ls0_c00125{letter-spacing:0.720000px;}
.ls2_c00125{letter-spacing:0.840000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00125{word-spacing:-10.200000px;}
.ws6_c00125{word-spacing:-3.456000px;}
.wsb_c00125{word-spacing:-1.296000px;}
.ws2_c00125{word-spacing:-0.840000px;}
.wsd_c00125{word-spacing:-0.576000px;}
.ws1_c00125{word-spacing:0.000000px;}
.ws9_c00125{word-spacing:0.648000px;}
.wsc_c00125{word-spacing:1.296000px;}
.wsa_c00125{word-spacing:1.368000px;}
.ws4_c00125{word-spacing:1.440000px;}
.ws5_c00125{word-spacing:2.160000px;}
.ws8_c00125{word-spacing:4.536000px;}
.ws7_c00125{word-spacing:5.112000px;}
.ws3_c00125{word-spacing:9.144000px;}
._0_c00125{margin-left:-480.337200px;}
._3_c00125{margin-left:-5.256000px;}
._1_c00125{margin-left:-4.200000px;}
._2_c00125{margin-left:-1.432800px;}
.fc2_c00125{color:rgb(32,32,32);}
.fc1_c00125{color:rgb(232,86,17);}
.fc0_c00125{color:rgb(60,60,59);}
.fs1_c00125{font-size:42.000000px;}
.fs0_c00125{font-size:60.000000px;}
.fs3_c00125{font-size:72.000000px;}
.fs2_c00125{font-size:84.000000px;}
.y0_c00125{bottom:0.000000px;}
.y1_c00125{bottom:41.250000px;}
.y10_c00125{bottom:466.286700px;}
.yf_c00125{bottom:496.292700px;}
.ye_c00125{bottom:526.298700px;}
.yd_c00125{bottom:556.304700px;}
.yc_c00125{bottom:586.310700px;}
.yb_c00125{bottom:616.316700px;}
.ya_c00125{bottom:646.322700px;}
.y9_c00125{bottom:676.328700px;}
.y8_c00125{bottom:706.334700px;}
.y7_c00125{bottom:766.334700px;}
.y6_c00125{bottom:856.316700px;}
.y5_c00125{bottom:886.322700px;}
.y4_c00125{bottom:916.328700px;}
.y3_c00125{bottom:946.334700px;}
.y2_c00125{bottom:1006.334700px;}
.h2_c00125{height:54.000000px;}
.h4_c00125{height:64.800000px;}
.h3_c00125{height:78.540000px;}
.h0_c00125{height:1262.835000px;}
.h1_c00125{height:1263.000000px;}
.w0_c00125{width:892.914000px;}
.w1_c00125{width:893.250000px;}
.x0_c00125{left:0.000000px;}
.x2_c00125{left:90.000000px;}
.x3_c00125{left:106.500000px;}
.x1_c00125{left:789.413850px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls1_c00125{letter-spacing:0.000000pt;}
.ls0_c00125{letter-spacing:0.640000pt;}
.ls2_c00125{letter-spacing:0.746667pt;}
.ws0_c00125{word-spacing:-9.066667pt;}
.ws6_c00125{word-spacing:-3.072000pt;}
.wsb_c00125{word-spacing:-1.152000pt;}
.ws2_c00125{word-spacing:-0.746667pt;}
.wsd_c00125{word-spacing:-0.512000pt;}
.ws1_c00125{word-spacing:0.000000pt;}
.ws9_c00125{word-spacing:0.576000pt;}
.wsc_c00125{word-spacing:1.152000pt;}
.wsa_c00125{word-spacing:1.216000pt;}
.ws4_c00125{word-spacing:1.280000pt;}
.ws5_c00125{word-spacing:1.920000pt;}
.ws8_c00125{word-spacing:4.032000pt;}
.ws7_c00125{word-spacing:4.544000pt;}
.ws3_c00125{word-spacing:8.128000pt;}
._0_c00125{margin-left:-426.966400pt;}
._3_c00125{margin-left:-4.672000pt;}
._1_c00125{margin-left:-3.733333pt;}
._2_c00125{margin-left:-1.273600pt;}
.fs1_c00125{font-size:37.333333pt;}
.fs0_c00125{font-size:53.333333pt;}
.fs3_c00125{font-size:64.000000pt;}
.fs2_c00125{font-size:74.666667pt;}
.y0_c00125{bottom:0.000000pt;}
.y1_c00125{bottom:36.666667pt;}
.y10_c00125{bottom:414.477067pt;}
.yf_c00125{bottom:441.149067pt;}
.ye_c00125{bottom:467.821067pt;}
.yd_c00125{bottom:494.493067pt;}
.yc_c00125{bottom:521.165067pt;}
.yb_c00125{bottom:547.837067pt;}
.ya_c00125{bottom:574.509067pt;}
.y9_c00125{bottom:601.181067pt;}
.y8_c00125{bottom:627.853067pt;}
.y7_c00125{bottom:681.186400pt;}
.y6_c00125{bottom:761.170400pt;}
.y5_c00125{bottom:787.842400pt;}
.y4_c00125{bottom:814.514400pt;}
.y3_c00125{bottom:841.186400pt;}
.y2_c00125{bottom:894.519733pt;}
.h2_c00125{height:48.000000pt;}
.h4_c00125{height:57.600000pt;}
.h3_c00125{height:69.813333pt;}
.h0_c00125{height:1122.520000pt;}
.h1_c00125{height:1122.666667pt;}
.w0_c00125{width:793.701333pt;}
.w1_c00125{width:794.000000pt;}
.x0_c00125{left:0.000000pt;}
.x2_c00125{left:80.000000pt;}
.x3_c00125{left:94.666667pt;}
.x1_c00125{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00126;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00126;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.161000;font-style: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);}
.m1_c00126{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls5_c00126{letter-spacing:-0.324000px;}
.ls4_c00126{letter-spacing:0.000000px;}
.ls0_c00126{letter-spacing:0.720000px;}
.ls1_c00126{letter-spacing:0.840000px;}
.ls3_c00126{letter-spacing:1.500000px;}
.ls2_c00126{letter-spacing:1.650000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00126{word-spacing:-21.276000px;}
.ws2_c00126{word-spacing:-17.640000px;}
.ws3_c00126{word-spacing:-14.850000px;}
.ws0_c00126{word-spacing:-10.200000px;}
.ws11_c00126{word-spacing:-3.312000px;}
.ws8_c00126{word-spacing:-2.376000px;}
.ws6_c00126{word-spacing:-1.800000px;}
.ws12_c00126{word-spacing:-1.500000px;}
.ws5_c00126{word-spacing:-0.840000px;}
.ws4_c00126{word-spacing:0.000000px;}
.wsc_c00126{word-spacing:0.504000px;}
.ws10_c00126{word-spacing:1.008000px;}
.ws7_c00126{word-spacing:3.888000px;}
.wsb_c00126{word-spacing:5.472000px;}
.wsd_c00126{word-spacing:5.688000px;}
.wsf_c00126{word-spacing:6.552000px;}
.wse_c00126{word-spacing:7.056000px;}
.wsa_c00126{word-spacing:9.432000px;}
.ws9_c00126{word-spacing:11.376000px;}
._0_c00126{margin-left:-480.336600px;}
._1_c00126{margin-left:-4.200000px;}
._3_c00126{margin-left:-2.350800px;}
._2_c00126{margin-left:-1.134000px;}
.fc5_c00126{color:rgb(31,31,31);}
.fc3_c00126{color:rgb(32,32,32);}
.fc2_c00126{color:rgb(233,83,14);}
.fc1_c00126{color:rgb(232,86,17);}
.fc4_c00126{color:rgb(157,157,156);}
.fc0_c00126{color:rgb(60,60,59);}
.fs1_c00126{font-size:42.000000px;}
.fs0_c00126{font-size:60.000000px;}
.fs5_c00126{font-size:66.000000px;}
.fs4_c00126{font-size:72.000000px;}
.fs3_c00126{font-size:84.000000px;}
.fs2_c00126{font-size:108.000000px;}
.y0_c00126{bottom:0.000000px;}
.y1_c00126{bottom:41.250000px;}
.y14_c00126{bottom:196.292700px;}
.y13_c00126{bottom:226.298700px;}
.y12_c00126{bottom:256.304700px;}
.y11_c00126{bottom:286.310700px;}
.y10_c00126{bottom:316.316700px;}
.yf_c00126{bottom:346.322700px;}
.ye_c00126{bottom:376.328700px;}
.yd_c00126{bottom:406.334700px;}
.yc_c00126{bottom:466.334700px;}
.yb_c00126{bottom:556.316700px;}
.ya_c00126{bottom:586.322700px;}
.y9_c00126{bottom:616.328700px;}
.y8_c00126{bottom:646.334700px;}
.y7_c00126{bottom:706.334700px;}
.y18_c00126{bottom:736.334700px;}
.y17_c00126{bottom:766.334700px;}
.y6_c00126{bottom:796.322700px;}
.y16_c00126{bottom:796.334700px;}
.y5_c00126{bottom:826.328700px;}
.y15_c00126{bottom:854.893650px;}
.y4_c00126{bottom:856.334700px;}
.y3_c00126{bottom:916.334700px;}
.y2_c00126{bottom:1006.334700px;}
.h6_c00126{height:50.292000px;}
.h2_c00126{height:54.000000px;}
.h5_c00126{height:64.800000px;}
.h4_c00126{height:78.540000px;}
.h3_c00126{height:100.980000px;}
.h0_c00126{height:1262.835000px;}
.h1_c00126{height:1263.000000px;}
.w0_c00126{width:892.914000px;}
.w1_c00126{width:893.250000px;}
.x0_c00126{left:0.000000px;}
.x2_c00126{left:82.500000px;}
.x3_c00126{left:90.000000px;}
.x4_c00126{left:106.500000px;}
.x5_c00126{left:675.611100px;}
.x1_c00126{left:791.513700px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls5_c00126{letter-spacing:-0.288000pt;}
.ls4_c00126{letter-spacing:0.000000pt;}
.ls0_c00126{letter-spacing:0.640000pt;}
.ls1_c00126{letter-spacing:0.746667pt;}
.ls3_c00126{letter-spacing:1.333333pt;}
.ls2_c00126{letter-spacing:1.466667pt;}
.ws1_c00126{word-spacing:-18.912000pt;}
.ws2_c00126{word-spacing:-15.680000pt;}
.ws3_c00126{word-spacing:-13.200000pt;}
.ws0_c00126{word-spacing:-9.066667pt;}
.ws11_c00126{word-spacing:-2.944000pt;}
.ws8_c00126{word-spacing:-2.112000pt;}
.ws6_c00126{word-spacing:-1.600000pt;}
.ws12_c00126{word-spacing:-1.333333pt;}
.ws5_c00126{word-spacing:-0.746667pt;}
.ws4_c00126{word-spacing:0.000000pt;}
.wsc_c00126{word-spacing:0.448000pt;}
.ws10_c00126{word-spacing:0.896000pt;}
.ws7_c00126{word-spacing:3.456000pt;}
.wsb_c00126{word-spacing:4.864000pt;}
.wsd_c00126{word-spacing:5.056000pt;}
.wsf_c00126{word-spacing:5.824000pt;}
.wse_c00126{word-spacing:6.272000pt;}
.wsa_c00126{word-spacing:8.384000pt;}
.ws9_c00126{word-spacing:10.112000pt;}
._0_c00126{margin-left:-426.965867pt;}
._1_c00126{margin-left:-3.733333pt;}
._3_c00126{margin-left:-2.089600pt;}
._2_c00126{margin-left:-1.008000pt;}
.fs1_c00126{font-size:37.333333pt;}
.fs0_c00126{font-size:53.333333pt;}
.fs5_c00126{font-size:58.666667pt;}
.fs4_c00126{font-size:64.000000pt;}
.fs3_c00126{font-size:74.666667pt;}
.fs2_c00126{font-size:96.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.y1_c00126{bottom:36.666667pt;}
.y14_c00126{bottom:174.482400pt;}
.y13_c00126{bottom:201.154400pt;}
.y12_c00126{bottom:227.826400pt;}
.y11_c00126{bottom:254.498400pt;}
.y10_c00126{bottom:281.170400pt;}
.yf_c00126{bottom:307.842400pt;}
.ye_c00126{bottom:334.514400pt;}
.yd_c00126{bottom:361.186400pt;}
.yc_c00126{bottom:414.519733pt;}
.yb_c00126{bottom:494.503733pt;}
.ya_c00126{bottom:521.175733pt;}
.y9_c00126{bottom:547.847733pt;}
.y8_c00126{bottom:574.519733pt;}
.y7_c00126{bottom:627.853067pt;}
.y18_c00126{bottom:654.519733pt;}
.y17_c00126{bottom:681.186400pt;}
.y6_c00126{bottom:707.842400pt;}
.y16_c00126{bottom:707.853067pt;}
.y5_c00126{bottom:734.514400pt;}
.y15_c00126{bottom:759.905467pt;}
.y4_c00126{bottom:761.186400pt;}
.y3_c00126{bottom:814.519733pt;}
.y2_c00126{bottom:894.519733pt;}
.h6_c00126{height:44.704000pt;}
.h2_c00126{height:48.000000pt;}
.h5_c00126{height:57.600000pt;}
.h4_c00126{height:69.813333pt;}
.h3_c00126{height:89.760000pt;}
.h0_c00126{height:1122.520000pt;}
.h1_c00126{height:1122.666667pt;}
.w0_c00126{width:793.701333pt;}
.w1_c00126{width:794.000000pt;}
.x0_c00126{left:0.000000pt;}
.x2_c00126{left:73.333333pt;}
.x3_c00126{left:80.000000pt;}
.x4_c00126{left:94.666667pt;}
.x5_c00126{left:600.543200pt;}
.x1_c00126{left:703.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.199000;font-style: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);}
.m1_c00127{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls1_c00127{letter-spacing:0.000000px;}
.ls0_c00127{letter-spacing:0.720000px;}
.ls2_c00127{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws7_c00127{word-spacing:-3.744000px;}
.wsc_c00127{word-spacing:-1.944000px;}
.ws9_c00127{word-spacing:-1.872000px;}
.ws6_c00127{word-spacing:-1.224000px;}
.ws2_c00127{word-spacing:-0.840000px;}
.ws3_c00127{word-spacing:-0.072000px;}
.ws1_c00127{word-spacing:0.000000px;}
.ws4_c00127{word-spacing:0.288000px;}
.wsb_c00127{word-spacing:0.720000px;}
.wsa_c00127{word-spacing:3.456000px;}
.ws8_c00127{word-spacing:5.760000px;}
.ws5_c00127{word-spacing:11.088000px;}
._0_c00127{margin-left:-480.337200px;}
._3_c00127{margin-left:-6.472800px;}
._1_c00127{margin-left:-4.200000px;}
._2_c00127{margin-left:-1.440000px;}
.fc2_c00127{color:rgb(32,32,32);}
.fc1_c00127{color:rgb(232,86,17);}
.fc0_c00127{color:rgb(60,60,59);}
.fs1_c00127{font-size:42.000000px;}
.fs0_c00127{font-size:60.000000px;}
.fs3_c00127{font-size:72.000000px;}
.fs2_c00127{font-size:84.000000px;}
.y0_c00127{bottom:0.000000px;}
.y1_c00127{bottom:41.250000px;}
.yf_c00127{bottom:496.292700px;}
.ye_c00127{bottom:526.298700px;}
.yd_c00127{bottom:556.304700px;}
.yc_c00127{bottom:586.310700px;}
.yb_c00127{bottom:616.316700px;}
.ya_c00127{bottom:646.322700px;}
.y9_c00127{bottom:676.328700px;}
.y8_c00127{bottom:706.334700px;}
.y7_c00127{bottom:766.334700px;}
.y6_c00127{bottom:856.316700px;}
.y5_c00127{bottom:886.322700px;}
.y4_c00127{bottom:916.328700px;}
.y3_c00127{bottom:946.334700px;}
.y2_c00127{bottom:1006.334700px;}
.h2_c00127{height:54.000000px;}
.h4_c00127{height:64.800000px;}
.h3_c00127{height:78.540000px;}
.h0_c00127{height:1262.835000px;}
.h1_c00127{height:1263.000000px;}
.w0_c00127{width:892.914000px;}
.w1_c00127{width:893.250000px;}
.x0_c00127{left:0.000000px;}
.x2_c00127{left:90.000000px;}
.x3_c00127{left:106.500000px;}
.x1_c00127{left:789.488850px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls1_c00127{letter-spacing:0.000000pt;}
.ls0_c00127{letter-spacing:0.640000pt;}
.ls2_c00127{letter-spacing:0.746667pt;}
.ws0_c00127{word-spacing:-9.066667pt;}
.ws7_c00127{word-spacing:-3.328000pt;}
.wsc_c00127{word-spacing:-1.728000pt;}
.ws9_c00127{word-spacing:-1.664000pt;}
.ws6_c00127{word-spacing:-1.088000pt;}
.ws2_c00127{word-spacing:-0.746667pt;}
.ws3_c00127{word-spacing:-0.064000pt;}
.ws1_c00127{word-spacing:0.000000pt;}
.ws4_c00127{word-spacing:0.256000pt;}
.wsb_c00127{word-spacing:0.640000pt;}
.wsa_c00127{word-spacing:3.072000pt;}
.ws8_c00127{word-spacing:5.120000pt;}
.ws5_c00127{word-spacing:9.856000pt;}
._0_c00127{margin-left:-426.966400pt;}
._3_c00127{margin-left:-5.753600pt;}
._1_c00127{margin-left:-3.733333pt;}
._2_c00127{margin-left:-1.280000pt;}
.fs1_c00127{font-size:37.333333pt;}
.fs0_c00127{font-size:53.333333pt;}
.fs3_c00127{font-size:64.000000pt;}
.fs2_c00127{font-size:74.666667pt;}
.y0_c00127{bottom:0.000000pt;}
.y1_c00127{bottom:36.666667pt;}
.yf_c00127{bottom:441.149067pt;}
.ye_c00127{bottom:467.821067pt;}
.yd_c00127{bottom:494.493067pt;}
.yc_c00127{bottom:521.165067pt;}
.yb_c00127{bottom:547.837067pt;}
.ya_c00127{bottom:574.509067pt;}
.y9_c00127{bottom:601.181067pt;}
.y8_c00127{bottom:627.853067pt;}
.y7_c00127{bottom:681.186400pt;}
.y6_c00127{bottom:761.170400pt;}
.y5_c00127{bottom:787.842400pt;}
.y4_c00127{bottom:814.514400pt;}
.y3_c00127{bottom:841.186400pt;}
.y2_c00127{bottom:894.519733pt;}
.h2_c00127{height:48.000000pt;}
.h4_c00127{height:57.600000pt;}
.h3_c00127{height:69.813333pt;}
.h0_c00127{height:1122.520000pt;}
.h1_c00127{height:1122.666667pt;}
.w0_c00127{width:793.701333pt;}
.w1_c00127{width:794.000000pt;}
.x0_c00127{left:0.000000pt;}
.x2_c00127{left:80.000000pt;}
.x3_c00127{left:94.666667pt;}
.x1_c00127{left:701.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00128;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;line-height:1.155000;font-style: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);}
.m1_c00128{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls2_c00128{letter-spacing:0.000000px;}
.ls0_c00128{letter-spacing:0.864000px;}
.ls1_c00128{letter-spacing:1.200000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00128{word-spacing:-13.104000px;}
.ws0_c00128{word-spacing:-10.200000px;}
.ws3_c00128{word-spacing:-0.864000px;}
.ws2_c00128{word-spacing:0.000000px;}
._0_c00128{margin-left:-480.337200px;}
._5_c00128{margin-left:-9.600000px;}
._3_c00128{margin-left:-6.480000px;}
._1_c00128{margin-left:-4.200000px;}
._4_c00128{margin-left:-2.760000px;}
._2_c00128{margin-left:-1.440000px;}
.fc3_c00128{color:rgb(255,255,255);}
.fc2_c00128{color:rgb(233,83,14);}
.fc1_c00128{color:rgb(232,86,17);}
.fc0_c00128{color:rgb(60,60,59);}
.fs1_c00128{font-size:42.000000px;}
.fs0_c00128{font-size:60.000000px;}
.fs3_c00128{font-size:72.000000px;}
.fs4_c00128{font-size:120.000000px;}
.fs2_c00128{font-size:360.000000px;}
.y0_c00128{bottom:0.000000px;}
.y1_c00128{bottom:41.250000px;}
.y9_c00128{bottom:574.310700px;}
.y8_c00128{bottom:595.316700px;}
.y7_c00128{bottom:616.322700px;}
.y6_c00128{bottom:664.328700px;}
.y5_c00128{bottom:685.334700px;}
.y4_c00128{bottom:706.340700px;}
.y3_c00128{bottom:752.834700px;}
.yf_c00128{bottom:856.334700px;}
.ye_c00128{bottom:886.334700px;}
.yd_c00128{bottom:916.334700px;}
.yc_c00128{bottom:946.334700px;}
.yb_c00128{bottom:976.334700px;}
.ya_c00128{bottom:1006.334700px;}
.y2_c00128{bottom:1093.526700px;}
.h2_c00128{height:54.000000px;}
.h5_c00128{height:64.800000px;}
.h4_c00128{height:66.456000px;}
.h6_c00128{height:112.200000px;}
.h3_c00128{height:324.000000px;}
.h0_c00128{height:1262.835000px;}
.h1_c00128{height:1263.000000px;}
.w0_c00128{width:892.914000px;}
.w1_c00128{width:893.250000px;}
.x0_c00128{left:0.000000px;}
.x2_c00128{left:81.290250px;}
.x3_c00128{left:82.393650px;}
.x5_c00128{left:112.287450px;}
.x4_c00128{left:127.393650px;}
.x1_c00128{left:789.413850px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls2_c00128{letter-spacing:0.000000pt;}
.ls0_c00128{letter-spacing:0.768000pt;}
.ls1_c00128{letter-spacing:1.066667pt;}
.ws1_c00128{word-spacing:-11.648000pt;}
.ws0_c00128{word-spacing:-9.066667pt;}
.ws3_c00128{word-spacing:-0.768000pt;}
.ws2_c00128{word-spacing:0.000000pt;}
._0_c00128{margin-left:-426.966400pt;}
._5_c00128{margin-left:-8.533333pt;}
._3_c00128{margin-left:-5.760000pt;}
._1_c00128{margin-left:-3.733333pt;}
._4_c00128{margin-left:-2.453333pt;}
._2_c00128{margin-left:-1.280000pt;}
.fs1_c00128{font-size:37.333333pt;}
.fs0_c00128{font-size:53.333333pt;}
.fs3_c00128{font-size:64.000000pt;}
.fs4_c00128{font-size:106.666667pt;}
.fs2_c00128{font-size:320.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y1_c00128{bottom:36.666667pt;}
.y9_c00128{bottom:510.498400pt;}
.y8_c00128{bottom:529.170400pt;}
.y7_c00128{bottom:547.842400pt;}
.y6_c00128{bottom:590.514400pt;}
.y5_c00128{bottom:609.186400pt;}
.y4_c00128{bottom:627.858400pt;}
.y3_c00128{bottom:669.186400pt;}
.yf_c00128{bottom:761.186400pt;}
.ye_c00128{bottom:787.853067pt;}
.yd_c00128{bottom:814.519733pt;}
.yc_c00128{bottom:841.186400pt;}
.yb_c00128{bottom:867.853067pt;}
.ya_c00128{bottom:894.519733pt;}
.y2_c00128{bottom:972.023733pt;}
.h2_c00128{height:48.000000pt;}
.h5_c00128{height:57.600000pt;}
.h4_c00128{height:59.072000pt;}
.h6_c00128{height:99.733333pt;}
.h3_c00128{height:288.000000pt;}
.h0_c00128{height:1122.520000pt;}
.h1_c00128{height:1122.666667pt;}
.w0_c00128{width:793.701333pt;}
.w1_c00128{width:794.000000pt;}
.x0_c00128{left:0.000000pt;}
.x2_c00128{left:72.258000pt;}
.x3_c00128{left:73.238800pt;}
.x5_c00128{left:99.811067pt;}
.x4_c00128{left:113.238800pt;}
.x1_c00128{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09b0d261b275ce16e922129a.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00129;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00129;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.161000;font-style: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);}
.m1_c00129{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls4_c00129{letter-spacing:-0.540000px;}
.ls3_c00129{letter-spacing:0.000000px;}
.ls0_c00129{letter-spacing:0.720000px;}
.ls2_c00129{letter-spacing:1.500000px;}
.ls1_c00129{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00129{word-spacing:-21.060000px;}
.ws0_c00129{word-spacing:-10.200000px;}
.ws11_c00129{word-spacing:-6.120000px;}
.wsa_c00129{word-spacing:-5.616000px;}
.wsb_c00129{word-spacing:-2.952000px;}
.ws1d_c00129{word-spacing:-1.500000px;}
.ws15_c00129{word-spacing:-0.576000px;}
.ws14_c00129{word-spacing:-0.360000px;}
.wsf_c00129{word-spacing:-0.216000px;}
.ws2_c00129{word-spacing:0.000000px;}
.ws8_c00129{word-spacing:1.728000px;}
.ws1b_c00129{word-spacing:2.016000px;}
.ws17_c00129{word-spacing:2.232000px;}
.wsc_c00129{word-spacing:2.304000px;}
.ws1a_c00129{word-spacing:3.168000px;}
.ws10_c00129{word-spacing:3.384000px;}
.ws1c_c00129{word-spacing:3.456000px;}
.wsd_c00129{word-spacing:3.744000px;}
.ws9_c00129{word-spacing:3.960000px;}
.ws3_c00129{word-spacing:4.824000px;}
.ws12_c00129{word-spacing:6.120000px;}
.ws4_c00129{word-spacing:6.912000px;}
.ws16_c00129{word-spacing:8.928000px;}
.ws5_c00129{word-spacing:9.000000px;}
.wse_c00129{word-spacing:11.160000px;}
.ws18_c00129{word-spacing:11.664000px;}
.ws7_c00129{word-spacing:13.608000px;}
.ws19_c00129{word-spacing:14.112000px;}
.ws13_c00129{word-spacing:16.632000px;}
.ws6_c00129{word-spacing:18.432000px;}
._0_c00129{margin-left:-480.337800px;}
._4_c00129{margin-left:-7.154400px;}
._7_c00129{margin-left:-5.599200px;}
._1_c00129{margin-left:-4.200000px;}
._3_c00129{margin-left:-2.808000px;}
._2_c00129{margin-left:-1.440000px;}
._5_c00129{width:1.188000px;}
._6_c00129{width:3.758400px;}
._8_c00129{width:5.810400px;}
.fc3_c00129{color:rgb(32,32,32);}
.fc2_c00129{color:rgb(233,83,14);}
.fc1_c00129{color:rgb(232,86,17);}
.fc4_c00129{color:rgb(157,157,156);}
.fc0_c00129{color:rgb(60,60,59);}
.fs1_c00129{font-size:42.000000px;}
.fs0_c00129{font-size:60.000000px;}
.fs4_c00129{font-size:66.000000px;}
.fs3_c00129{font-size:72.000000px;}
.fs2_c00129{font-size:108.000000px;}
.y0_c00129{bottom:0.000000px;}
.y1_c00129{bottom:41.250000px;}
.y1e_c00129{bottom:106.184700px;}
.y1d_c00129{bottom:136.190700px;}
.y1c_c00129{bottom:166.196700px;}
.y1b_c00129{bottom:196.202700px;}
.y1a_c00129{bottom:226.208700px;}
.y19_c00129{bottom:256.214700px;}
.y18_c00129{bottom:286.220700px;}
.y17_c00129{bottom:316.226700px;}
.y16_c00129{bottom:346.232700px;}
.y15_c00129{bottom:376.238700px;}
.y14_c00129{bottom:406.244700px;}
.y13_c00129{bottom:436.250700px;}
.y12_c00129{bottom:466.256700px;}
.y11_c00129{bottom:496.262700px;}
.y10_c00129{bottom:526.268700px;}
.yf_c00129{bottom:556.274700px;}
.ye_c00129{bottom:586.280700px;}
.yd_c00129{bottom:616.286700px;}
.yc_c00129{bottom:676.280700px;}
.yb_c00129{bottom:706.286700px;}
.ya_c00129{bottom:736.292700px;}
.y9_c00129{bottom:766.298700px;}
.y8_c00129{bottom:796.304700px;}
.y7_c00129{bottom:826.310700px;}
.y23_c00129{bottom:826.334700px;}
.y6_c00129{bottom:856.316700px;}
.y22_c00129{bottom:856.334700px;}
.y5_c00129{bottom:886.322700px;}
.y21_c00129{bottom:886.334700px;}
.y4_c00129{bottom:916.328700px;}
.y20_c00129{bottom:916.334700px;}
.y3_c00129{bottom:946.334700px;}
.y1f_c00129{bottom:948.082650px;}
.y2_c00129{bottom:1006.334700px;}
.h5_c00129{height:50.292000px;}
.h2_c00129{height:54.000000px;}
.h4_c00129{height:64.800000px;}
.h3_c00129{height:100.980000px;}
.h0_c00129{height:1262.835000px;}
.h1_c00129{height:1263.000000px;}
.w0_c00129{width:892.914000px;}
.w1_c00129{width:893.250000px;}
.x0_c00129{left:0.000000px;}
.x2_c00129{left:82.500000px;}
.x3_c00129{left:106.500000px;}
.x4_c00129{left:675.611100px;}
.x1_c00129{left:789.279000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls4_c00129{letter-spacing:-0.480000pt;}
.ls3_c00129{letter-spacing:0.000000pt;}
.ls0_c00129{letter-spacing:0.640000pt;}
.ls2_c00129{letter-spacing:1.333333pt;}
.ls1_c00129{letter-spacing:1.466667pt;}
.ws1_c00129{word-spacing:-18.720000pt;}
.ws0_c00129{word-spacing:-9.066667pt;}
.ws11_c00129{word-spacing:-5.440000pt;}
.wsa_c00129{word-spacing:-4.992000pt;}
.wsb_c00129{word-spacing:-2.624000pt;}
.ws1d_c00129{word-spacing:-1.333333pt;}
.ws15_c00129{word-spacing:-0.512000pt;}
.ws14_c00129{word-spacing:-0.320000pt;}
.wsf_c00129{word-spacing:-0.192000pt;}
.ws2_c00129{word-spacing:0.000000pt;}
.ws8_c00129{word-spacing:1.536000pt;}
.ws1b_c00129{word-spacing:1.792000pt;}
.ws17_c00129{word-spacing:1.984000pt;}
.wsc_c00129{word-spacing:2.048000pt;}
.ws1a_c00129{word-spacing:2.816000pt;}
.ws10_c00129{word-spacing:3.008000pt;}
.ws1c_c00129{word-spacing:3.072000pt;}
.wsd_c00129{word-spacing:3.328000pt;}
.ws9_c00129{word-spacing:3.520000pt;}
.ws3_c00129{word-spacing:4.288000pt;}
.ws12_c00129{word-spacing:5.440000pt;}
.ws4_c00129{word-spacing:6.144000pt;}
.ws16_c00129{word-spacing:7.936000pt;}
.ws5_c00129{word-spacing:8.000000pt;}
.wse_c00129{word-spacing:9.920000pt;}
.ws18_c00129{word-spacing:10.368000pt;}
.ws7_c00129{word-spacing:12.096000pt;}
.ws19_c00129{word-spacing:12.544000pt;}
.ws13_c00129{word-spacing:14.784000pt;}
.ws6_c00129{word-spacing:16.384000pt;}
._0_c00129{margin-left:-426.966933pt;}
._4_c00129{margin-left:-6.359467pt;}
._7_c00129{margin-left:-4.977067pt;}
._1_c00129{margin-left:-3.733333pt;}
._3_c00129{margin-left:-2.496000pt;}
._2_c00129{margin-left:-1.280000pt;}
._5_c00129{width:1.056000pt;}
._6_c00129{width:3.340800pt;}
._8_c00129{width:5.164800pt;}
.fs1_c00129{font-size:37.333333pt;}
.fs0_c00129{font-size:53.333333pt;}
.fs4_c00129{font-size:58.666667pt;}
.fs3_c00129{font-size:64.000000pt;}
.fs2_c00129{font-size:96.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.y1_c00129{bottom:36.666667pt;}
.y1e_c00129{bottom:94.386400pt;}
.y1d_c00129{bottom:121.058400pt;}
.y1c_c00129{bottom:147.730400pt;}
.y1b_c00129{bottom:174.402400pt;}
.y1a_c00129{bottom:201.074400pt;}
.y19_c00129{bottom:227.746400pt;}
.y18_c00129{bottom:254.418400pt;}
.y17_c00129{bottom:281.090400pt;}
.y16_c00129{bottom:307.762400pt;}
.y15_c00129{bottom:334.434400pt;}
.y14_c00129{bottom:361.106400pt;}
.y13_c00129{bottom:387.778400pt;}
.y12_c00129{bottom:414.450400pt;}
.y11_c00129{bottom:441.122400pt;}
.y10_c00129{bottom:467.794400pt;}
.yf_c00129{bottom:494.466400pt;}
.ye_c00129{bottom:521.138400pt;}
.yd_c00129{bottom:547.810400pt;}
.yc_c00129{bottom:601.138400pt;}
.yb_c00129{bottom:627.810400pt;}
.ya_c00129{bottom:654.482400pt;}
.y9_c00129{bottom:681.154400pt;}
.y8_c00129{bottom:707.826400pt;}
.y7_c00129{bottom:734.498400pt;}
.y23_c00129{bottom:734.519733pt;}
.y6_c00129{bottom:761.170400pt;}
.y22_c00129{bottom:761.186400pt;}
.y5_c00129{bottom:787.842400pt;}
.y21_c00129{bottom:787.853067pt;}
.y4_c00129{bottom:814.514400pt;}
.y20_c00129{bottom:814.519733pt;}
.y3_c00129{bottom:841.186400pt;}
.y1f_c00129{bottom:842.740133pt;}
.y2_c00129{bottom:894.519733pt;}
.h5_c00129{height:44.704000pt;}
.h2_c00129{height:48.000000pt;}
.h4_c00129{height:57.600000pt;}
.h3_c00129{height:89.760000pt;}
.h0_c00129{height:1122.520000pt;}
.h1_c00129{height:1122.666667pt;}
.w0_c00129{width:793.701333pt;}
.w1_c00129{width:794.000000pt;}
.x0_c00129{left:0.000000pt;}
.x2_c00129{left:73.333333pt;}
.x3_c00129{left:94.666667pt;}
.x4_c00129{left:600.543200pt;}
.x1_c00129{left:701.581333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_311dd56d08d3cad216b12910.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00130;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:1.161000;font-style: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);}
.m1_c00130{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls4_c00130{letter-spacing:-0.324000px;}
.ls3_c00130{letter-spacing:0.000000px;}
.ls0_c00130{letter-spacing:0.720000px;}
.ls2_c00130{letter-spacing:1.500000px;}
.ls1_c00130{letter-spacing:1.650000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00130{word-spacing:-21.276000px;}
.ws2_c00130{word-spacing:-14.850000px;}
.ws3_c00130{word-spacing:-11.700000px;}
.ws0_c00130{word-spacing:-10.200000px;}
.ws11_c00130{word-spacing:-4.176000px;}
.wse_c00130{word-spacing:-3.672000px;}
.ws1e_c00130{word-spacing:-1.500000px;}
.wsc_c00130{word-spacing:-1.152000px;}
.wsf_c00130{word-spacing:-1.008000px;}
.ws4_c00130{word-spacing:0.000000px;}
.wsd_c00130{word-spacing:0.288000px;}
.ws1b_c00130{word-spacing:0.504000px;}
.ws1d_c00130{word-spacing:0.720000px;}
.ws5_c00130{word-spacing:1.368000px;}
.ws7_c00130{word-spacing:2.160000px;}
.ws13_c00130{word-spacing:2.664000px;}
.ws12_c00130{word-spacing:2.880000px;}
.ws1c_c00130{word-spacing:2.952000px;}
.ws19_c00130{word-spacing:3.024000px;}
.ws17_c00130{word-spacing:3.240000px;}
.wsa_c00130{word-spacing:3.528000px;}
.ws10_c00130{word-spacing:4.176000px;}
.ws1a_c00130{word-spacing:5.400000px;}
.wsb_c00130{word-spacing:5.832000px;}
.ws9_c00130{word-spacing:6.192000px;}
.ws15_c00130{word-spacing:7.056000px;}
.ws14_c00130{word-spacing:7.272000px;}
.ws6_c00130{word-spacing:7.920000px;}
.ws18_c00130{word-spacing:9.288000px;}
.ws8_c00130{word-spacing:12.888000px;}
.ws16_c00130{word-spacing:15.696000px;}
._0_c00130{margin-left:-480.337800px;}
._5_c00130{margin-left:-6.264000px;}
._1_c00130{margin-left:-4.200000px;}
._3_c00130{margin-left:-2.880000px;}
._2_c00130{margin-left:-1.134000px;}
._4_c00130{width:1.371600px;}
.fc3_c00130{color:rgb(32,32,32);}
.fc2_c00130{color:rgb(233,83,14);}
.fc1_c00130{color:rgb(232,86,17);}
.fc4_c00130{color:rgb(157,157,156);}
.fc0_c00130{color:rgb(60,60,59);}
.fs1_c00130{font-size:42.000000px;}
.fs0_c00130{font-size:60.000000px;}
.fs4_c00130{font-size:66.000000px;}
.fs3_c00130{font-size:72.000000px;}
.fs2_c00130{font-size:108.000000px;}
.y0_c00130{bottom:0.000000px;}
.y1_c00130{bottom:41.250000px;}
.y1e_c00130{bottom:76.196700px;}
.y1d_c00130{bottom:106.202700px;}
.y1c_c00130{bottom:136.208700px;}
.y1b_c00130{bottom:166.214700px;}
.y1a_c00130{bottom:196.220700px;}
.y19_c00130{bottom:226.226700px;}
.y18_c00130{bottom:256.232700px;}
.y17_c00130{bottom:316.226700px;}
.y16_c00130{bottom:346.232700px;}
.y15_c00130{bottom:376.238700px;}
.y14_c00130{bottom:406.244700px;}
.y13_c00130{bottom:436.250700px;}
.y12_c00130{bottom:466.256700px;}
.y11_c00130{bottom:496.262700px;}
.y10_c00130{bottom:526.268700px;}
.yf_c00130{bottom:556.274700px;}
.ye_c00130{bottom:586.280700px;}
.yd_c00130{bottom:616.286700px;}
.yc_c00130{bottom:676.280700px;}
.yb_c00130{bottom:706.286700px;}
.ya_c00130{bottom:736.292700px;}
.y9_c00130{bottom:766.298700px;}
.y8_c00130{bottom:796.304700px;}
.y7_c00130{bottom:826.310700px;}
.y23_c00130{bottom:826.334700px;}
.y6_c00130{bottom:856.316700px;}
.y22_c00130{bottom:856.334700px;}
.y5_c00130{bottom:886.322700px;}
.y21_c00130{bottom:886.334700px;}
.y4_c00130{bottom:916.328700px;}
.y20_c00130{bottom:916.334700px;}
.y3_c00130{bottom:946.334700px;}
.y1f_c00130{bottom:948.082650px;}
.y2_c00130{bottom:1006.334700px;}
.h5_c00130{height:50.292000px;}
.h2_c00130{height:54.000000px;}
.h4_c00130{height:64.800000px;}
.h3_c00130{height:100.980000px;}
.h0_c00130{height:1262.835000px;}
.h1_c00130{height:1263.000000px;}
.w0_c00130{width:892.914000px;}
.w1_c00130{width:893.250000px;}
.x0_c00130{left:0.000000px;}
.x2_c00130{left:82.500000px;}
.x3_c00130{left:106.500000px;}
.x4_c00130{left:675.611100px;}
.x1_c00130{left:792.939000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls4_c00130{letter-spacing:-0.288000pt;}
.ls3_c00130{letter-spacing:0.000000pt;}
.ls0_c00130{letter-spacing:0.640000pt;}
.ls2_c00130{letter-spacing:1.333333pt;}
.ls1_c00130{letter-spacing:1.466667pt;}
.ws1_c00130{word-spacing:-18.912000pt;}
.ws2_c00130{word-spacing:-13.200000pt;}
.ws3_c00130{word-spacing:-10.400000pt;}
.ws0_c00130{word-spacing:-9.066667pt;}
.ws11_c00130{word-spacing:-3.712000pt;}
.wse_c00130{word-spacing:-3.264000pt;}
.ws1e_c00130{word-spacing:-1.333333pt;}
.wsc_c00130{word-spacing:-1.024000pt;}
.wsf_c00130{word-spacing:-0.896000pt;}
.ws4_c00130{word-spacing:0.000000pt;}
.wsd_c00130{word-spacing:0.256000pt;}
.ws1b_c00130{word-spacing:0.448000pt;}
.ws1d_c00130{word-spacing:0.640000pt;}
.ws5_c00130{word-spacing:1.216000pt;}
.ws7_c00130{word-spacing:1.920000pt;}
.ws13_c00130{word-spacing:2.368000pt;}
.ws12_c00130{word-spacing:2.560000pt;}
.ws1c_c00130{word-spacing:2.624000pt;}
.ws19_c00130{word-spacing:2.688000pt;}
.ws17_c00130{word-spacing:2.880000pt;}
.wsa_c00130{word-spacing:3.136000pt;}
.ws10_c00130{word-spacing:3.712000pt;}
.ws1a_c00130{word-spacing:4.800000pt;}
.wsb_c00130{word-spacing:5.184000pt;}
.ws9_c00130{word-spacing:5.504000pt;}
.ws15_c00130{word-spacing:6.272000pt;}
.ws14_c00130{word-spacing:6.464000pt;}
.ws6_c00130{word-spacing:7.040000pt;}
.ws18_c00130{word-spacing:8.256000pt;}
.ws8_c00130{word-spacing:11.456000pt;}
.ws16_c00130{word-spacing:13.952000pt;}
._0_c00130{margin-left:-426.966933pt;}
._5_c00130{margin-left:-5.568000pt;}
._1_c00130{margin-left:-3.733333pt;}
._3_c00130{margin-left:-2.560000pt;}
._2_c00130{margin-left:-1.008000pt;}
._4_c00130{width:1.219200pt;}
.fs1_c00130{font-size:37.333333pt;}
.fs0_c00130{font-size:53.333333pt;}
.fs4_c00130{font-size:58.666667pt;}
.fs3_c00130{font-size:64.000000pt;}
.fs2_c00130{font-size:96.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.y1_c00130{bottom:36.666667pt;}
.y1e_c00130{bottom:67.730400pt;}
.y1d_c00130{bottom:94.402400pt;}
.y1c_c00130{bottom:121.074400pt;}
.y1b_c00130{bottom:147.746400pt;}
.y1a_c00130{bottom:174.418400pt;}
.y19_c00130{bottom:201.090400pt;}
.y18_c00130{bottom:227.762400pt;}
.y17_c00130{bottom:281.090400pt;}
.y16_c00130{bottom:307.762400pt;}
.y15_c00130{bottom:334.434400pt;}
.y14_c00130{bottom:361.106400pt;}
.y13_c00130{bottom:387.778400pt;}
.y12_c00130{bottom:414.450400pt;}
.y11_c00130{bottom:441.122400pt;}
.y10_c00130{bottom:467.794400pt;}
.yf_c00130{bottom:494.466400pt;}
.ye_c00130{bottom:521.138400pt;}
.yd_c00130{bottom:547.810400pt;}
.yc_c00130{bottom:601.138400pt;}
.yb_c00130{bottom:627.810400pt;}
.ya_c00130{bottom:654.482400pt;}
.y9_c00130{bottom:681.154400pt;}
.y8_c00130{bottom:707.826400pt;}
.y7_c00130{bottom:734.498400pt;}
.y23_c00130{bottom:734.519733pt;}
.y6_c00130{bottom:761.170400pt;}
.y22_c00130{bottom:761.186400pt;}
.y5_c00130{bottom:787.842400pt;}
.y21_c00130{bottom:787.853067pt;}
.y4_c00130{bottom:814.514400pt;}
.y20_c00130{bottom:814.519733pt;}
.y3_c00130{bottom:841.186400pt;}
.y1f_c00130{bottom:842.740133pt;}
.y2_c00130{bottom:894.519733pt;}
.h5_c00130{height:44.704000pt;}
.h2_c00130{height:48.000000pt;}
.h4_c00130{height:57.600000pt;}
.h3_c00130{height:89.760000pt;}
.h0_c00130{height:1122.520000pt;}
.h1_c00130{height:1122.666667pt;}
.w0_c00130{width:793.701333pt;}
.w1_c00130{width:794.000000pt;}
.x0_c00130{left:0.000000pt;}
.x2_c00130{left:73.333333pt;}
.x3_c00130{left:94.666667pt;}
.x4_c00130{left:600.543200pt;}
.x1_c00130{left:704.834667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00131;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00131;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00131;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls3_c00131{letter-spacing:-0.288000px;}
.ls2_c00131{letter-spacing:0.000000px;}
.ls0_c00131{letter-spacing:0.864000px;}
.ls1_c00131{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00131{word-spacing:-13.104000px;}
.wsa_c00131{word-spacing:-11.880000px;}
.ws0_c00131{word-spacing:-10.200000px;}
.ws9_c00131{word-spacing:-7.560000px;}
.ws6_c00131{word-spacing:-4.104000px;}
.ws3_c00131{word-spacing:-3.600000px;}
.ws8_c00131{word-spacing:-3.528000px;}
.ws7_c00131{word-spacing:-2.304000px;}
.ws5_c00131{word-spacing:-2.016000px;}
.ws2_c00131{word-spacing:0.000000px;}
.ws4_c00131{word-spacing:1.152000px;}
._0_c00131{margin-left:-480.337800px;}
._5_c00131{margin-left:-8.208000px;}
._8_c00131{margin-left:-7.200000px;}
._3_c00131{margin-left:-6.048000px;}
._1_c00131{margin-left:-4.200000px;}
._6_c00131{margin-left:-2.376000px;}
._2_c00131{margin-left:-1.080000px;}
._4_c00131{width:3.744000px;}
._7_c00131{width:5.040000px;}
._9_c00131{width:8.112000px;}
._a_c00131{width:11.832000px;}
.fc3_c00131{color:rgb(255,255,255);}
.fc2_c00131{color:rgb(233,83,14);}
.fc1_c00131{color:rgb(232,86,17);}
.fc0_c00131{color:rgb(60,60,59);}
.fs1_c00131{font-size:42.000000px;}
.fs0_c00131{font-size:60.000000px;}
.fs3_c00131{font-size:72.000000px;}
.fs4_c00131{font-size:120.000000px;}
.fs2_c00131{font-size:360.000000px;}
.y0_c00131{bottom:0.000000px;}
.y1_c00131{bottom:41.250000px;}
.yf_c00131{bottom:394.274700px;}
.ye_c00131{bottom:415.280700px;}
.yd_c00131{bottom:436.286700px;}
.yc_c00131{bottom:484.292700px;}
.yb_c00131{bottom:505.298700px;}
.ya_c00131{bottom:526.304700px;}
.y9_c00131{bottom:574.310700px;}
.y8_c00131{bottom:595.316700px;}
.y7_c00131{bottom:616.322700px;}
.y6_c00131{bottom:664.328700px;}
.y5_c00131{bottom:685.334700px;}
.y4_c00131{bottom:706.340700px;}
.y3_c00131{bottom:752.834700px;}
.y13_c00131{bottom:916.334700px;}
.y12_c00131{bottom:946.334700px;}
.y11_c00131{bottom:976.334700px;}
.y10_c00131{bottom:1006.334700px;}
.y2_c00131{bottom:1093.526700px;}
.h2_c00131{height:54.000000px;}
.h5_c00131{height:64.800000px;}
.h4_c00131{height:66.456000px;}
.h6_c00131{height:112.200000px;}
.h3_c00131{height:324.000000px;}
.h0_c00131{height:1262.835000px;}
.h1_c00131{height:1263.000000px;}
.w0_c00131{width:892.914000px;}
.w1_c00131{width:893.250000px;}
.x0_c00131{left:0.000000px;}
.x2_c00131{left:81.290250px;}
.x3_c00131{left:82.393650px;}
.x5_c00131{left:112.287450px;}
.x4_c00131{left:127.393650px;}
.x1_c00131{left:790.464000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls3_c00131{letter-spacing:-0.256000pt;}
.ls2_c00131{letter-spacing:0.000000pt;}
.ls0_c00131{letter-spacing:0.768000pt;}
.ls1_c00131{letter-spacing:1.066667pt;}
.ws1_c00131{word-spacing:-11.648000pt;}
.wsa_c00131{word-spacing:-10.560000pt;}
.ws0_c00131{word-spacing:-9.066667pt;}
.ws9_c00131{word-spacing:-6.720000pt;}
.ws6_c00131{word-spacing:-3.648000pt;}
.ws3_c00131{word-spacing:-3.200000pt;}
.ws8_c00131{word-spacing:-3.136000pt;}
.ws7_c00131{word-spacing:-2.048000pt;}
.ws5_c00131{word-spacing:-1.792000pt;}
.ws2_c00131{word-spacing:0.000000pt;}
.ws4_c00131{word-spacing:1.024000pt;}
._0_c00131{margin-left:-426.966933pt;}
._5_c00131{margin-left:-7.296000pt;}
._8_c00131{margin-left:-6.400000pt;}
._3_c00131{margin-left:-5.376000pt;}
._1_c00131{margin-left:-3.733333pt;}
._6_c00131{margin-left:-2.112000pt;}
._2_c00131{margin-left:-0.960000pt;}
._4_c00131{width:3.328000pt;}
._7_c00131{width:4.480000pt;}
._9_c00131{width:7.210667pt;}
._a_c00131{width:10.517333pt;}
.fs1_c00131{font-size:37.333333pt;}
.fs0_c00131{font-size:53.333333pt;}
.fs3_c00131{font-size:64.000000pt;}
.fs4_c00131{font-size:106.666667pt;}
.fs2_c00131{font-size:320.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y1_c00131{bottom:36.666667pt;}
.yf_c00131{bottom:350.466400pt;}
.ye_c00131{bottom:369.138400pt;}
.yd_c00131{bottom:387.810400pt;}
.yc_c00131{bottom:430.482400pt;}
.yb_c00131{bottom:449.154400pt;}
.ya_c00131{bottom:467.826400pt;}
.y9_c00131{bottom:510.498400pt;}
.y8_c00131{bottom:529.170400pt;}
.y7_c00131{bottom:547.842400pt;}
.y6_c00131{bottom:590.514400pt;}
.y5_c00131{bottom:609.186400pt;}
.y4_c00131{bottom:627.858400pt;}
.y3_c00131{bottom:669.186400pt;}
.y13_c00131{bottom:814.519733pt;}
.y12_c00131{bottom:841.186400pt;}
.y11_c00131{bottom:867.853067pt;}
.y10_c00131{bottom:894.519733pt;}
.y2_c00131{bottom:972.023733pt;}
.h2_c00131{height:48.000000pt;}
.h5_c00131{height:57.600000pt;}
.h4_c00131{height:59.072000pt;}
.h6_c00131{height:99.733333pt;}
.h3_c00131{height:288.000000pt;}
.h0_c00131{height:1122.520000pt;}
.h1_c00131{height:1122.666667pt;}
.w0_c00131{width:793.701333pt;}
.w1_c00131{width:794.000000pt;}
.x0_c00131{left:0.000000pt;}
.x2_c00131{left:72.258000pt;}
.x3_c00131{left:73.238800pt;}
.x5_c00131{left:99.811067pt;}
.x4_c00131{left:113.238800pt;}
.x1_c00131{left:702.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.160000;font-style:normal;font-weight:normal;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_e12e76fc6151d647455519d2.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00132;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00132{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls4_c00132{letter-spacing:-0.540000px;}
.ls3_c00132{letter-spacing:0.000000px;}
.ls0_c00132{letter-spacing:0.720000px;}
.ls5_c00132{letter-spacing:0.840000px;}
.ls2_c00132{letter-spacing:1.500000px;}
.ls1_c00132{letter-spacing:1.650000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00132{word-spacing:-21.060000px;}
.ws0_c00132{word-spacing:-10.200000px;}
.ws6_c00132{word-spacing:-2.376000px;}
.wsd_c00132{word-spacing:-2.016000px;}
.ws3_c00132{word-spacing:-0.840000px;}
.ws2_c00132{word-spacing:0.000000px;}
.ws4_c00132{word-spacing:0.936000px;}
.ws8_c00132{word-spacing:3.024000px;}
.ws5_c00132{word-spacing:3.168000px;}
.wsc_c00132{word-spacing:3.456000px;}
.wsa_c00132{word-spacing:4.248000px;}
.wsb_c00132{word-spacing:6.912000px;}
.ws7_c00132{word-spacing:8.712000px;}
.ws9_c00132{word-spacing:10.224000px;}
._0_c00132{margin-left:-480.337800px;}
._4_c00132{margin-left:-7.164000px;}
._1_c00132{margin-left:-4.200000px;}
._3_c00132{margin-left:-2.973600px;}
._2_c00132{margin-left:-1.440000px;}
._7_c00132{width:1.159200px;}
._5_c00132{width:2.260800px;}
._6_c00132{width:4.269600px;}
.fc3_c00132{color:rgb(32,32,32);}
.fc2_c00132{color:rgb(233,83,14);}
.fc1_c00132{color:rgb(232,86,17);}
.fc4_c00132{color:rgb(157,157,156);}
.fc0_c00132{color:rgb(60,60,59);}
.fs1_c00132{font-size:42.000000px;}
.fs0_c00132{font-size:60.000000px;}
.fs5_c00132{font-size:66.000000px;}
.fs4_c00132{font-size:72.000000px;}
.fs3_c00132{font-size:84.000000px;}
.fs2_c00132{font-size:108.000000px;}
.y0_c00132{bottom:0.000000px;}
.y1_c00132{bottom:41.250000px;}
.y11_c00132{bottom:376.298700px;}
.y10_c00132{bottom:406.304700px;}
.yf_c00132{bottom:436.310700px;}
.ye_c00132{bottom:466.316700px;}
.yd_c00132{bottom:496.322700px;}
.yc_c00132{bottom:526.328700px;}
.yb_c00132{bottom:556.334700px;}
.ya_c00132{bottom:616.334700px;}
.y9_c00132{bottom:706.304700px;}
.y8_c00132{bottom:736.310700px;}
.y7_c00132{bottom:766.316700px;}
.y15_c00132{bottom:766.334700px;}
.y6_c00132{bottom:796.322700px;}
.y14_c00132{bottom:796.334700px;}
.y5_c00132{bottom:826.328700px;}
.y13_c00132{bottom:826.334700px;}
.y4_c00132{bottom:856.334700px;}
.y12_c00132{bottom:859.145700px;}
.y3_c00132{bottom:916.334700px;}
.y2_c00132{bottom:1006.334700px;}
.h6_c00132{height:50.292000px;}
.h2_c00132{height:54.000000px;}
.h5_c00132{height:64.800000px;}
.h4_c00132{height:78.540000px;}
.h3_c00132{height:100.980000px;}
.h0_c00132{height:1262.835000px;}
.h1_c00132{height:1263.000000px;}
.w0_c00132{width:892.914000px;}
.w1_c00132{width:893.250000px;}
.x0_c00132{left:0.000000px;}
.x2_c00132{left:82.500000px;}
.x3_c00132{left:90.000000px;}
.x4_c00132{left:106.500000px;}
.x5_c00132{left:675.611100px;}
.x1_c00132{left:790.314000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls4_c00132{letter-spacing:-0.480000pt;}
.ls3_c00132{letter-spacing:0.000000pt;}
.ls0_c00132{letter-spacing:0.640000pt;}
.ls5_c00132{letter-spacing:0.746667pt;}
.ls2_c00132{letter-spacing:1.333333pt;}
.ls1_c00132{letter-spacing:1.466667pt;}
.ws1_c00132{word-spacing:-18.720000pt;}
.ws0_c00132{word-spacing:-9.066667pt;}
.ws6_c00132{word-spacing:-2.112000pt;}
.wsd_c00132{word-spacing:-1.792000pt;}
.ws3_c00132{word-spacing:-0.746667pt;}
.ws2_c00132{word-spacing:0.000000pt;}
.ws4_c00132{word-spacing:0.832000pt;}
.ws8_c00132{word-spacing:2.688000pt;}
.ws5_c00132{word-spacing:2.816000pt;}
.wsc_c00132{word-spacing:3.072000pt;}
.wsa_c00132{word-spacing:3.776000pt;}
.wsb_c00132{word-spacing:6.144000pt;}
.ws7_c00132{word-spacing:7.744000pt;}
.ws9_c00132{word-spacing:9.088000pt;}
._0_c00132{margin-left:-426.966933pt;}
._4_c00132{margin-left:-6.368000pt;}
._1_c00132{margin-left:-3.733333pt;}
._3_c00132{margin-left:-2.643200pt;}
._2_c00132{margin-left:-1.280000pt;}
._7_c00132{width:1.030400pt;}
._5_c00132{width:2.009600pt;}
._6_c00132{width:3.795200pt;}
.fs1_c00132{font-size:37.333333pt;}
.fs0_c00132{font-size:53.333333pt;}
.fs5_c00132{font-size:58.666667pt;}
.fs4_c00132{font-size:64.000000pt;}
.fs3_c00132{font-size:74.666667pt;}
.fs2_c00132{font-size:96.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y1_c00132{bottom:36.666667pt;}
.y11_c00132{bottom:334.487733pt;}
.y10_c00132{bottom:361.159733pt;}
.yf_c00132{bottom:387.831733pt;}
.ye_c00132{bottom:414.503733pt;}
.yd_c00132{bottom:441.175733pt;}
.yc_c00132{bottom:467.847733pt;}
.yb_c00132{bottom:494.519733pt;}
.ya_c00132{bottom:547.853067pt;}
.y9_c00132{bottom:627.826400pt;}
.y8_c00132{bottom:654.498400pt;}
.y7_c00132{bottom:681.170400pt;}
.y15_c00132{bottom:681.186400pt;}
.y6_c00132{bottom:707.842400pt;}
.y14_c00132{bottom:707.853067pt;}
.y5_c00132{bottom:734.514400pt;}
.y13_c00132{bottom:734.519733pt;}
.y4_c00132{bottom:761.186400pt;}
.y12_c00132{bottom:763.685067pt;}
.y3_c00132{bottom:814.519733pt;}
.y2_c00132{bottom:894.519733pt;}
.h6_c00132{height:44.704000pt;}
.h2_c00132{height:48.000000pt;}
.h5_c00132{height:57.600000pt;}
.h4_c00132{height:69.813333pt;}
.h3_c00132{height:89.760000pt;}
.h0_c00132{height:1122.520000pt;}
.h1_c00132{height:1122.666667pt;}
.w0_c00132{width:793.701333pt;}
.w1_c00132{width:794.000000pt;}
.x0_c00132{left:0.000000pt;}
.x2_c00132{left:73.333333pt;}
.x3_c00132{left:80.000000pt;}
.x4_c00132{left:94.666667pt;}
.x5_c00132{left:600.543200pt;}
.x1_c00132{left:702.501333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.199000;font-style: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);}
.m1_c00133{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls1_c00133{letter-spacing:0.000000px;}
.ls0_c00133{letter-spacing:0.720000px;}
.ls2_c00133{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws4_c00133{word-spacing:-0.864000px;}
.ws2_c00133{word-spacing:-0.840000px;}
.wsb_c00133{word-spacing:-0.720000px;}
.wsf_c00133{word-spacing:-0.144000px;}
.ws1_c00133{word-spacing:0.000000px;}
.ws5_c00133{word-spacing:2.952000px;}
.wsd_c00133{word-spacing:3.096000px;}
.ws10_c00133{word-spacing:4.464000px;}
.wse_c00133{word-spacing:5.328000px;}
.wsa_c00133{word-spacing:5.760000px;}
.ws11_c00133{word-spacing:5.904000px;}
.ws9_c00133{word-spacing:5.976000px;}
.ws7_c00133{word-spacing:7.056000px;}
.wsc_c00133{word-spacing:7.776000px;}
.ws6_c00133{word-spacing:8.640000px;}
.ws3_c00133{word-spacing:10.368000px;}
.ws8_c00133{word-spacing:14.112000px;}
._0_c00133{margin-left:-480.337800px;}
._4_c00133{margin-left:-5.652000px;}
._1_c00133{margin-left:-4.200000px;}
._5_c00133{margin-left:-2.798400px;}
._2_c00133{margin-left:-1.432800px;}
._6_c00133{width:3.175200px;}
._3_c00133{width:4.579200px;}
.fc2_c00133{color:rgb(32,32,32);}
.fc1_c00133{color:rgb(232,86,17);}
.fc0_c00133{color:rgb(60,60,59);}
.fs1_c00133{font-size:42.000000px;}
.fs0_c00133{font-size:60.000000px;}
.fs3_c00133{font-size:72.000000px;}
.fs2_c00133{font-size:84.000000px;}
.y0_c00133{bottom:0.000000px;}
.y1_c00133{bottom:41.250000px;}
.y14_c00133{bottom:346.298700px;}
.y13_c00133{bottom:376.304700px;}
.y12_c00133{bottom:406.310700px;}
.y11_c00133{bottom:436.316700px;}
.y10_c00133{bottom:466.322700px;}
.yf_c00133{bottom:496.328700px;}
.ye_c00133{bottom:526.334700px;}
.yd_c00133{bottom:586.334700px;}
.yc_c00133{bottom:676.280700px;}
.yb_c00133{bottom:706.286700px;}
.ya_c00133{bottom:736.292700px;}
.y9_c00133{bottom:766.298700px;}
.y8_c00133{bottom:796.304700px;}
.y7_c00133{bottom:826.310700px;}
.y6_c00133{bottom:856.316700px;}
.y5_c00133{bottom:886.322700px;}
.y4_c00133{bottom:916.328700px;}
.y3_c00133{bottom:946.334700px;}
.y2_c00133{bottom:1006.334700px;}
.h2_c00133{height:54.000000px;}
.h4_c00133{height:64.800000px;}
.h3_c00133{height:78.540000px;}
.h0_c00133{height:1262.835000px;}
.h1_c00133{height:1263.000000px;}
.w0_c00133{width:892.914000px;}
.w1_c00133{width:893.250000px;}
.x0_c00133{left:0.000000px;}
.x2_c00133{left:90.000000px;}
.x3_c00133{left:106.500000px;}
.x1_c00133{left:789.339000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls1_c00133{letter-spacing:0.000000pt;}
.ls0_c00133{letter-spacing:0.640000pt;}
.ls2_c00133{letter-spacing:0.746667pt;}
.ws0_c00133{word-spacing:-9.066667pt;}
.ws4_c00133{word-spacing:-0.768000pt;}
.ws2_c00133{word-spacing:-0.746667pt;}
.wsb_c00133{word-spacing:-0.640000pt;}
.wsf_c00133{word-spacing:-0.128000pt;}
.ws1_c00133{word-spacing:0.000000pt;}
.ws5_c00133{word-spacing:2.624000pt;}
.wsd_c00133{word-spacing:2.752000pt;}
.ws10_c00133{word-spacing:3.968000pt;}
.wse_c00133{word-spacing:4.736000pt;}
.wsa_c00133{word-spacing:5.120000pt;}
.ws11_c00133{word-spacing:5.248000pt;}
.ws9_c00133{word-spacing:5.312000pt;}
.ws7_c00133{word-spacing:6.272000pt;}
.wsc_c00133{word-spacing:6.912000pt;}
.ws6_c00133{word-spacing:7.680000pt;}
.ws3_c00133{word-spacing:9.216000pt;}
.ws8_c00133{word-spacing:12.544000pt;}
._0_c00133{margin-left:-426.966933pt;}
._4_c00133{margin-left:-5.024000pt;}
._1_c00133{margin-left:-3.733333pt;}
._5_c00133{margin-left:-2.487467pt;}
._2_c00133{margin-left:-1.273600pt;}
._6_c00133{width:2.822400pt;}
._3_c00133{width:4.070400pt;}
.fs1_c00133{font-size:37.333333pt;}
.fs0_c00133{font-size:53.333333pt;}
.fs3_c00133{font-size:64.000000pt;}
.fs2_c00133{font-size:74.666667pt;}
.y0_c00133{bottom:0.000000pt;}
.y1_c00133{bottom:36.666667pt;}
.y14_c00133{bottom:307.821067pt;}
.y13_c00133{bottom:334.493067pt;}
.y12_c00133{bottom:361.165067pt;}
.y11_c00133{bottom:387.837067pt;}
.y10_c00133{bottom:414.509067pt;}
.yf_c00133{bottom:441.181067pt;}
.ye_c00133{bottom:467.853067pt;}
.yd_c00133{bottom:521.186400pt;}
.yc_c00133{bottom:601.138400pt;}
.yb_c00133{bottom:627.810400pt;}
.ya_c00133{bottom:654.482400pt;}
.y9_c00133{bottom:681.154400pt;}
.y8_c00133{bottom:707.826400pt;}
.y7_c00133{bottom:734.498400pt;}
.y6_c00133{bottom:761.170400pt;}
.y5_c00133{bottom:787.842400pt;}
.y4_c00133{bottom:814.514400pt;}
.y3_c00133{bottom:841.186400pt;}
.y2_c00133{bottom:894.519733pt;}
.h2_c00133{height:48.000000pt;}
.h4_c00133{height:57.600000pt;}
.h3_c00133{height:69.813333pt;}
.h0_c00133{height:1122.520000pt;}
.h1_c00133{height:1122.666667pt;}
.w0_c00133{width:793.701333pt;}
.w1_c00133{width:794.000000pt;}
.x0_c00133{left:0.000000pt;}
.x2_c00133{left:80.000000pt;}
.x3_c00133{left:94.666667pt;}
.x1_c00133{left:701.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_795c1aff8c99ee916373da00.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00134;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.161000;font-style: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);}
.m1_c00134{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls4_c00134{letter-spacing:-0.324000px;}
.ls3_c00134{letter-spacing:0.000000px;}
.ls0_c00134{letter-spacing:0.720000px;}
.ls5_c00134{letter-spacing:0.840000px;}
.ls2_c00134{letter-spacing:1.500000px;}
.ls1_c00134{letter-spacing:1.650000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00134{word-spacing:-21.276000px;}
.ws2_c00134{word-spacing:-14.850000px;}
.ws0_c00134{word-spacing:-10.200000px;}
.wsf_c00134{word-spacing:-1.728000px;}
.ws11_c00134{word-spacing:-1.500000px;}
.ws4_c00134{word-spacing:-0.840000px;}
.wsa_c00134{word-spacing:-0.720000px;}
.ws3_c00134{word-spacing:0.000000px;}
.wse_c00134{word-spacing:0.288000px;}
.ws10_c00134{word-spacing:3.816000px;}
.wsd_c00134{word-spacing:4.752000px;}
.ws7_c00134{word-spacing:5.328000px;}
.wsb_c00134{word-spacing:7.128000px;}
.ws9_c00134{word-spacing:7.704000px;}
.ws6_c00134{word-spacing:9.072000px;}
.wsc_c00134{word-spacing:11.376000px;}
.ws5_c00134{word-spacing:12.528000px;}
.ws8_c00134{word-spacing:15.840000px;}
._0_c00134{margin-left:-480.337200px;}
._4_c00134{margin-left:-5.752800px;}
._1_c00134{margin-left:-4.200000px;}
._3_c00134{margin-left:-2.718000px;}
._2_c00134{margin-left:-1.134000px;}
.fc3_c00134{color:rgb(32,32,32);}
.fc2_c00134{color:rgb(233,83,14);}
.fc1_c00134{color:rgb(232,86,17);}
.fc4_c00134{color:rgb(157,157,156);}
.fc0_c00134{color:rgb(60,60,59);}
.fs1_c00134{font-size:42.000000px;}
.fs0_c00134{font-size:60.000000px;}
.fs5_c00134{font-size:66.000000px;}
.fs4_c00134{font-size:72.000000px;}
.fs3_c00134{font-size:84.000000px;}
.fs2_c00134{font-size:108.000000px;}
.y0_c00134{bottom:0.000000px;}
.y1_c00134{bottom:41.250000px;}
.y11_c00134{bottom:376.298700px;}
.y10_c00134{bottom:406.304700px;}
.yf_c00134{bottom:436.310700px;}
.ye_c00134{bottom:466.316700px;}
.yd_c00134{bottom:496.322700px;}
.yc_c00134{bottom:526.328700px;}
.yb_c00134{bottom:556.334700px;}
.ya_c00134{bottom:616.334700px;}
.y9_c00134{bottom:706.304700px;}
.y8_c00134{bottom:736.310700px;}
.y7_c00134{bottom:766.316700px;}
.y15_c00134{bottom:766.334700px;}
.y6_c00134{bottom:796.322700px;}
.y14_c00134{bottom:796.334700px;}
.y5_c00134{bottom:826.328700px;}
.y13_c00134{bottom:826.334700px;}
.y4_c00134{bottom:856.334700px;}
.y12_c00134{bottom:859.145700px;}
.y3_c00134{bottom:916.334700px;}
.y2_c00134{bottom:1006.334700px;}
.h6_c00134{height:50.292000px;}
.h2_c00134{height:54.000000px;}
.h5_c00134{height:64.800000px;}
.h4_c00134{height:78.540000px;}
.h3_c00134{height:100.980000px;}
.h0_c00134{height:1262.835000px;}
.h1_c00134{height:1263.000000px;}
.w0_c00134{width:892.914000px;}
.w1_c00134{width:893.250000px;}
.x0_c00134{left:0.000000px;}
.x2_c00134{left:82.500000px;}
.x3_c00134{left:90.000000px;}
.x4_c00134{left:106.500000px;}
.x5_c00134{left:675.611100px;}
.x1_c00134{left:790.388850px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls4_c00134{letter-spacing:-0.288000pt;}
.ls3_c00134{letter-spacing:0.000000pt;}
.ls0_c00134{letter-spacing:0.640000pt;}
.ls5_c00134{letter-spacing:0.746667pt;}
.ls2_c00134{letter-spacing:1.333333pt;}
.ls1_c00134{letter-spacing:1.466667pt;}
.ws1_c00134{word-spacing:-18.912000pt;}
.ws2_c00134{word-spacing:-13.200000pt;}
.ws0_c00134{word-spacing:-9.066667pt;}
.wsf_c00134{word-spacing:-1.536000pt;}
.ws11_c00134{word-spacing:-1.333333pt;}
.ws4_c00134{word-spacing:-0.746667pt;}
.wsa_c00134{word-spacing:-0.640000pt;}
.ws3_c00134{word-spacing:0.000000pt;}
.wse_c00134{word-spacing:0.256000pt;}
.ws10_c00134{word-spacing:3.392000pt;}
.wsd_c00134{word-spacing:4.224000pt;}
.ws7_c00134{word-spacing:4.736000pt;}
.wsb_c00134{word-spacing:6.336000pt;}
.ws9_c00134{word-spacing:6.848000pt;}
.ws6_c00134{word-spacing:8.064000pt;}
.wsc_c00134{word-spacing:10.112000pt;}
.ws5_c00134{word-spacing:11.136000pt;}
.ws8_c00134{word-spacing:14.080000pt;}
._0_c00134{margin-left:-426.966400pt;}
._4_c00134{margin-left:-5.113600pt;}
._1_c00134{margin-left:-3.733333pt;}
._3_c00134{margin-left:-2.416000pt;}
._2_c00134{margin-left:-1.008000pt;}
.fs1_c00134{font-size:37.333333pt;}
.fs0_c00134{font-size:53.333333pt;}
.fs5_c00134{font-size:58.666667pt;}
.fs4_c00134{font-size:64.000000pt;}
.fs3_c00134{font-size:74.666667pt;}
.fs2_c00134{font-size:96.000000pt;}
.y0_c00134{bottom:0.000000pt;}
.y1_c00134{bottom:36.666667pt;}
.y11_c00134{bottom:334.487733pt;}
.y10_c00134{bottom:361.159733pt;}
.yf_c00134{bottom:387.831733pt;}
.ye_c00134{bottom:414.503733pt;}
.yd_c00134{bottom:441.175733pt;}
.yc_c00134{bottom:467.847733pt;}
.yb_c00134{bottom:494.519733pt;}
.ya_c00134{bottom:547.853067pt;}
.y9_c00134{bottom:627.826400pt;}
.y8_c00134{bottom:654.498400pt;}
.y7_c00134{bottom:681.170400pt;}
.y15_c00134{bottom:681.186400pt;}
.y6_c00134{bottom:707.842400pt;}
.y14_c00134{bottom:707.853067pt;}
.y5_c00134{bottom:734.514400pt;}
.y13_c00134{bottom:734.519733pt;}
.y4_c00134{bottom:761.186400pt;}
.y12_c00134{bottom:763.685067pt;}
.y3_c00134{bottom:814.519733pt;}
.y2_c00134{bottom:894.519733pt;}
.h6_c00134{height:44.704000pt;}
.h2_c00134{height:48.000000pt;}
.h5_c00134{height:57.600000pt;}
.h4_c00134{height:69.813333pt;}
.h3_c00134{height:89.760000pt;}
.h0_c00134{height:1122.520000pt;}
.h1_c00134{height:1122.666667pt;}
.w0_c00134{width:793.701333pt;}
.w1_c00134{width:794.000000pt;}
.x0_c00134{left:0.000000pt;}
.x2_c00134{left:73.333333pt;}
.x3_c00134{left:80.000000pt;}
.x4_c00134{left:94.666667pt;}
.x5_c00134{left:600.543200pt;}
.x1_c00134{left:702.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_687f4f7c0414ae5fc6b8f254.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.199000;font-style: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);}
.m1_c00135{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls1_c00135{letter-spacing:0.000000px;}
.ls0_c00135{letter-spacing:0.720000px;}
.ls2_c00135{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws8_c00135{word-spacing:-2.376000px;}
.wsa_c00135{word-spacing:-1.080000px;}
.ws2_c00135{word-spacing:-0.840000px;}
.ws11_c00135{word-spacing:-0.576000px;}
.ws6_c00135{word-spacing:-0.216000px;}
.ws1_c00135{word-spacing:0.000000px;}
.ws5_c00135{word-spacing:0.072000px;}
.ws7_c00135{word-spacing:0.504000px;}
.ws9_c00135{word-spacing:1.224000px;}
.wsf_c00135{word-spacing:3.456000px;}
.wsc_c00135{word-spacing:4.248000px;}
.ws3_c00135{word-spacing:4.680000px;}
.wsd_c00135{word-spacing:5.976000px;}
.ws10_c00135{word-spacing:6.840000px;}
.ws4_c00135{word-spacing:8.352000px;}
.wse_c00135{word-spacing:13.536000px;}
.wsb_c00135{word-spacing:36.576000px;}
._0_c00135{margin-left:-480.337200px;}
._5_c00135{margin-left:-8.568000px;}
._6_c00135{margin-left:-5.760000px;}
._1_c00135{margin-left:-4.200000px;}
._3_c00135{margin-left:-2.527200px;}
._2_c00135{margin-left:-1.440000px;}
._4_c00135{width:1.922400px;}
.fc2_c00135{color:rgb(32,32,32);}
.fc1_c00135{color:rgb(232,86,17);}
.fc0_c00135{color:rgb(60,60,59);}
.fs1_c00135{font-size:42.000000px;}
.fs0_c00135{font-size:60.000000px;}
.fs3_c00135{font-size:72.000000px;}
.fs2_c00135{font-size:84.000000px;}
.y0_c00135{bottom:0.000000px;}
.y1_c00135{bottom:41.250000px;}
.y13_c00135{bottom:376.298700px;}
.y12_c00135{bottom:406.304700px;}
.y11_c00135{bottom:436.310700px;}
.y10_c00135{bottom:466.316700px;}
.yf_c00135{bottom:496.322700px;}
.ye_c00135{bottom:526.328700px;}
.yd_c00135{bottom:556.334700px;}
.yc_c00135{bottom:616.334700px;}
.yb_c00135{bottom:706.286700px;}
.ya_c00135{bottom:736.292700px;}
.y9_c00135{bottom:766.298700px;}
.y8_c00135{bottom:796.304700px;}
.y7_c00135{bottom:826.310700px;}
.y6_c00135{bottom:856.316700px;}
.y5_c00135{bottom:886.322700px;}
.y4_c00135{bottom:916.328700px;}
.y3_c00135{bottom:946.334700px;}
.y2_c00135{bottom:1006.334700px;}
.h2_c00135{height:54.000000px;}
.h4_c00135{height:64.800000px;}
.h3_c00135{height:78.540000px;}
.h0_c00135{height:1262.835000px;}
.h1_c00135{height:1263.000000px;}
.w0_c00135{width:892.914000px;}
.w1_c00135{width:893.250000px;}
.x0_c00135{left:0.000000px;}
.x2_c00135{left:90.000000px;}
.x3_c00135{left:106.500000px;}
.x1_c00135{left:789.263850px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls1_c00135{letter-spacing:0.000000pt;}
.ls0_c00135{letter-spacing:0.640000pt;}
.ls2_c00135{letter-spacing:0.746667pt;}
.ws0_c00135{word-spacing:-9.066667pt;}
.ws8_c00135{word-spacing:-2.112000pt;}
.wsa_c00135{word-spacing:-0.960000pt;}
.ws2_c00135{word-spacing:-0.746667pt;}
.ws11_c00135{word-spacing:-0.512000pt;}
.ws6_c00135{word-spacing:-0.192000pt;}
.ws1_c00135{word-spacing:0.000000pt;}
.ws5_c00135{word-spacing:0.064000pt;}
.ws7_c00135{word-spacing:0.448000pt;}
.ws9_c00135{word-spacing:1.088000pt;}
.wsf_c00135{word-spacing:3.072000pt;}
.wsc_c00135{word-spacing:3.776000pt;}
.ws3_c00135{word-spacing:4.160000pt;}
.wsd_c00135{word-spacing:5.312000pt;}
.ws10_c00135{word-spacing:6.080000pt;}
.ws4_c00135{word-spacing:7.424000pt;}
.wse_c00135{word-spacing:12.032000pt;}
.wsb_c00135{word-spacing:32.512000pt;}
._0_c00135{margin-left:-426.966400pt;}
._5_c00135{margin-left:-7.616000pt;}
._6_c00135{margin-left:-5.120000pt;}
._1_c00135{margin-left:-3.733333pt;}
._3_c00135{margin-left:-2.246400pt;}
._2_c00135{margin-left:-1.280000pt;}
._4_c00135{width:1.708800pt;}
.fs1_c00135{font-size:37.333333pt;}
.fs0_c00135{font-size:53.333333pt;}
.fs3_c00135{font-size:64.000000pt;}
.fs2_c00135{font-size:74.666667pt;}
.y0_c00135{bottom:0.000000pt;}
.y1_c00135{bottom:36.666667pt;}
.y13_c00135{bottom:334.487733pt;}
.y12_c00135{bottom:361.159733pt;}
.y11_c00135{bottom:387.831733pt;}
.y10_c00135{bottom:414.503733pt;}
.yf_c00135{bottom:441.175733pt;}
.ye_c00135{bottom:467.847733pt;}
.yd_c00135{bottom:494.519733pt;}
.yc_c00135{bottom:547.853067pt;}
.yb_c00135{bottom:627.810400pt;}
.ya_c00135{bottom:654.482400pt;}
.y9_c00135{bottom:681.154400pt;}
.y8_c00135{bottom:707.826400pt;}
.y7_c00135{bottom:734.498400pt;}
.y6_c00135{bottom:761.170400pt;}
.y5_c00135{bottom:787.842400pt;}
.y4_c00135{bottom:814.514400pt;}
.y3_c00135{bottom:841.186400pt;}
.y2_c00135{bottom:894.519733pt;}
.h2_c00135{height:48.000000pt;}
.h4_c00135{height:57.600000pt;}
.h3_c00135{height:69.813333pt;}
.h0_c00135{height:1122.520000pt;}
.h1_c00135{height:1122.666667pt;}
.w0_c00135{width:793.701333pt;}
.w1_c00135{width:794.000000pt;}
.x0_c00135{left:0.000000pt;}
.x2_c00135{left:80.000000pt;}
.x3_c00135{left:94.666667pt;}
.x1_c00135{left:701.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_4829a453264cbee9cb480ba0.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00136;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00136;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00136{font-family:ff5_c00136;line-height:1.155000;font-style: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);}
.m1_c00136{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls2_c00136{letter-spacing:0.000000px;}
.ls0_c00136{letter-spacing:0.864000px;}
.ls1_c00136{letter-spacing:1.200000px;}
.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;}
}
.ws7_c00136{word-spacing:-24.240000px;}
.ws6_c00136{word-spacing:-22.800000px;}
.ws1_c00136{word-spacing:-13.104000px;}
.ws0_c00136{word-spacing:-10.200000px;}
.ws5_c00136{word-spacing:-7.128000px;}
.ws3_c00136{word-spacing:-2.664000px;}
.ws8_c00136{word-spacing:-2.400000px;}
.ws4_c00136{word-spacing:-0.864000px;}
.ws2_c00136{word-spacing:0.000000px;}
._0_c00136{margin-left:-480.337200px;}
._a_c00136{margin-left:-10.800000px;}
._8_c00136{margin-left:-9.000000px;}
._7_c00136{margin-left:-6.854400px;}
._6_c00136{margin-left:-5.760000px;}
._1_c00136{margin-left:-4.200000px;}
._3_c00136{margin-left:-2.534400px;}
._2_c00136{margin-left:-1.065600px;}
._c_c00136{width:1.934400px;}
._5_c00136{width:3.024000px;}
._4_c00136{width:6.753600px;}
._9_c00136{width:23.068800px;}
._b_c00136{width:24.240000px;}
.fc3_c00136{color:rgb(255,255,255);}
.fc2_c00136{color:rgb(233,83,14);}
.fc1_c00136{color:rgb(232,86,17);}
.fc0_c00136{color:rgb(60,60,59);}
.fs1_c00136{font-size:42.000000px;}
.fs0_c00136{font-size:60.000000px;}
.fs3_c00136{font-size:72.000000px;}
.fs4_c00136{font-size:120.000000px;}
.fs2_c00136{font-size:360.000000px;}
.y0_c00136{bottom:0.000000px;}
.y1_c00136{bottom:41.250000px;}
.yf_c00136{bottom:250.269000px;}
.ye_c00136{bottom:271.275000px;}
.yd_c00136{bottom:292.281000px;}
.yc_c00136{bottom:313.287000px;}
.yb_c00136{bottom:334.293000px;}
.ya_c00136{bottom:355.299000px;}
.y9_c00136{bottom:376.305000px;}
.y8_c00136{bottom:442.311000px;}
.y7_c00136{bottom:463.317000px;}
.y6_c00136{bottom:484.323000px;}
.y5_c00136{bottom:505.329000px;}
.y4_c00136{bottom:526.335000px;}
.y3_c00136{bottom:554.433000px;}
.y1b_c00136{bottom:646.334700px;}
.y1a_c00136{bottom:676.334700px;}
.y19_c00136{bottom:706.334700px;}
.y18_c00136{bottom:736.334700px;}
.y17_c00136{bottom:766.334700px;}
.y16_c00136{bottom:796.334700px;}
.y15_c00136{bottom:856.334700px;}
.y14_c00136{bottom:886.334700px;}
.y13_c00136{bottom:916.334700px;}
.y12_c00136{bottom:946.334700px;}
.y11_c00136{bottom:976.334700px;}
.y10_c00136{bottom:1006.334700px;}
.y2_c00136{bottom:1093.526700px;}
.h2_c00136{height:54.000000px;}
.h5_c00136{height:64.800000px;}
.h4_c00136{height:66.456000px;}
.h7_c00136{height:108.000000px;}
.h6_c00136{height:112.200000px;}
.h3_c00136{height:324.000000px;}
.h0_c00136{height:1262.835000px;}
.h1_c00136{height:1263.000000px;}
.w0_c00136{width:892.914000px;}
.w1_c00136{width:893.250000px;}
.x0_c00136{left:0.000000px;}
.x2_c00136{left:81.290250px;}
.x3_c00136{left:82.393650px;}
.x5_c00136{left:112.287450px;}
.x4_c00136{left:127.393650px;}
.x1_c00136{left:791.363850px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls2_c00136{letter-spacing:0.000000pt;}
.ls0_c00136{letter-spacing:0.768000pt;}
.ls1_c00136{letter-spacing:1.066667pt;}
.ws7_c00136{word-spacing:-21.546667pt;}
.ws6_c00136{word-spacing:-20.266667pt;}
.ws1_c00136{word-spacing:-11.648000pt;}
.ws0_c00136{word-spacing:-9.066667pt;}
.ws5_c00136{word-spacing:-6.336000pt;}
.ws3_c00136{word-spacing:-2.368000pt;}
.ws8_c00136{word-spacing:-2.133333pt;}
.ws4_c00136{word-spacing:-0.768000pt;}
.ws2_c00136{word-spacing:0.000000pt;}
._0_c00136{margin-left:-426.966400pt;}
._a_c00136{margin-left:-9.600000pt;}
._8_c00136{margin-left:-8.000000pt;}
._7_c00136{margin-left:-6.092800pt;}
._6_c00136{margin-left:-5.120000pt;}
._1_c00136{margin-left:-3.733333pt;}
._3_c00136{margin-left:-2.252800pt;}
._2_c00136{margin-left:-0.947200pt;}
._c_c00136{width:1.719467pt;}
._5_c00136{width:2.688000pt;}
._4_c00136{width:6.003200pt;}
._9_c00136{width:20.505600pt;}
._b_c00136{width:21.546667pt;}
.fs1_c00136{font-size:37.333333pt;}
.fs0_c00136{font-size:53.333333pt;}
.fs3_c00136{font-size:64.000000pt;}
.fs4_c00136{font-size:106.666667pt;}
.fs2_c00136{font-size:320.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y1_c00136{bottom:36.666667pt;}
.yf_c00136{bottom:222.461333pt;}
.ye_c00136{bottom:241.133333pt;}
.yd_c00136{bottom:259.805333pt;}
.yc_c00136{bottom:278.477333pt;}
.yb_c00136{bottom:297.149333pt;}
.ya_c00136{bottom:315.821333pt;}
.y9_c00136{bottom:334.493333pt;}
.y8_c00136{bottom:393.165333pt;}
.y7_c00136{bottom:411.837333pt;}
.y6_c00136{bottom:430.509333pt;}
.y5_c00136{bottom:449.181333pt;}
.y4_c00136{bottom:467.853333pt;}
.y3_c00136{bottom:492.829333pt;}
.y1b_c00136{bottom:574.519733pt;}
.y1a_c00136{bottom:601.186400pt;}
.y19_c00136{bottom:627.853067pt;}
.y18_c00136{bottom:654.519733pt;}
.y17_c00136{bottom:681.186400pt;}
.y16_c00136{bottom:707.853067pt;}
.y15_c00136{bottom:761.186400pt;}
.y14_c00136{bottom:787.853067pt;}
.y13_c00136{bottom:814.519733pt;}
.y12_c00136{bottom:841.186400pt;}
.y11_c00136{bottom:867.853067pt;}
.y10_c00136{bottom:894.519733pt;}
.y2_c00136{bottom:972.023733pt;}
.h2_c00136{height:48.000000pt;}
.h5_c00136{height:57.600000pt;}
.h4_c00136{height:59.072000pt;}
.h7_c00136{height:96.000000pt;}
.h6_c00136{height:99.733333pt;}
.h3_c00136{height:288.000000pt;}
.h0_c00136{height:1122.520000pt;}
.h1_c00136{height:1122.666667pt;}
.w0_c00136{width:793.701333pt;}
.w1_c00136{width:794.000000pt;}
.x0_c00136{left:0.000000pt;}
.x2_c00136{left:72.258000pt;}
.x3_c00136{left:73.238800pt;}
.x5_c00136{left:99.811067pt;}
.x4_c00136{left:113.238800pt;}
.x1_c00136{left:703.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.160000;font-style:normal;font-weight:normal;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_9199441f23763687eab2a311.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00137;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.161000;font-style: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);}
.m1_c00137{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls5_c00137{letter-spacing:-0.540000px;}
.ls4_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:0.720000px;}
.ls1_c00137{letter-spacing:0.840000px;}
.ls3_c00137{letter-spacing:1.500000px;}
.ls2_c00137{letter-spacing:1.650000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00137{word-spacing:-21.060000px;}
.ws2_c00137{word-spacing:-17.640000px;}
.ws0_c00137{word-spacing:-10.200000px;}
.wsa_c00137{word-spacing:-4.968000px;}
.wsd_c00137{word-spacing:-3.960000px;}
.wsc_c00137{word-spacing:-3.168000px;}
.wsb_c00137{word-spacing:-1.584000px;}
.ws6_c00137{word-spacing:-1.512000px;}
.ws16_c00137{word-spacing:-1.500000px;}
.ws8_c00137{word-spacing:-1.296000px;}
.ws4_c00137{word-spacing:-0.840000px;}
.ws3_c00137{word-spacing:0.000000px;}
.ws10_c00137{word-spacing:0.432000px;}
.wse_c00137{word-spacing:2.304000px;}
.ws13_c00137{word-spacing:8.352000px;}
.ws12_c00137{word-spacing:11.016000px;}
.wsf_c00137{word-spacing:13.176000px;}
.ws14_c00137{word-spacing:13.752000px;}
.ws9_c00137{word-spacing:14.256000px;}
.ws5_c00137{word-spacing:14.832000px;}
.ws15_c00137{word-spacing:15.264000px;}
.ws7_c00137{word-spacing:18.072000px;}
.ws11_c00137{word-spacing:22.464000px;}
._0_c00137{margin-left:-480.337800px;}
._6_c00137{margin-left:-5.709600px;}
._1_c00137{margin-left:-4.200000px;}
._7_c00137{margin-left:-2.592000px;}
._2_c00137{margin-left:-1.440000px;}
._5_c00137{width:1.166400px;}
._3_c00137{width:3.895200px;}
._4_c00137{width:5.342400px;}
.fc3_c00137{color:rgb(32,32,32);}
.fc2_c00137{color:rgb(233,83,14);}
.fc1_c00137{color:rgb(232,86,17);}
.fc4_c00137{color:rgb(157,157,156);}
.fc0_c00137{color:rgb(60,60,59);}
.fs1_c00137{font-size:42.000000px;}
.fs0_c00137{font-size:60.000000px;}
.fs5_c00137{font-size:66.000000px;}
.fs4_c00137{font-size:72.000000px;}
.fs3_c00137{font-size:84.000000px;}
.fs2_c00137{font-size:108.000000px;}
.y0_c00137{bottom:0.000000px;}
.y1_c00137{bottom:41.250000px;}
.y17_c00137{bottom:106.286700px;}
.y16_c00137{bottom:136.292700px;}
.y15_c00137{bottom:166.298700px;}
.y14_c00137{bottom:196.304700px;}
.y13_c00137{bottom:226.310700px;}
.y12_c00137{bottom:256.316700px;}
.y11_c00137{bottom:286.322700px;}
.y10_c00137{bottom:316.328700px;}
.yf_c00137{bottom:346.334700px;}
.ye_c00137{bottom:406.334700px;}
.yd_c00137{bottom:496.322700px;}
.yc_c00137{bottom:526.328700px;}
.yb_c00137{bottom:556.334700px;}
.ya_c00137{bottom:616.334700px;}
.y1f_c00137{bottom:646.334700px;}
.y1e_c00137{bottom:676.334700px;}
.y9_c00137{bottom:706.304700px;}
.y1d_c00137{bottom:706.334700px;}
.y8_c00137{bottom:736.310700px;}
.y1c_c00137{bottom:736.334700px;}
.y7_c00137{bottom:766.316700px;}
.y1b_c00137{bottom:766.334700px;}
.y6_c00137{bottom:796.322700px;}
.y1a_c00137{bottom:796.334700px;}
.y5_c00137{bottom:826.328700px;}
.y19_c00137{bottom:826.334700px;}
.y4_c00137{bottom:856.334700px;}
.y18_c00137{bottom:859.145700px;}
.y3_c00137{bottom:916.334700px;}
.y2_c00137{bottom:1006.334700px;}
.h6_c00137{height:50.292000px;}
.h2_c00137{height:54.000000px;}
.h5_c00137{height:64.800000px;}
.h4_c00137{height:78.540000px;}
.h3_c00137{height:100.980000px;}
.h0_c00137{height:1262.835000px;}
.h1_c00137{height:1263.000000px;}
.w0_c00137{width:892.914000px;}
.w1_c00137{width:893.250000px;}
.x0_c00137{left:0.000000px;}
.x2_c00137{left:82.500000px;}
.x3_c00137{left:90.000000px;}
.x4_c00137{left:106.500000px;}
.x5_c00137{left:675.611100px;}
.x1_c00137{left:789.339000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls5_c00137{letter-spacing:-0.480000pt;}
.ls4_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:0.640000pt;}
.ls1_c00137{letter-spacing:0.746667pt;}
.ls3_c00137{letter-spacing:1.333333pt;}
.ls2_c00137{letter-spacing:1.466667pt;}
.ws1_c00137{word-spacing:-18.720000pt;}
.ws2_c00137{word-spacing:-15.680000pt;}
.ws0_c00137{word-spacing:-9.066667pt;}
.wsa_c00137{word-spacing:-4.416000pt;}
.wsd_c00137{word-spacing:-3.520000pt;}
.wsc_c00137{word-spacing:-2.816000pt;}
.wsb_c00137{word-spacing:-1.408000pt;}
.ws6_c00137{word-spacing:-1.344000pt;}
.ws16_c00137{word-spacing:-1.333333pt;}
.ws8_c00137{word-spacing:-1.152000pt;}
.ws4_c00137{word-spacing:-0.746667pt;}
.ws3_c00137{word-spacing:0.000000pt;}
.ws10_c00137{word-spacing:0.384000pt;}
.wse_c00137{word-spacing:2.048000pt;}
.ws13_c00137{word-spacing:7.424000pt;}
.ws12_c00137{word-spacing:9.792000pt;}
.wsf_c00137{word-spacing:11.712000pt;}
.ws14_c00137{word-spacing:12.224000pt;}
.ws9_c00137{word-spacing:12.672000pt;}
.ws5_c00137{word-spacing:13.184000pt;}
.ws15_c00137{word-spacing:13.568000pt;}
.ws7_c00137{word-spacing:16.064000pt;}
.ws11_c00137{word-spacing:19.968000pt;}
._0_c00137{margin-left:-426.966933pt;}
._6_c00137{margin-left:-5.075200pt;}
._1_c00137{margin-left:-3.733333pt;}
._7_c00137{margin-left:-2.304000pt;}
._2_c00137{margin-left:-1.280000pt;}
._5_c00137{width:1.036800pt;}
._3_c00137{width:3.462400pt;}
._4_c00137{width:4.748800pt;}
.fs1_c00137{font-size:37.333333pt;}
.fs0_c00137{font-size:53.333333pt;}
.fs5_c00137{font-size:58.666667pt;}
.fs4_c00137{font-size:64.000000pt;}
.fs3_c00137{font-size:74.666667pt;}
.fs2_c00137{font-size:96.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y1_c00137{bottom:36.666667pt;}
.y17_c00137{bottom:94.477067pt;}
.y16_c00137{bottom:121.149067pt;}
.y15_c00137{bottom:147.821067pt;}
.y14_c00137{bottom:174.493067pt;}
.y13_c00137{bottom:201.165067pt;}
.y12_c00137{bottom:227.837067pt;}
.y11_c00137{bottom:254.509067pt;}
.y10_c00137{bottom:281.181067pt;}
.yf_c00137{bottom:307.853067pt;}
.ye_c00137{bottom:361.186400pt;}
.yd_c00137{bottom:441.175733pt;}
.yc_c00137{bottom:467.847733pt;}
.yb_c00137{bottom:494.519733pt;}
.ya_c00137{bottom:547.853067pt;}
.y1f_c00137{bottom:574.519733pt;}
.y1e_c00137{bottom:601.186400pt;}
.y9_c00137{bottom:627.826400pt;}
.y1d_c00137{bottom:627.853067pt;}
.y8_c00137{bottom:654.498400pt;}
.y1c_c00137{bottom:654.519733pt;}
.y7_c00137{bottom:681.170400pt;}
.y1b_c00137{bottom:681.186400pt;}
.y6_c00137{bottom:707.842400pt;}
.y1a_c00137{bottom:707.853067pt;}
.y5_c00137{bottom:734.514400pt;}
.y19_c00137{bottom:734.519733pt;}
.y4_c00137{bottom:761.186400pt;}
.y18_c00137{bottom:763.685067pt;}
.y3_c00137{bottom:814.519733pt;}
.y2_c00137{bottom:894.519733pt;}
.h6_c00137{height:44.704000pt;}
.h2_c00137{height:48.000000pt;}
.h5_c00137{height:57.600000pt;}
.h4_c00137{height:69.813333pt;}
.h3_c00137{height:89.760000pt;}
.h0_c00137{height:1122.520000pt;}
.h1_c00137{height:1122.666667pt;}
.w0_c00137{width:793.701333pt;}
.w1_c00137{width:794.000000pt;}
.x0_c00137{left:0.000000pt;}
.x2_c00137{left:73.333333pt;}
.x3_c00137{left:80.000000pt;}
.x4_c00137{left:94.666667pt;}
.x5_c00137{left:600.543200pt;}
.x1_c00137{left:701.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls1_c00138{letter-spacing:0.000000px;}
.ls0_c00138{letter-spacing:0.720000px;}
.ls2_c00138{letter-spacing:0.840000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:-10.200000px;}
.wsa_c00138{word-spacing:-2.880000px;}
.wsb_c00138{word-spacing:-2.520000px;}
.ws5_c00138{word-spacing:-2.160000px;}
.ws9_c00138{word-spacing:-1.944000px;}
.ws2_c00138{word-spacing:-0.840000px;}
.ws13_c00138{word-spacing:-0.720000px;}
.ws1_c00138{word-spacing:0.000000px;}
.ws10_c00138{word-spacing:1.152000px;}
.ws6_c00138{word-spacing:2.376000px;}
.ws3_c00138{word-spacing:2.880000px;}
.ws12_c00138{word-spacing:3.312000px;}
.wsc_c00138{word-spacing:4.176000px;}
.wsf_c00138{word-spacing:4.464000px;}
.ws7_c00138{word-spacing:5.688000px;}
.ws4_c00138{word-spacing:6.336000px;}
.wsd_c00138{word-spacing:7.704000px;}
.wse_c00138{word-spacing:9.792000px;}
.ws11_c00138{word-spacing:10.152000px;}
.ws8_c00138{word-spacing:10.800000px;}
._0_c00138{margin-left:-480.337200px;}
._1_c00138{margin-left:-4.200000px;}
._3_c00138{margin-left:-3.057600px;}
._2_c00138{margin-left:-1.440000px;}
._4_c00138{width:1.620000px;}
._5_c00138{width:4.651200px;}
.fc2_c00138{color:rgb(32,32,32);}
.fc1_c00138{color:rgb(232,86,17);}
.fc0_c00138{color:rgb(60,60,59);}
.fs1_c00138{font-size:42.000000px;}
.fs0_c00138{font-size:60.000000px;}
.fs3_c00138{font-size:72.000000px;}
.fs2_c00138{font-size:84.000000px;}
.y0_c00138{bottom:0.000000px;}
.y1_c00138{bottom:41.250000px;}
.y15_c00138{bottom:316.298700px;}
.y14_c00138{bottom:346.304700px;}
.y13_c00138{bottom:376.310700px;}
.y12_c00138{bottom:406.316700px;}
.y11_c00138{bottom:436.322700px;}
.y10_c00138{bottom:466.328700px;}
.yf_c00138{bottom:496.334700px;}
.ye_c00138{bottom:556.334700px;}
.yd_c00138{bottom:646.274700px;}
.yc_c00138{bottom:676.280700px;}
.yb_c00138{bottom:706.286700px;}
.ya_c00138{bottom:736.292700px;}
.y9_c00138{bottom:766.298700px;}
.y8_c00138{bottom:796.304700px;}
.y7_c00138{bottom:826.310700px;}
.y6_c00138{bottom:856.316700px;}
.y5_c00138{bottom:886.322700px;}
.y4_c00138{bottom:916.328700px;}
.y3_c00138{bottom:946.334700px;}
.y2_c00138{bottom:1006.334700px;}
.h2_c00138{height:54.000000px;}
.h4_c00138{height:64.800000px;}
.h3_c00138{height:78.540000px;}
.h0_c00138{height:1262.835000px;}
.h1_c00138{height:1263.000000px;}
.w0_c00138{width:892.914000px;}
.w1_c00138{width:893.250000px;}
.x0_c00138{left:0.000000px;}
.x2_c00138{left:90.000000px;}
.x3_c00138{left:106.500000px;}
.x1_c00138{left:789.263850px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls1_c00138{letter-spacing:0.000000pt;}
.ls0_c00138{letter-spacing:0.640000pt;}
.ls2_c00138{letter-spacing:0.746667pt;}
.ws0_c00138{word-spacing:-9.066667pt;}
.wsa_c00138{word-spacing:-2.560000pt;}
.wsb_c00138{word-spacing:-2.240000pt;}
.ws5_c00138{word-spacing:-1.920000pt;}
.ws9_c00138{word-spacing:-1.728000pt;}
.ws2_c00138{word-spacing:-0.746667pt;}
.ws13_c00138{word-spacing:-0.640000pt;}
.ws1_c00138{word-spacing:0.000000pt;}
.ws10_c00138{word-spacing:1.024000pt;}
.ws6_c00138{word-spacing:2.112000pt;}
.ws3_c00138{word-spacing:2.560000pt;}
.ws12_c00138{word-spacing:2.944000pt;}
.wsc_c00138{word-spacing:3.712000pt;}
.wsf_c00138{word-spacing:3.968000pt;}
.ws7_c00138{word-spacing:5.056000pt;}
.ws4_c00138{word-spacing:5.632000pt;}
.wsd_c00138{word-spacing:6.848000pt;}
.wse_c00138{word-spacing:8.704000pt;}
.ws11_c00138{word-spacing:9.024000pt;}
.ws8_c00138{word-spacing:9.600000pt;}
._0_c00138{margin-left:-426.966400pt;}
._1_c00138{margin-left:-3.733333pt;}
._3_c00138{margin-left:-2.717867pt;}
._2_c00138{margin-left:-1.280000pt;}
._4_c00138{width:1.440000pt;}
._5_c00138{width:4.134400pt;}
.fs1_c00138{font-size:37.333333pt;}
.fs0_c00138{font-size:53.333333pt;}
.fs3_c00138{font-size:64.000000pt;}
.fs2_c00138{font-size:74.666667pt;}
.y0_c00138{bottom:0.000000pt;}
.y1_c00138{bottom:36.666667pt;}
.y15_c00138{bottom:281.154400pt;}
.y14_c00138{bottom:307.826400pt;}
.y13_c00138{bottom:334.498400pt;}
.y12_c00138{bottom:361.170400pt;}
.y11_c00138{bottom:387.842400pt;}
.y10_c00138{bottom:414.514400pt;}
.yf_c00138{bottom:441.186400pt;}
.ye_c00138{bottom:494.519733pt;}
.yd_c00138{bottom:574.466400pt;}
.yc_c00138{bottom:601.138400pt;}
.yb_c00138{bottom:627.810400pt;}
.ya_c00138{bottom:654.482400pt;}
.y9_c00138{bottom:681.154400pt;}
.y8_c00138{bottom:707.826400pt;}
.y7_c00138{bottom:734.498400pt;}
.y6_c00138{bottom:761.170400pt;}
.y5_c00138{bottom:787.842400pt;}
.y4_c00138{bottom:814.514400pt;}
.y3_c00138{bottom:841.186400pt;}
.y2_c00138{bottom:894.519733pt;}
.h2_c00138{height:48.000000pt;}
.h4_c00138{height:57.600000pt;}
.h3_c00138{height:69.813333pt;}
.h0_c00138{height:1122.520000pt;}
.h1_c00138{height:1122.666667pt;}
.w0_c00138{width:793.701333pt;}
.w1_c00138{width:794.000000pt;}
.x0_c00138{left:0.000000pt;}
.x2_c00138{left:80.000000pt;}
.x3_c00138{left:94.666667pt;}
.x1_c00138{left:701.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73c7dea85163a337c1490c92.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00139;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00139;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.161000;font-style: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);}
.m1_c00139{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls5_c00139{letter-spacing:-0.324000px;}
.ls4_c00139{letter-spacing:0.000000px;}
.ls0_c00139{letter-spacing:0.720000px;}
.ls1_c00139{letter-spacing:0.840000px;}
.ls3_c00139{letter-spacing:1.500000px;}
.ls2_c00139{letter-spacing:1.650000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00139{word-spacing:-21.276000px;}
.ws2_c00139{word-spacing:-17.640000px;}
.ws3_c00139{word-spacing:-14.850000px;}
.ws0_c00139{word-spacing:-10.200000px;}
.ws8_c00139{word-spacing:-3.528000px;}
.wsb_c00139{word-spacing:-1.656000px;}
.ws14_c00139{word-spacing:-1.500000px;}
.ws11_c00139{word-spacing:-1.296000px;}
.ws5_c00139{word-spacing:-0.840000px;}
.ws12_c00139{word-spacing:-0.144000px;}
.ws4_c00139{word-spacing:0.000000px;}
.ws6_c00139{word-spacing:0.144000px;}
.ws10_c00139{word-spacing:1.440000px;}
.ws9_c00139{word-spacing:2.160000px;}
.ws7_c00139{word-spacing:3.528000px;}
.wsc_c00139{word-spacing:5.616000px;}
.wsf_c00139{word-spacing:5.832000px;}
.wsd_c00139{word-spacing:9.504000px;}
.ws13_c00139{word-spacing:10.296000px;}
.wsa_c00139{word-spacing:11.160000px;}
.wse_c00139{word-spacing:16.128000px;}
._0_c00139{margin-left:-480.337200px;}
._5_c00139{margin-left:-10.080000px;}
._6_c00139{margin-left:-6.480000px;}
._1_c00139{margin-left:-4.200000px;}
._3_c00139{margin-left:-2.368800px;}
._2_c00139{margin-left:-1.134000px;}
._4_c00139{width:1.875600px;}
.fc3_c00139{color:rgb(32,32,32);}
.fc2_c00139{color:rgb(233,83,14);}
.fc1_c00139{color:rgb(232,86,17);}
.fc4_c00139{color:rgb(157,157,156);}
.fc0_c00139{color:rgb(60,60,59);}
.fs1_c00139{font-size:42.000000px;}
.fs0_c00139{font-size:60.000000px;}
.fs5_c00139{font-size:66.000000px;}
.fs4_c00139{font-size:72.000000px;}
.fs3_c00139{font-size:84.000000px;}
.fs2_c00139{font-size:108.000000px;}
.y0_c00139{bottom:0.000000px;}
.y1_c00139{bottom:41.250000px;}
.y15_c00139{bottom:166.286700px;}
.y14_c00139{bottom:196.292700px;}
.y13_c00139{bottom:226.298700px;}
.y12_c00139{bottom:256.304700px;}
.y11_c00139{bottom:286.310700px;}
.y10_c00139{bottom:316.316700px;}
.yf_c00139{bottom:346.322700px;}
.ye_c00139{bottom:376.328700px;}
.yd_c00139{bottom:406.334700px;}
.yc_c00139{bottom:466.334700px;}
.yb_c00139{bottom:556.328700px;}
.ya_c00139{bottom:586.334700px;}
.y9_c00139{bottom:646.334700px;}
.y1c_c00139{bottom:676.334700px;}
.y1b_c00139{bottom:706.334700px;}
.y8_c00139{bottom:736.310700px;}
.y1a_c00139{bottom:736.334700px;}
.y7_c00139{bottom:766.316700px;}
.y19_c00139{bottom:766.334700px;}
.y6_c00139{bottom:796.322700px;}
.y18_c00139{bottom:796.334700px;}
.y5_c00139{bottom:826.328700px;}
.y17_c00139{bottom:826.334700px;}
.y4_c00139{bottom:856.334700px;}
.y16_c00139{bottom:859.145700px;}
.y3_c00139{bottom:916.334700px;}
.y2_c00139{bottom:1006.334700px;}
.h6_c00139{height:50.292000px;}
.h2_c00139{height:54.000000px;}
.h5_c00139{height:64.800000px;}
.h4_c00139{height:78.540000px;}
.h3_c00139{height:100.980000px;}
.h0_c00139{height:1262.835000px;}
.h1_c00139{height:1263.000000px;}
.w0_c00139{width:892.914000px;}
.w1_c00139{width:893.250000px;}
.x0_c00139{left:0.000000px;}
.x2_c00139{left:82.500000px;}
.x3_c00139{left:90.000000px;}
.x4_c00139{left:106.500000px;}
.x5_c00139{left:675.611100px;}
.x1_c00139{left:788.303850px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls5_c00139{letter-spacing:-0.288000pt;}
.ls4_c00139{letter-spacing:0.000000pt;}
.ls0_c00139{letter-spacing:0.640000pt;}
.ls1_c00139{letter-spacing:0.746667pt;}
.ls3_c00139{letter-spacing:1.333333pt;}
.ls2_c00139{letter-spacing:1.466667pt;}
.ws1_c00139{word-spacing:-18.912000pt;}
.ws2_c00139{word-spacing:-15.680000pt;}
.ws3_c00139{word-spacing:-13.200000pt;}
.ws0_c00139{word-spacing:-9.066667pt;}
.ws8_c00139{word-spacing:-3.136000pt;}
.wsb_c00139{word-spacing:-1.472000pt;}
.ws14_c00139{word-spacing:-1.333333pt;}
.ws11_c00139{word-spacing:-1.152000pt;}
.ws5_c00139{word-spacing:-0.746667pt;}
.ws12_c00139{word-spacing:-0.128000pt;}
.ws4_c00139{word-spacing:0.000000pt;}
.ws6_c00139{word-spacing:0.128000pt;}
.ws10_c00139{word-spacing:1.280000pt;}
.ws9_c00139{word-spacing:1.920000pt;}
.ws7_c00139{word-spacing:3.136000pt;}
.wsc_c00139{word-spacing:4.992000pt;}
.wsf_c00139{word-spacing:5.184000pt;}
.wsd_c00139{word-spacing:8.448000pt;}
.ws13_c00139{word-spacing:9.152000pt;}
.wsa_c00139{word-spacing:9.920000pt;}
.wse_c00139{word-spacing:14.336000pt;}
._0_c00139{margin-left:-426.966400pt;}
._5_c00139{margin-left:-8.960000pt;}
._6_c00139{margin-left:-5.760000pt;}
._1_c00139{margin-left:-3.733333pt;}
._3_c00139{margin-left:-2.105600pt;}
._2_c00139{margin-left:-1.008000pt;}
._4_c00139{width:1.667200pt;}
.fs1_c00139{font-size:37.333333pt;}
.fs0_c00139{font-size:53.333333pt;}
.fs5_c00139{font-size:58.666667pt;}
.fs4_c00139{font-size:64.000000pt;}
.fs3_c00139{font-size:74.666667pt;}
.fs2_c00139{font-size:96.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y1_c00139{bottom:36.666667pt;}
.y15_c00139{bottom:147.810400pt;}
.y14_c00139{bottom:174.482400pt;}
.y13_c00139{bottom:201.154400pt;}
.y12_c00139{bottom:227.826400pt;}
.y11_c00139{bottom:254.498400pt;}
.y10_c00139{bottom:281.170400pt;}
.yf_c00139{bottom:307.842400pt;}
.ye_c00139{bottom:334.514400pt;}
.yd_c00139{bottom:361.186400pt;}
.yc_c00139{bottom:414.519733pt;}
.yb_c00139{bottom:494.514400pt;}
.ya_c00139{bottom:521.186400pt;}
.y9_c00139{bottom:574.519733pt;}
.y1c_c00139{bottom:601.186400pt;}
.y1b_c00139{bottom:627.853067pt;}
.y8_c00139{bottom:654.498400pt;}
.y1a_c00139{bottom:654.519733pt;}
.y7_c00139{bottom:681.170400pt;}
.y19_c00139{bottom:681.186400pt;}
.y6_c00139{bottom:707.842400pt;}
.y18_c00139{bottom:707.853067pt;}
.y5_c00139{bottom:734.514400pt;}
.y17_c00139{bottom:734.519733pt;}
.y4_c00139{bottom:761.186400pt;}
.y16_c00139{bottom:763.685067pt;}
.y3_c00139{bottom:814.519733pt;}
.y2_c00139{bottom:894.519733pt;}
.h6_c00139{height:44.704000pt;}
.h2_c00139{height:48.000000pt;}
.h5_c00139{height:57.600000pt;}
.h4_c00139{height:69.813333pt;}
.h3_c00139{height:89.760000pt;}
.h0_c00139{height:1122.520000pt;}
.h1_c00139{height:1122.666667pt;}
.w0_c00139{width:793.701333pt;}
.w1_c00139{width:794.000000pt;}
.x0_c00139{left:0.000000pt;}
.x2_c00139{left:73.333333pt;}
.x3_c00139{left:80.000000pt;}
.x4_c00139{left:94.666667pt;}
.x5_c00139{left:600.543200pt;}
.x1_c00139{left:700.714533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5cfe859590981b00f11a9f9b.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00140;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.199000;font-style: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);}
.m1_c00140{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls1_c00140{letter-spacing:0.000000px;}
.ls0_c00140{letter-spacing:0.720000px;}
.ls2_c00140{letter-spacing:0.840000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:-10.200000px;}
.ws7_c00140{word-spacing:-5.472000px;}
.ws5_c00140{word-spacing:-3.168000px;}
.wsa_c00140{word-spacing:-0.936000px;}
.ws2_c00140{word-spacing:-0.840000px;}
.ws1_c00140{word-spacing:0.000000px;}
.wsc_c00140{word-spacing:2.592000px;}
.ws6_c00140{word-spacing:3.240000px;}
.ws8_c00140{word-spacing:5.256000px;}
.ws3_c00140{word-spacing:5.544000px;}
.wsb_c00140{word-spacing:7.560000px;}
.ws9_c00140{word-spacing:10.080000px;}
.wsd_c00140{word-spacing:11.952000px;}
.ws4_c00140{word-spacing:12.096000px;}
.wse_c00140{word-spacing:17.568000px;}
._0_c00140{margin-left:-480.337800px;}
._4_c00140{margin-left:-11.066400px;}
._3_c00140{margin-left:-5.383200px;}
._1_c00140{margin-left:-4.200000px;}
._6_c00140{margin-left:-2.498400px;}
._2_c00140{margin-left:-1.440000px;}
._5_c00140{width:1.425600px;}
.fc2_c00140{color:rgb(32,32,32);}
.fc1_c00140{color:rgb(232,86,17);}
.fc0_c00140{color:rgb(60,60,59);}
.fs1_c00140{font-size:42.000000px;}
.fs0_c00140{font-size:60.000000px;}
.fs3_c00140{font-size:72.000000px;}
.fs2_c00140{font-size:84.000000px;}
.y0_c00140{bottom:0.000000px;}
.y1_c00140{bottom:41.250000px;}
.y12_c00140{bottom:406.310700px;}
.y11_c00140{bottom:436.316700px;}
.y10_c00140{bottom:466.322700px;}
.yf_c00140{bottom:496.328700px;}
.ye_c00140{bottom:526.334700px;}
.yd_c00140{bottom:586.334700px;}
.yc_c00140{bottom:676.280700px;}
.yb_c00140{bottom:706.286700px;}
.ya_c00140{bottom:736.292700px;}
.y9_c00140{bottom:766.298700px;}
.y8_c00140{bottom:796.304700px;}
.y7_c00140{bottom:826.310700px;}
.y6_c00140{bottom:856.316700px;}
.y5_c00140{bottom:886.322700px;}
.y4_c00140{bottom:916.328700px;}
.y3_c00140{bottom:946.334700px;}
.y2_c00140{bottom:1006.334700px;}
.h2_c00140{height:54.000000px;}
.h4_c00140{height:64.800000px;}
.h3_c00140{height:78.540000px;}
.h0_c00140{height:1262.835000px;}
.h1_c00140{height:1263.000000px;}
.w0_c00140{width:892.914000px;}
.w1_c00140{width:893.250000px;}
.x0_c00140{left:0.000000px;}
.x2_c00140{left:90.000000px;}
.x3_c00140{left:106.500000px;}
.x1_c00140{left:791.964000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls1_c00140{letter-spacing:0.000000pt;}
.ls0_c00140{letter-spacing:0.640000pt;}
.ls2_c00140{letter-spacing:0.746667pt;}
.ws0_c00140{word-spacing:-9.066667pt;}
.ws7_c00140{word-spacing:-4.864000pt;}
.ws5_c00140{word-spacing:-2.816000pt;}
.wsa_c00140{word-spacing:-0.832000pt;}
.ws2_c00140{word-spacing:-0.746667pt;}
.ws1_c00140{word-spacing:0.000000pt;}
.wsc_c00140{word-spacing:2.304000pt;}
.ws6_c00140{word-spacing:2.880000pt;}
.ws8_c00140{word-spacing:4.672000pt;}
.ws3_c00140{word-spacing:4.928000pt;}
.wsb_c00140{word-spacing:6.720000pt;}
.ws9_c00140{word-spacing:8.960000pt;}
.wsd_c00140{word-spacing:10.624000pt;}
.ws4_c00140{word-spacing:10.752000pt;}
.wse_c00140{word-spacing:15.616000pt;}
._0_c00140{margin-left:-426.966933pt;}
._4_c00140{margin-left:-9.836800pt;}
._3_c00140{margin-left:-4.785067pt;}
._1_c00140{margin-left:-3.733333pt;}
._6_c00140{margin-left:-2.220800pt;}
._2_c00140{margin-left:-1.280000pt;}
._5_c00140{width:1.267200pt;}
.fs1_c00140{font-size:37.333333pt;}
.fs0_c00140{font-size:53.333333pt;}
.fs3_c00140{font-size:64.000000pt;}
.fs2_c00140{font-size:74.666667pt;}
.y0_c00140{bottom:0.000000pt;}
.y1_c00140{bottom:36.666667pt;}
.y12_c00140{bottom:361.165067pt;}
.y11_c00140{bottom:387.837067pt;}
.y10_c00140{bottom:414.509067pt;}
.yf_c00140{bottom:441.181067pt;}
.ye_c00140{bottom:467.853067pt;}
.yd_c00140{bottom:521.186400pt;}
.yc_c00140{bottom:601.138400pt;}
.yb_c00140{bottom:627.810400pt;}
.ya_c00140{bottom:654.482400pt;}
.y9_c00140{bottom:681.154400pt;}
.y8_c00140{bottom:707.826400pt;}
.y7_c00140{bottom:734.498400pt;}
.y6_c00140{bottom:761.170400pt;}
.y5_c00140{bottom:787.842400pt;}
.y4_c00140{bottom:814.514400pt;}
.y3_c00140{bottom:841.186400pt;}
.y2_c00140{bottom:894.519733pt;}
.h2_c00140{height:48.000000pt;}
.h4_c00140{height:57.600000pt;}
.h3_c00140{height:69.813333pt;}
.h0_c00140{height:1122.520000pt;}
.h1_c00140{height:1122.666667pt;}
.w0_c00140{width:793.701333pt;}
.w1_c00140{width:794.000000pt;}
.x0_c00140{left:0.000000pt;}
.x2_c00140{left:80.000000pt;}
.x3_c00140{left:94.666667pt;}
.x1_c00140{left:703.968000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00141;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00141;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00141;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00141{font-family:ff5_c00141;line-height:1.155000;font-style: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);}
.m1_c00141{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls2_c00141{letter-spacing:0.000000px;}
.ls0_c00141{letter-spacing:0.864000px;}
.ls1_c00141{letter-spacing:1.200000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00141{word-spacing:-13.104000px;}
.ws0_c00141{word-spacing:-10.200000px;}
.wsa_c00141{word-spacing:-9.720000px;}
.ws6_c00141{word-spacing:-6.840000px;}
.ws7_c00141{word-spacing:-5.328000px;}
.ws3_c00141{word-spacing:-4.752000px;}
.ws5_c00141{word-spacing:-4.464000px;}
.ws8_c00141{word-spacing:-1.440000px;}
.ws9_c00141{word-spacing:-1.200000px;}
.ws4_c00141{word-spacing:-0.864000px;}
.ws2_c00141{word-spacing:0.000000px;}
._0_c00141{margin-left:-480.337200px;}
._9_c00141{margin-left:-10.800000px;}
._7_c00141{margin-left:-9.000000px;}
._5_c00141{margin-left:-6.480000px;}
._1_c00141{margin-left:-4.200000px;}
._3_c00141{margin-left:-1.440000px;}
._4_c00141{width:1.440000px;}
._2_c00141{width:4.752000px;}
._6_c00141{width:6.840000px;}
._8_c00141{width:9.720000px;}
.fc3_c00141{color:rgb(255,255,255);}
.fc2_c00141{color:rgb(233,83,14);}
.fc1_c00141{color:rgb(232,86,17);}
.fc0_c00141{color:rgb(60,60,59);}
.fs1_c00141{font-size:42.000000px;}
.fs0_c00141{font-size:60.000000px;}
.fs3_c00141{font-size:72.000000px;}
.fs4_c00141{font-size:120.000000px;}
.fs2_c00141{font-size:360.000000px;}
.y0_c00141{bottom:0.000000px;}
.y1_c00141{bottom:41.250000px;}
.y19_c00141{bottom:133.238700px;}
.y18_c00141{bottom:154.244700px;}
.y17_c00141{bottom:175.250700px;}
.y16_c00141{bottom:196.256700px;}
.y15_c00141{bottom:238.250700px;}
.y14_c00141{bottom:259.256700px;}
.y13_c00141{bottom:280.262700px;}
.y12_c00141{bottom:322.256700px;}
.y11_c00141{bottom:343.262700px;}
.y10_c00141{bottom:364.268700px;}
.yf_c00141{bottom:385.274700px;}
.ye_c00141{bottom:406.280700px;}
.yd_c00141{bottom:454.286700px;}
.yc_c00141{bottom:475.292700px;}
.yb_c00141{bottom:496.298700px;}
.ya_c00141{bottom:544.304700px;}
.y9_c00141{bottom:565.310700px;}
.y8_c00141{bottom:586.316700px;}
.y7_c00141{bottom:643.322700px;}
.y6_c00141{bottom:664.328700px;}
.y5_c00141{bottom:685.334700px;}
.y4_c00141{bottom:706.340700px;}
.y3_c00141{bottom:752.834700px;}
.y1c_c00141{bottom:946.334700px;}
.y1b_c00141{bottom:976.334700px;}
.y1a_c00141{bottom:1006.334700px;}
.y2_c00141{bottom:1093.526700px;}
.h2_c00141{height:54.000000px;}
.h5_c00141{height:64.800000px;}
.h4_c00141{height:66.456000px;}
.h6_c00141{height:112.200000px;}
.h3_c00141{height:324.000000px;}
.h0_c00141{height:1262.835000px;}
.h1_c00141{height:1263.000000px;}
.w0_c00141{width:892.914000px;}
.w1_c00141{width:893.250000px;}
.x0_c00141{left:0.000000px;}
.x2_c00141{left:81.290250px;}
.x3_c00141{left:82.393650px;}
.x5_c00141{left:112.287450px;}
.x4_c00141{left:127.393650px;}
.x1_c00141{left:789.488850px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls2_c00141{letter-spacing:0.000000pt;}
.ls0_c00141{letter-spacing:0.768000pt;}
.ls1_c00141{letter-spacing:1.066667pt;}
.ws1_c00141{word-spacing:-11.648000pt;}
.ws0_c00141{word-spacing:-9.066667pt;}
.wsa_c00141{word-spacing:-8.640000pt;}
.ws6_c00141{word-spacing:-6.080000pt;}
.ws7_c00141{word-spacing:-4.736000pt;}
.ws3_c00141{word-spacing:-4.224000pt;}
.ws5_c00141{word-spacing:-3.968000pt;}
.ws8_c00141{word-spacing:-1.280000pt;}
.ws9_c00141{word-spacing:-1.066667pt;}
.ws4_c00141{word-spacing:-0.768000pt;}
.ws2_c00141{word-spacing:0.000000pt;}
._0_c00141{margin-left:-426.966400pt;}
._9_c00141{margin-left:-9.600000pt;}
._7_c00141{margin-left:-8.000000pt;}
._5_c00141{margin-left:-5.760000pt;}
._1_c00141{margin-left:-3.733333pt;}
._3_c00141{margin-left:-1.280000pt;}
._4_c00141{width:1.280000pt;}
._2_c00141{width:4.224000pt;}
._6_c00141{width:6.080000pt;}
._8_c00141{width:8.640000pt;}
.fs1_c00141{font-size:37.333333pt;}
.fs0_c00141{font-size:53.333333pt;}
.fs3_c00141{font-size:64.000000pt;}
.fs4_c00141{font-size:106.666667pt;}
.fs2_c00141{font-size:320.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.y1_c00141{bottom:36.666667pt;}
.y19_c00141{bottom:118.434400pt;}
.y18_c00141{bottom:137.106400pt;}
.y17_c00141{bottom:155.778400pt;}
.y16_c00141{bottom:174.450400pt;}
.y15_c00141{bottom:211.778400pt;}
.y14_c00141{bottom:230.450400pt;}
.y13_c00141{bottom:249.122400pt;}
.y12_c00141{bottom:286.450400pt;}
.y11_c00141{bottom:305.122400pt;}
.y10_c00141{bottom:323.794400pt;}
.yf_c00141{bottom:342.466400pt;}
.ye_c00141{bottom:361.138400pt;}
.yd_c00141{bottom:403.810400pt;}
.yc_c00141{bottom:422.482400pt;}
.yb_c00141{bottom:441.154400pt;}
.ya_c00141{bottom:483.826400pt;}
.y9_c00141{bottom:502.498400pt;}
.y8_c00141{bottom:521.170400pt;}
.y7_c00141{bottom:571.842400pt;}
.y6_c00141{bottom:590.514400pt;}
.y5_c00141{bottom:609.186400pt;}
.y4_c00141{bottom:627.858400pt;}
.y3_c00141{bottom:669.186400pt;}
.y1c_c00141{bottom:841.186400pt;}
.y1b_c00141{bottom:867.853067pt;}
.y1a_c00141{bottom:894.519733pt;}
.y2_c00141{bottom:972.023733pt;}
.h2_c00141{height:48.000000pt;}
.h5_c00141{height:57.600000pt;}
.h4_c00141{height:59.072000pt;}
.h6_c00141{height:99.733333pt;}
.h3_c00141{height:288.000000pt;}
.h0_c00141{height:1122.520000pt;}
.h1_c00141{height:1122.666667pt;}
.w0_c00141{width:793.701333pt;}
.w1_c00141{width:794.000000pt;}
.x0_c00141{left:0.000000pt;}
.x2_c00141{left:72.258000pt;}
.x3_c00141{left:73.238800pt;}
.x5_c00141{left:99.811067pt;}
.x4_c00141{left:113.238800pt;}
.x1_c00141{left:701.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.161000;font-style: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);}
.m1_c00142{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls5_c00142{letter-spacing:-0.540000px;}
.ls4_c00142{letter-spacing:0.000000px;}
.ls0_c00142{letter-spacing:0.720000px;}
.ls1_c00142{letter-spacing:0.840000px;}
.ls3_c00142{letter-spacing:1.500000px;}
.ls2_c00142{letter-spacing:1.650000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00142{word-spacing:-21.060000px;}
.ws2_c00142{word-spacing:-17.640000px;}
.ws0_c00142{word-spacing:-10.200000px;}
.wsf_c00142{word-spacing:-3.024000px;}
.ws10_c00142{word-spacing:-1.500000px;}
.ws4_c00142{word-spacing:-0.840000px;}
.wse_c00142{word-spacing:-0.072000px;}
.ws3_c00142{word-spacing:0.000000px;}
.wsc_c00142{word-spacing:0.360000px;}
.wsb_c00142{word-spacing:0.432000px;}
.wsa_c00142{word-spacing:1.800000px;}
.ws9_c00142{word-spacing:4.392000px;}
.ws8_c00142{word-spacing:5.328000px;}
.ws5_c00142{word-spacing:5.544000px;}
.wsd_c00142{word-spacing:6.912000px;}
.ws7_c00142{word-spacing:13.392000px;}
.ws6_c00142{word-spacing:17.784000px;}
._0_c00142{margin-left:-480.337800px;}
._3_c00142{margin-left:-10.080000px;}
._1_c00142{margin-left:-4.200000px;}
._2_c00142{margin-left:-1.440000px;}
.fc3_c00142{color:rgb(32,32,32);}
.fc2_c00142{color:rgb(233,83,14);}
.fc1_c00142{color:rgb(232,86,17);}
.fc4_c00142{color:rgb(157,157,156);}
.fc0_c00142{color:rgb(60,60,59);}
.fs1_c00142{font-size:42.000000px;}
.fs0_c00142{font-size:60.000000px;}
.fs5_c00142{font-size:66.000000px;}
.fs4_c00142{font-size:72.000000px;}
.fs3_c00142{font-size:84.000000px;}
.fs2_c00142{font-size:108.000000px;}
.y0_c00142{bottom:0.000000px;}
.y1_c00142{bottom:41.250000px;}
.y11_c00142{bottom:376.322700px;}
.y10_c00142{bottom:406.328700px;}
.yf_c00142{bottom:436.334700px;}
.ye_c00142{bottom:496.334700px;}
.yd_c00142{bottom:586.280700px;}
.yc_c00142{bottom:616.286700px;}
.yb_c00142{bottom:646.292700px;}
.y19_c00142{bottom:646.334700px;}
.ya_c00142{bottom:676.298700px;}
.y18_c00142{bottom:676.334700px;}
.y9_c00142{bottom:706.304700px;}
.y17_c00142{bottom:706.334700px;}
.y8_c00142{bottom:736.310700px;}
.y16_c00142{bottom:736.334700px;}
.y7_c00142{bottom:766.316700px;}
.y15_c00142{bottom:766.334700px;}
.y6_c00142{bottom:796.322700px;}
.y14_c00142{bottom:796.334700px;}
.y5_c00142{bottom:826.328700px;}
.y13_c00142{bottom:826.334700px;}
.y4_c00142{bottom:856.334700px;}
.y12_c00142{bottom:859.145700px;}
.y3_c00142{bottom:916.334700px;}
.y2_c00142{bottom:1006.334700px;}
.h6_c00142{height:50.292000px;}
.h2_c00142{height:54.000000px;}
.h5_c00142{height:64.800000px;}
.h4_c00142{height:78.540000px;}
.h3_c00142{height:100.980000px;}
.h0_c00142{height:1262.835000px;}
.h1_c00142{height:1263.000000px;}
.w0_c00142{width:892.914000px;}
.w1_c00142{width:893.250000px;}
.x0_c00142{left:0.000000px;}
.x2_c00142{left:82.500000px;}
.x3_c00142{left:90.000000px;}
.x4_c00142{left:106.500000px;}
.x5_c00142{left:675.611100px;}
.x1_c00142{left:789.339000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls5_c00142{letter-spacing:-0.480000pt;}
.ls4_c00142{letter-spacing:0.000000pt;}
.ls0_c00142{letter-spacing:0.640000pt;}
.ls1_c00142{letter-spacing:0.746667pt;}
.ls3_c00142{letter-spacing:1.333333pt;}
.ls2_c00142{letter-spacing:1.466667pt;}
.ws1_c00142{word-spacing:-18.720000pt;}
.ws2_c00142{word-spacing:-15.680000pt;}
.ws0_c00142{word-spacing:-9.066667pt;}
.wsf_c00142{word-spacing:-2.688000pt;}
.ws10_c00142{word-spacing:-1.333333pt;}
.ws4_c00142{word-spacing:-0.746667pt;}
.wse_c00142{word-spacing:-0.064000pt;}
.ws3_c00142{word-spacing:0.000000pt;}
.wsc_c00142{word-spacing:0.320000pt;}
.wsb_c00142{word-spacing:0.384000pt;}
.wsa_c00142{word-spacing:1.600000pt;}
.ws9_c00142{word-spacing:3.904000pt;}
.ws8_c00142{word-spacing:4.736000pt;}
.ws5_c00142{word-spacing:4.928000pt;}
.wsd_c00142{word-spacing:6.144000pt;}
.ws7_c00142{word-spacing:11.904000pt;}
.ws6_c00142{word-spacing:15.808000pt;}
._0_c00142{margin-left:-426.966933pt;}
._3_c00142{margin-left:-8.960000pt;}
._1_c00142{margin-left:-3.733333pt;}
._2_c00142{margin-left:-1.280000pt;}
.fs1_c00142{font-size:37.333333pt;}
.fs0_c00142{font-size:53.333333pt;}
.fs5_c00142{font-size:58.666667pt;}
.fs4_c00142{font-size:64.000000pt;}
.fs3_c00142{font-size:74.666667pt;}
.fs2_c00142{font-size:96.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y1_c00142{bottom:36.666667pt;}
.y11_c00142{bottom:334.509067pt;}
.y10_c00142{bottom:361.181067pt;}
.yf_c00142{bottom:387.853067pt;}
.ye_c00142{bottom:441.186400pt;}
.yd_c00142{bottom:521.138400pt;}
.yc_c00142{bottom:547.810400pt;}
.yb_c00142{bottom:574.482400pt;}
.y19_c00142{bottom:574.519733pt;}
.ya_c00142{bottom:601.154400pt;}
.y18_c00142{bottom:601.186400pt;}
.y9_c00142{bottom:627.826400pt;}
.y17_c00142{bottom:627.853067pt;}
.y8_c00142{bottom:654.498400pt;}
.y16_c00142{bottom:654.519733pt;}
.y7_c00142{bottom:681.170400pt;}
.y15_c00142{bottom:681.186400pt;}
.y6_c00142{bottom:707.842400pt;}
.y14_c00142{bottom:707.853067pt;}
.y5_c00142{bottom:734.514400pt;}
.y13_c00142{bottom:734.519733pt;}
.y4_c00142{bottom:761.186400pt;}
.y12_c00142{bottom:763.685067pt;}
.y3_c00142{bottom:814.519733pt;}
.y2_c00142{bottom:894.519733pt;}
.h6_c00142{height:44.704000pt;}
.h2_c00142{height:48.000000pt;}
.h5_c00142{height:57.600000pt;}
.h4_c00142{height:69.813333pt;}
.h3_c00142{height:89.760000pt;}
.h0_c00142{height:1122.520000pt;}
.h1_c00142{height:1122.666667pt;}
.w0_c00142{width:793.701333pt;}
.w1_c00142{width:794.000000pt;}
.x0_c00142{left:0.000000pt;}
.x2_c00142{left:73.333333pt;}
.x3_c00142{left:80.000000pt;}
.x4_c00142{left:94.666667pt;}
.x5_c00142{left:600.543200pt;}
.x1_c00142{left:701.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.199000;font-style: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);}
.m1_c00143{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls1_c00143{letter-spacing:0.000000px;}
.ls0_c00143{letter-spacing:0.720000px;}
.ls2_c00143{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws7_c00143{word-spacing:-4.176000px;}
.ws4_c00143{word-spacing:-1.296000px;}
.ws10_c00143{word-spacing:-1.008000px;}
.ws2_c00143{word-spacing:-0.840000px;}
.wsf_c00143{word-spacing:-0.720000px;}
.ws6_c00143{word-spacing:-0.144000px;}
.ws1_c00143{word-spacing:0.000000px;}
.wsc_c00143{word-spacing:1.440000px;}
.ws5_c00143{word-spacing:1.512000px;}
.ws11_c00143{word-spacing:2.088000px;}
.wsb_c00143{word-spacing:2.520000px;}
.wsd_c00143{word-spacing:5.184000px;}
.ws3_c00143{word-spacing:5.616000px;}
.ws12_c00143{word-spacing:6.336000px;}
.wsa_c00143{word-spacing:10.224000px;}
.wse_c00143{word-spacing:15.048000px;}
.ws8_c00143{word-spacing:17.064000px;}
.ws9_c00143{word-spacing:20.808000px;}
._0_c00143{margin-left:-480.337200px;}
._4_c00143{margin-left:-9.468000px;}
._3_c00143{margin-left:-7.920000px;}
._5_c00143{margin-left:-5.536800px;}
._1_c00143{margin-left:-4.200000px;}
._2_c00143{margin-left:-2.160000px;}
._6_c00143{margin-left:-1.080000px;}
.fc2_c00143{color:rgb(32,32,32);}
.fc1_c00143{color:rgb(232,86,17);}
.fc0_c00143{color:rgb(60,60,59);}
.fs1_c00143{font-size:42.000000px;}
.fs0_c00143{font-size:60.000000px;}
.fs3_c00143{font-size:72.000000px;}
.fs2_c00143{font-size:84.000000px;}
.y0_c00143{bottom:0.000000px;}
.y1_c00143{bottom:41.250000px;}
.y16_c00143{bottom:196.328700px;}
.y15_c00143{bottom:226.334700px;}
.y14_c00143{bottom:286.334700px;}
.y13_c00143{bottom:376.322700px;}
.y12_c00143{bottom:406.328700px;}
.y11_c00143{bottom:436.334700px;}
.y10_c00143{bottom:496.334700px;}
.yf_c00143{bottom:586.262700px;}
.ye_c00143{bottom:616.268700px;}
.yd_c00143{bottom:646.274700px;}
.yc_c00143{bottom:676.280700px;}
.yb_c00143{bottom:706.286700px;}
.ya_c00143{bottom:736.292700px;}
.y9_c00143{bottom:766.298700px;}
.y8_c00143{bottom:796.304700px;}
.y7_c00143{bottom:826.310700px;}
.y6_c00143{bottom:856.316700px;}
.y5_c00143{bottom:886.322700px;}
.y4_c00143{bottom:916.328700px;}
.y3_c00143{bottom:946.334700px;}
.y2_c00143{bottom:1006.334700px;}
.h2_c00143{height:54.000000px;}
.h4_c00143{height:64.800000px;}
.h3_c00143{height:78.540000px;}
.h0_c00143{height:1262.835000px;}
.h1_c00143{height:1263.000000px;}
.w0_c00143{width:892.914000px;}
.w1_c00143{width:893.250000px;}
.x0_c00143{left:0.000000px;}
.x2_c00143{left:90.000000px;}
.x3_c00143{left:106.500000px;}
.x1_c00143{left:788.363850px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls1_c00143{letter-spacing:0.000000pt;}
.ls0_c00143{letter-spacing:0.640000pt;}
.ls2_c00143{letter-spacing:0.746667pt;}
.ws0_c00143{word-spacing:-9.066667pt;}
.ws7_c00143{word-spacing:-3.712000pt;}
.ws4_c00143{word-spacing:-1.152000pt;}
.ws10_c00143{word-spacing:-0.896000pt;}
.ws2_c00143{word-spacing:-0.746667pt;}
.wsf_c00143{word-spacing:-0.640000pt;}
.ws6_c00143{word-spacing:-0.128000pt;}
.ws1_c00143{word-spacing:0.000000pt;}
.wsc_c00143{word-spacing:1.280000pt;}
.ws5_c00143{word-spacing:1.344000pt;}
.ws11_c00143{word-spacing:1.856000pt;}
.wsb_c00143{word-spacing:2.240000pt;}
.wsd_c00143{word-spacing:4.608000pt;}
.ws3_c00143{word-spacing:4.992000pt;}
.ws12_c00143{word-spacing:5.632000pt;}
.wsa_c00143{word-spacing:9.088000pt;}
.wse_c00143{word-spacing:13.376000pt;}
.ws8_c00143{word-spacing:15.168000pt;}
.ws9_c00143{word-spacing:18.496000pt;}
._0_c00143{margin-left:-426.966400pt;}
._4_c00143{margin-left:-8.416000pt;}
._3_c00143{margin-left:-7.040000pt;}
._5_c00143{margin-left:-4.921600pt;}
._1_c00143{margin-left:-3.733333pt;}
._2_c00143{margin-left:-1.920000pt;}
._6_c00143{margin-left:-0.960000pt;}
.fs1_c00143{font-size:37.333333pt;}
.fs0_c00143{font-size:53.333333pt;}
.fs3_c00143{font-size:64.000000pt;}
.fs2_c00143{font-size:74.666667pt;}
.y0_c00143{bottom:0.000000pt;}
.y1_c00143{bottom:36.666667pt;}
.y16_c00143{bottom:174.514400pt;}
.y15_c00143{bottom:201.186400pt;}
.y14_c00143{bottom:254.519733pt;}
.y13_c00143{bottom:334.509067pt;}
.y12_c00143{bottom:361.181067pt;}
.y11_c00143{bottom:387.853067pt;}
.y10_c00143{bottom:441.186400pt;}
.yf_c00143{bottom:521.122400pt;}
.ye_c00143{bottom:547.794400pt;}
.yd_c00143{bottom:574.466400pt;}
.yc_c00143{bottom:601.138400pt;}
.yb_c00143{bottom:627.810400pt;}
.ya_c00143{bottom:654.482400pt;}
.y9_c00143{bottom:681.154400pt;}
.y8_c00143{bottom:707.826400pt;}
.y7_c00143{bottom:734.498400pt;}
.y6_c00143{bottom:761.170400pt;}
.y5_c00143{bottom:787.842400pt;}
.y4_c00143{bottom:814.514400pt;}
.y3_c00143{bottom:841.186400pt;}
.y2_c00143{bottom:894.519733pt;}
.h2_c00143{height:48.000000pt;}
.h4_c00143{height:57.600000pt;}
.h3_c00143{height:69.813333pt;}
.h0_c00143{height:1122.520000pt;}
.h1_c00143{height:1122.666667pt;}
.w0_c00143{width:793.701333pt;}
.w1_c00143{width:794.000000pt;}
.x0_c00143{left:0.000000pt;}
.x2_c00143{left:80.000000pt;}
.x3_c00143{left:94.666667pt;}
.x1_c00143{left:700.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09b0d261b275ce16e922129a.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00144;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00144;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:1.161000;font-style: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);}
.m1_c00144{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls5_c00144{letter-spacing:-0.324000px;}
.ls4_c00144{letter-spacing:0.000000px;}
.ls0_c00144{letter-spacing:0.720000px;}
.ls1_c00144{letter-spacing:0.840000px;}
.ls3_c00144{letter-spacing:1.500000px;}
.ls2_c00144{letter-spacing:1.650000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00144{word-spacing:-21.276000px;}
.ws2_c00144{word-spacing:-14.850000px;}
.ws0_c00144{word-spacing:-10.200000px;}
.wsc_c00144{word-spacing:-2.160000px;}
.wsf_c00144{word-spacing:-1.500000px;}
.ws4_c00144{word-spacing:-0.840000px;}
.wsb_c00144{word-spacing:-0.144000px;}
.ws3_c00144{word-spacing:0.000000px;}
.wsa_c00144{word-spacing:2.304000px;}
.ws8_c00144{word-spacing:6.048000px;}
.ws9_c00144{word-spacing:7.488000px;}
.wsd_c00144{word-spacing:8.496000px;}
.wse_c00144{word-spacing:10.512000px;}
.ws7_c00144{word-spacing:16.344000px;}
.ws5_c00144{word-spacing:16.848000px;}
.ws6_c00144{word-spacing:22.248000px;}
._0_c00144{margin-left:-480.337200px;}
._4_c00144{margin-left:-5.760000px;}
._1_c00144{margin-left:-4.200000px;}
._3_c00144{margin-left:-2.160000px;}
._2_c00144{margin-left:-1.134000px;}
.fc3_c00144{color:rgb(32,32,32);}
.fc2_c00144{color:rgb(233,83,14);}
.fc1_c00144{color:rgb(232,86,17);}
.fc4_c00144{color:rgb(157,157,156);}
.fc0_c00144{color:rgb(60,60,59);}
.fs1_c00144{font-size:42.000000px;}
.fs0_c00144{font-size:60.000000px;}
.fs5_c00144{font-size:66.000000px;}
.fs4_c00144{font-size:72.000000px;}
.fs3_c00144{font-size:84.000000px;}
.fs2_c00144{font-size:108.000000px;}
.y0_c00144{bottom:0.000000px;}
.y1_c00144{bottom:41.250000px;}
.y10_c00144{bottom:406.322700px;}
.yf_c00144{bottom:436.328700px;}
.ye_c00144{bottom:466.334700px;}
.yd_c00144{bottom:526.334700px;}
.yc_c00144{bottom:616.286700px;}
.yb_c00144{bottom:646.292700px;}
.ya_c00144{bottom:676.298700px;}
.y9_c00144{bottom:706.304700px;}
.y16_c00144{bottom:706.334700px;}
.y8_c00144{bottom:736.310700px;}
.y15_c00144{bottom:736.334700px;}
.y7_c00144{bottom:766.316700px;}
.y14_c00144{bottom:766.334700px;}
.y6_c00144{bottom:796.322700px;}
.y13_c00144{bottom:796.334700px;}
.y5_c00144{bottom:826.328700px;}
.y12_c00144{bottom:826.334700px;}
.y4_c00144{bottom:856.334700px;}
.y11_c00144{bottom:859.145700px;}
.y3_c00144{bottom:916.334700px;}
.y2_c00144{bottom:1006.334700px;}
.h6_c00144{height:50.292000px;}
.h2_c00144{height:54.000000px;}
.h5_c00144{height:64.800000px;}
.h4_c00144{height:78.540000px;}
.h3_c00144{height:100.980000px;}
.h0_c00144{height:1262.835000px;}
.h1_c00144{height:1263.000000px;}
.w0_c00144{width:892.914000px;}
.w1_c00144{width:893.250000px;}
.x0_c00144{left:0.000000px;}
.x2_c00144{left:82.500000px;}
.x3_c00144{left:90.000000px;}
.x4_c00144{left:106.500000px;}
.x5_c00144{left:675.611100px;}
.x1_c00144{left:789.413850px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls5_c00144{letter-spacing:-0.288000pt;}
.ls4_c00144{letter-spacing:0.000000pt;}
.ls0_c00144{letter-spacing:0.640000pt;}
.ls1_c00144{letter-spacing:0.746667pt;}
.ls3_c00144{letter-spacing:1.333333pt;}
.ls2_c00144{letter-spacing:1.466667pt;}
.ws1_c00144{word-spacing:-18.912000pt;}
.ws2_c00144{word-spacing:-13.200000pt;}
.ws0_c00144{word-spacing:-9.066667pt;}
.wsc_c00144{word-spacing:-1.920000pt;}
.wsf_c00144{word-spacing:-1.333333pt;}
.ws4_c00144{word-spacing:-0.746667pt;}
.wsb_c00144{word-spacing:-0.128000pt;}
.ws3_c00144{word-spacing:0.000000pt;}
.wsa_c00144{word-spacing:2.048000pt;}
.ws8_c00144{word-spacing:5.376000pt;}
.ws9_c00144{word-spacing:6.656000pt;}
.wsd_c00144{word-spacing:7.552000pt;}
.wse_c00144{word-spacing:9.344000pt;}
.ws7_c00144{word-spacing:14.528000pt;}
.ws5_c00144{word-spacing:14.976000pt;}
.ws6_c00144{word-spacing:19.776000pt;}
._0_c00144{margin-left:-426.966400pt;}
._4_c00144{margin-left:-5.120000pt;}
._1_c00144{margin-left:-3.733333pt;}
._3_c00144{margin-left:-1.920000pt;}
._2_c00144{margin-left:-1.008000pt;}
.fs1_c00144{font-size:37.333333pt;}
.fs0_c00144{font-size:53.333333pt;}
.fs5_c00144{font-size:58.666667pt;}
.fs4_c00144{font-size:64.000000pt;}
.fs3_c00144{font-size:74.666667pt;}
.fs2_c00144{font-size:96.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y1_c00144{bottom:36.666667pt;}
.y10_c00144{bottom:361.175733pt;}
.yf_c00144{bottom:387.847733pt;}
.ye_c00144{bottom:414.519733pt;}
.yd_c00144{bottom:467.853067pt;}
.yc_c00144{bottom:547.810400pt;}
.yb_c00144{bottom:574.482400pt;}
.ya_c00144{bottom:601.154400pt;}
.y9_c00144{bottom:627.826400pt;}
.y16_c00144{bottom:627.853067pt;}
.y8_c00144{bottom:654.498400pt;}
.y15_c00144{bottom:654.519733pt;}
.y7_c00144{bottom:681.170400pt;}
.y14_c00144{bottom:681.186400pt;}
.y6_c00144{bottom:707.842400pt;}
.y13_c00144{bottom:707.853067pt;}
.y5_c00144{bottom:734.514400pt;}
.y12_c00144{bottom:734.519733pt;}
.y4_c00144{bottom:761.186400pt;}
.y11_c00144{bottom:763.685067pt;}
.y3_c00144{bottom:814.519733pt;}
.y2_c00144{bottom:894.519733pt;}
.h6_c00144{height:44.704000pt;}
.h2_c00144{height:48.000000pt;}
.h5_c00144{height:57.600000pt;}
.h4_c00144{height:69.813333pt;}
.h3_c00144{height:89.760000pt;}
.h0_c00144{height:1122.520000pt;}
.h1_c00144{height:1122.666667pt;}
.w0_c00144{width:793.701333pt;}
.w1_c00144{width:794.000000pt;}
.x0_c00144{left:0.000000pt;}
.x2_c00144{left:73.333333pt;}
.x3_c00144{left:80.000000pt;}
.x4_c00144{left:94.666667pt;}
.x5_c00144{left:600.543200pt;}
.x1_c00144{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69d21ca045ca03b3182acdf3.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00145;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.199000;font-style: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);}
.m1_c00145{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls1_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:0.720000px;}
.ls2_c00145{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws10_c00145{word-spacing:-1.800000px;}
.ws2_c00145{word-spacing:-0.840000px;}
.ws11_c00145{word-spacing:-0.720000px;}
.ws1_c00145{word-spacing:0.000000px;}
.ws3_c00145{word-spacing:1.440000px;}
.wsd_c00145{word-spacing:4.032000px;}
.wsc_c00145{word-spacing:5.616000px;}
.wsb_c00145{word-spacing:6.912000px;}
.ws4_c00145{word-spacing:7.200000px;}
.ws6_c00145{word-spacing:7.416000px;}
.wsa_c00145{word-spacing:8.784000px;}
.ws9_c00145{word-spacing:10.944000px;}
.wsf_c00145{word-spacing:11.376000px;}
.wse_c00145{word-spacing:17.064000px;}
.ws8_c00145{word-spacing:17.280000px;}
.ws5_c00145{word-spacing:20.736000px;}
.ws7_c00145{word-spacing:21.312000px;}
._0_c00145{margin-left:-480.337200px;}
._3_c00145{margin-left:-9.367200px;}
._1_c00145{margin-left:-4.200000px;}
._4_c00145{margin-left:-2.880000px;}
._2_c00145{margin-left:-1.440000px;}
.fc2_c00145{color:rgb(32,32,32);}
.fc1_c00145{color:rgb(232,86,17);}
.fc0_c00145{color:rgb(60,60,59);}
.fs1_c00145{font-size:42.000000px;}
.fs0_c00145{font-size:60.000000px;}
.fs3_c00145{font-size:72.000000px;}
.fs2_c00145{font-size:84.000000px;}
.y0_c00145{bottom:0.000000px;}
.y1_c00145{bottom:41.250000px;}
.y16_c00145{bottom:196.322700px;}
.y15_c00145{bottom:226.328700px;}
.y14_c00145{bottom:256.334700px;}
.y13_c00145{bottom:316.334700px;}
.y12_c00145{bottom:406.322700px;}
.y11_c00145{bottom:436.328700px;}
.y10_c00145{bottom:466.334700px;}
.yf_c00145{bottom:526.334700px;}
.ye_c00145{bottom:616.268700px;}
.yd_c00145{bottom:646.274700px;}
.yc_c00145{bottom:676.280700px;}
.yb_c00145{bottom:706.286700px;}
.ya_c00145{bottom:736.292700px;}
.y9_c00145{bottom:766.298700px;}
.y8_c00145{bottom:796.304700px;}
.y7_c00145{bottom:826.310700px;}
.y6_c00145{bottom:856.316700px;}
.y5_c00145{bottom:886.322700px;}
.y4_c00145{bottom:916.328700px;}
.y3_c00145{bottom:946.334700px;}
.y2_c00145{bottom:1006.334700px;}
.h2_c00145{height:54.000000px;}
.h4_c00145{height:64.800000px;}
.h3_c00145{height:78.540000px;}
.h0_c00145{height:1262.835000px;}
.h1_c00145{height:1263.000000px;}
.w0_c00145{width:892.914000px;}
.w1_c00145{width:893.250000px;}
.x0_c00145{left:0.000000px;}
.x2_c00145{left:90.000000px;}
.x3_c00145{left:106.500000px;}
.x1_c00145{left:788.288850px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls1_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:0.640000pt;}
.ls2_c00145{letter-spacing:0.746667pt;}
.ws0_c00145{word-spacing:-9.066667pt;}
.ws10_c00145{word-spacing:-1.600000pt;}
.ws2_c00145{word-spacing:-0.746667pt;}
.ws11_c00145{word-spacing:-0.640000pt;}
.ws1_c00145{word-spacing:0.000000pt;}
.ws3_c00145{word-spacing:1.280000pt;}
.wsd_c00145{word-spacing:3.584000pt;}
.wsc_c00145{word-spacing:4.992000pt;}
.wsb_c00145{word-spacing:6.144000pt;}
.ws4_c00145{word-spacing:6.400000pt;}
.ws6_c00145{word-spacing:6.592000pt;}
.wsa_c00145{word-spacing:7.808000pt;}
.ws9_c00145{word-spacing:9.728000pt;}
.wsf_c00145{word-spacing:10.112000pt;}
.wse_c00145{word-spacing:15.168000pt;}
.ws8_c00145{word-spacing:15.360000pt;}
.ws5_c00145{word-spacing:18.432000pt;}
.ws7_c00145{word-spacing:18.944000pt;}
._0_c00145{margin-left:-426.966400pt;}
._3_c00145{margin-left:-8.326400pt;}
._1_c00145{margin-left:-3.733333pt;}
._4_c00145{margin-left:-2.560000pt;}
._2_c00145{margin-left:-1.280000pt;}
.fs1_c00145{font-size:37.333333pt;}
.fs0_c00145{font-size:53.333333pt;}
.fs3_c00145{font-size:64.000000pt;}
.fs2_c00145{font-size:74.666667pt;}
.y0_c00145{bottom:0.000000pt;}
.y1_c00145{bottom:36.666667pt;}
.y16_c00145{bottom:174.509067pt;}
.y15_c00145{bottom:201.181067pt;}
.y14_c00145{bottom:227.853067pt;}
.y13_c00145{bottom:281.186400pt;}
.y12_c00145{bottom:361.175733pt;}
.y11_c00145{bottom:387.847733pt;}
.y10_c00145{bottom:414.519733pt;}
.yf_c00145{bottom:467.853067pt;}
.ye_c00145{bottom:547.794400pt;}
.yd_c00145{bottom:574.466400pt;}
.yc_c00145{bottom:601.138400pt;}
.yb_c00145{bottom:627.810400pt;}
.ya_c00145{bottom:654.482400pt;}
.y9_c00145{bottom:681.154400pt;}
.y8_c00145{bottom:707.826400pt;}
.y7_c00145{bottom:734.498400pt;}
.y6_c00145{bottom:761.170400pt;}
.y5_c00145{bottom:787.842400pt;}
.y4_c00145{bottom:814.514400pt;}
.y3_c00145{bottom:841.186400pt;}
.y2_c00145{bottom:894.519733pt;}
.h2_c00145{height:48.000000pt;}
.h4_c00145{height:57.600000pt;}
.h3_c00145{height:69.813333pt;}
.h0_c00145{height:1122.520000pt;}
.h1_c00145{height:1122.666667pt;}
.w0_c00145{width:793.701333pt;}
.w1_c00145{width:794.000000pt;}
.x0_c00145{left:0.000000pt;}
.x2_c00145{left:80.000000pt;}
.x3_c00145{left:94.666667pt;}
.x1_c00145{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00146;src:url('chunks/assets/font_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00146;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00146;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00146;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00146{font-family:ff5_c00146;line-height:1.155000;font-style: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);}
.m1_c00146{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls2_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:0.864000px;}
.ls1_c00146{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00146{word-spacing:-13.104000px;}
.ws0_c00146{word-spacing:-10.200000px;}
.ws8_c00146{word-spacing:-7.200000px;}
.ws6_c00146{word-spacing:-4.464000px;}
.ws5_c00146{word-spacing:-4.176000px;}
.ws3_c00146{word-spacing:-2.304000px;}
.ws4_c00146{word-spacing:-1.440000px;}
.ws7_c00146{word-spacing:-1.200000px;}
.ws2_c00146{word-spacing:0.000000px;}
._0_c00146{margin-left:-480.337200px;}
._6_c00146{margin-left:-8.496000px;}
._4_c00146{margin-left:-7.344000px;}
._5_c00146{margin-left:-5.760000px;}
._1_c00146{margin-left:-4.200000px;}
._7_c00146{margin-left:-2.592000px;}
._2_c00146{margin-left:-1.440000px;}
._a_c00146{width:1.152000px;}
._3_c00146{width:2.304000px;}
._8_c00146{width:4.752000px;}
._9_c00146{width:8.088000px;}
.fc3_c00146{color:rgb(255,255,255);}
.fc2_c00146{color:rgb(233,83,14);}
.fc1_c00146{color:rgb(232,86,17);}
.fc0_c00146{color:rgb(60,60,59);}
.fs1_c00146{font-size:42.000000px;}
.fs0_c00146{font-size:60.000000px;}
.fs3_c00146{font-size:72.000000px;}
.fs4_c00146{font-size:120.000000px;}
.fs2_c00146{font-size:360.000000px;}
.y0_c00146{bottom:0.000000px;}
.y1_c00146{bottom:41.250000px;}
.yf_c00146{bottom:394.292700px;}
.ye_c00146{bottom:415.298700px;}
.yd_c00146{bottom:436.304700px;}
.yc_c00146{bottom:483.698700px;}
.yb_c00146{bottom:505.298700px;}
.ya_c00146{bottom:526.304700px;}
.y9_c00146{bottom:574.310700px;}
.y8_c00146{bottom:595.316700px;}
.y7_c00146{bottom:616.322700px;}
.y6_c00146{bottom:664.328700px;}
.y5_c00146{bottom:685.334700px;}
.y4_c00146{bottom:706.340700px;}
.y3_c00146{bottom:752.834700px;}
.y13_c00146{bottom:916.334700px;}
.y12_c00146{bottom:946.334700px;}
.y11_c00146{bottom:976.334700px;}
.y10_c00146{bottom:1006.334700px;}
.y2_c00146{bottom:1093.526700px;}
.h2_c00146{height:54.000000px;}
.h5_c00146{height:64.800000px;}
.h4_c00146{height:66.456000px;}
.h6_c00146{height:112.200000px;}
.h3_c00146{height:324.000000px;}
.h0_c00146{height:1262.835000px;}
.h1_c00146{height:1263.000000px;}
.w0_c00146{width:892.914000px;}
.w1_c00146{width:893.250000px;}
.x0_c00146{left:0.000000px;}
.x2_c00146{left:81.290250px;}
.x3_c00146{left:82.393650px;}
.x5_c00146{left:112.287450px;}
.x4_c00146{left:127.393650px;}
.x1_c00146{left:790.388850px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls2_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:0.768000pt;}
.ls1_c00146{letter-spacing:1.066667pt;}
.ws1_c00146{word-spacing:-11.648000pt;}
.ws0_c00146{word-spacing:-9.066667pt;}
.ws8_c00146{word-spacing:-6.400000pt;}
.ws6_c00146{word-spacing:-3.968000pt;}
.ws5_c00146{word-spacing:-3.712000pt;}
.ws3_c00146{word-spacing:-2.048000pt;}
.ws4_c00146{word-spacing:-1.280000pt;}
.ws7_c00146{word-spacing:-1.066667pt;}
.ws2_c00146{word-spacing:0.000000pt;}
._0_c00146{margin-left:-426.966400pt;}
._6_c00146{margin-left:-7.552000pt;}
._4_c00146{margin-left:-6.528000pt;}
._5_c00146{margin-left:-5.120000pt;}
._1_c00146{margin-left:-3.733333pt;}
._7_c00146{margin-left:-2.304000pt;}
._2_c00146{margin-left:-1.280000pt;}
._a_c00146{width:1.024000pt;}
._3_c00146{width:2.048000pt;}
._8_c00146{width:4.224000pt;}
._9_c00146{width:7.189333pt;}
.fs1_c00146{font-size:37.333333pt;}
.fs0_c00146{font-size:53.333333pt;}
.fs3_c00146{font-size:64.000000pt;}
.fs4_c00146{font-size:106.666667pt;}
.fs2_c00146{font-size:320.000000pt;}
.y0_c00146{bottom:0.000000pt;}
.y1_c00146{bottom:36.666667pt;}
.yf_c00146{bottom:350.482400pt;}
.ye_c00146{bottom:369.154400pt;}
.yd_c00146{bottom:387.826400pt;}
.yc_c00146{bottom:429.954400pt;}
.yb_c00146{bottom:449.154400pt;}
.ya_c00146{bottom:467.826400pt;}
.y9_c00146{bottom:510.498400pt;}
.y8_c00146{bottom:529.170400pt;}
.y7_c00146{bottom:547.842400pt;}
.y6_c00146{bottom:590.514400pt;}
.y5_c00146{bottom:609.186400pt;}
.y4_c00146{bottom:627.858400pt;}
.y3_c00146{bottom:669.186400pt;}
.y13_c00146{bottom:814.519733pt;}
.y12_c00146{bottom:841.186400pt;}
.y11_c00146{bottom:867.853067pt;}
.y10_c00146{bottom:894.519733pt;}
.y2_c00146{bottom:972.023733pt;}
.h2_c00146{height:48.000000pt;}
.h5_c00146{height:57.600000pt;}
.h4_c00146{height:59.072000pt;}
.h6_c00146{height:99.733333pt;}
.h3_c00146{height:288.000000pt;}
.h0_c00146{height:1122.520000pt;}
.h1_c00146{height:1122.666667pt;}
.w0_c00146{width:793.701333pt;}
.w1_c00146{width:794.000000pt;}
.x0_c00146{left:0.000000pt;}
.x2_c00146{left:72.258000pt;}
.x3_c00146{left:73.238800pt;}
.x5_c00146{left:99.811067pt;}
.x4_c00146{left:113.238800pt;}
.x1_c00146{left:702.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00147;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00147;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.161000;font-style: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);}
.m1_c00147{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls4_c00147{letter-spacing:-0.540000px;}
.ls3_c00147{letter-spacing:0.000000px;}
.ls0_c00147{letter-spacing:0.720000px;}
.ls2_c00147{letter-spacing:1.500000px;}
.ls1_c00147{letter-spacing:1.650000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00147{word-spacing:-21.060000px;}
.ws0_c00147{word-spacing:-10.200000px;}
.ws10_c00147{word-spacing:-2.592000px;}
.ws1a_c00147{word-spacing:-1.500000px;}
.ws16_c00147{word-spacing:-0.792000px;}
.ws2_c00147{word-spacing:0.000000px;}
.ws13_c00147{word-spacing:0.216000px;}
.ws5_c00147{word-spacing:0.576000px;}
.wse_c00147{word-spacing:0.864000px;}
.ws3_c00147{word-spacing:1.296000px;}
.wsb_c00147{word-spacing:2.304000px;}
.ws17_c00147{word-spacing:3.024000px;}
.ws11_c00147{word-spacing:3.240000px;}
.wsc_c00147{word-spacing:4.680000px;}
.ws14_c00147{word-spacing:4.824000px;}
.ws15_c00147{word-spacing:5.328000px;}
.ws9_c00147{word-spacing:6.912000px;}
.ws6_c00147{word-spacing:7.560000px;}
.wsd_c00147{word-spacing:8.208000px;}
.ws4_c00147{word-spacing:9.000000px;}
.ws19_c00147{word-spacing:9.144000px;}
.wsa_c00147{word-spacing:9.864000px;}
.wsf_c00147{word-spacing:10.008000px;}
.ws8_c00147{word-spacing:12.600000px;}
.ws18_c00147{word-spacing:13.464000px;}
.ws12_c00147{word-spacing:14.688000px;}
.ws7_c00147{word-spacing:24.768000px;}
._0_c00147{margin-left:-480.337200px;}
._1_c00147{margin-left:-4.200000px;}
._2_c00147{margin-left:-2.160000px;}
._3_c00147{margin-left:-1.144800px;}
._4_c00147{width:6.746400px;}
.fc3_c00147{color:rgb(32,32,32);}
.fc2_c00147{color:rgb(233,83,14);}
.fc1_c00147{color:rgb(232,86,17);}
.fc4_c00147{color:rgb(157,157,156);}
.fc0_c00147{color:rgb(60,60,59);}
.fs1_c00147{font-size:42.000000px;}
.fs0_c00147{font-size:60.000000px;}
.fs4_c00147{font-size:66.000000px;}
.fs3_c00147{font-size:72.000000px;}
.fs2_c00147{font-size:108.000000px;}
.y0_c00147{bottom:0.000000px;}
.y1_c00147{bottom:41.250000px;}
.y1b_c00147{bottom:226.190700px;}
.y1a_c00147{bottom:256.196700px;}
.y19_c00147{bottom:286.202700px;}
.y18_c00147{bottom:316.208700px;}
.y17_c00147{bottom:346.214700px;}
.y16_c00147{bottom:376.220700px;}
.y15_c00147{bottom:406.226700px;}
.y14_c00147{bottom:436.232700px;}
.y13_c00147{bottom:466.238700px;}
.y12_c00147{bottom:496.244700px;}
.y11_c00147{bottom:526.250700px;}
.y10_c00147{bottom:556.256700px;}
.yf_c00147{bottom:586.262700px;}
.ye_c00147{bottom:616.268700px;}
.yd_c00147{bottom:646.274700px;}
.yc_c00147{bottom:676.280700px;}
.yb_c00147{bottom:706.286700px;}
.ya_c00147{bottom:736.292700px;}
.y9_c00147{bottom:766.298700px;}
.y8_c00147{bottom:796.304700px;}
.y7_c00147{bottom:826.310700px;}
.y6_c00147{bottom:856.316700px;}
.y1f_c00147{bottom:856.334700px;}
.y5_c00147{bottom:886.322700px;}
.y1e_c00147{bottom:886.334700px;}
.y4_c00147{bottom:916.328700px;}
.y1d_c00147{bottom:916.334700px;}
.y3_c00147{bottom:946.334700px;}
.y1c_c00147{bottom:946.573800px;}
.y2_c00147{bottom:1006.334700px;}
.h5_c00147{height:50.292000px;}
.h2_c00147{height:54.000000px;}
.h4_c00147{height:64.800000px;}
.h3_c00147{height:100.980000px;}
.h0_c00147{height:1262.835000px;}
.h1_c00147{height:1263.000000px;}
.w0_c00147{width:892.914000px;}
.w1_c00147{width:893.250000px;}
.x0_c00147{left:0.000000px;}
.x2_c00147{left:82.500000px;}
.x3_c00147{left:106.500000px;}
.x4_c00147{left:675.611100px;}
.x1_c00147{left:788.363850px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls4_c00147{letter-spacing:-0.480000pt;}
.ls3_c00147{letter-spacing:0.000000pt;}
.ls0_c00147{letter-spacing:0.640000pt;}
.ls2_c00147{letter-spacing:1.333333pt;}
.ls1_c00147{letter-spacing:1.466667pt;}
.ws1_c00147{word-spacing:-18.720000pt;}
.ws0_c00147{word-spacing:-9.066667pt;}
.ws10_c00147{word-spacing:-2.304000pt;}
.ws1a_c00147{word-spacing:-1.333333pt;}
.ws16_c00147{word-spacing:-0.704000pt;}
.ws2_c00147{word-spacing:0.000000pt;}
.ws13_c00147{word-spacing:0.192000pt;}
.ws5_c00147{word-spacing:0.512000pt;}
.wse_c00147{word-spacing:0.768000pt;}
.ws3_c00147{word-spacing:1.152000pt;}
.wsb_c00147{word-spacing:2.048000pt;}
.ws17_c00147{word-spacing:2.688000pt;}
.ws11_c00147{word-spacing:2.880000pt;}
.wsc_c00147{word-spacing:4.160000pt;}
.ws14_c00147{word-spacing:4.288000pt;}
.ws15_c00147{word-spacing:4.736000pt;}
.ws9_c00147{word-spacing:6.144000pt;}
.ws6_c00147{word-spacing:6.720000pt;}
.wsd_c00147{word-spacing:7.296000pt;}
.ws4_c00147{word-spacing:8.000000pt;}
.ws19_c00147{word-spacing:8.128000pt;}
.wsa_c00147{word-spacing:8.768000pt;}
.wsf_c00147{word-spacing:8.896000pt;}
.ws8_c00147{word-spacing:11.200000pt;}
.ws18_c00147{word-spacing:11.968000pt;}
.ws12_c00147{word-spacing:13.056000pt;}
.ws7_c00147{word-spacing:22.016000pt;}
._0_c00147{margin-left:-426.966400pt;}
._1_c00147{margin-left:-3.733333pt;}
._2_c00147{margin-left:-1.920000pt;}
._3_c00147{margin-left:-1.017600pt;}
._4_c00147{width:5.996800pt;}
.fs1_c00147{font-size:37.333333pt;}
.fs0_c00147{font-size:53.333333pt;}
.fs4_c00147{font-size:58.666667pt;}
.fs3_c00147{font-size:64.000000pt;}
.fs2_c00147{font-size:96.000000pt;}
.y0_c00147{bottom:0.000000pt;}
.y1_c00147{bottom:36.666667pt;}
.y1b_c00147{bottom:201.058400pt;}
.y1a_c00147{bottom:227.730400pt;}
.y19_c00147{bottom:254.402400pt;}
.y18_c00147{bottom:281.074400pt;}
.y17_c00147{bottom:307.746400pt;}
.y16_c00147{bottom:334.418400pt;}
.y15_c00147{bottom:361.090400pt;}
.y14_c00147{bottom:387.762400pt;}
.y13_c00147{bottom:414.434400pt;}
.y12_c00147{bottom:441.106400pt;}
.y11_c00147{bottom:467.778400pt;}
.y10_c00147{bottom:494.450400pt;}
.yf_c00147{bottom:521.122400pt;}
.ye_c00147{bottom:547.794400pt;}
.yd_c00147{bottom:574.466400pt;}
.yc_c00147{bottom:601.138400pt;}
.yb_c00147{bottom:627.810400pt;}
.ya_c00147{bottom:654.482400pt;}
.y9_c00147{bottom:681.154400pt;}
.y8_c00147{bottom:707.826400pt;}
.y7_c00147{bottom:734.498400pt;}
.y6_c00147{bottom:761.170400pt;}
.y1f_c00147{bottom:761.186400pt;}
.y5_c00147{bottom:787.842400pt;}
.y1e_c00147{bottom:787.853067pt;}
.y4_c00147{bottom:814.514400pt;}
.y1d_c00147{bottom:814.519733pt;}
.y3_c00147{bottom:841.186400pt;}
.y1c_c00147{bottom:841.398933pt;}
.y2_c00147{bottom:894.519733pt;}
.h5_c00147{height:44.704000pt;}
.h2_c00147{height:48.000000pt;}
.h4_c00147{height:57.600000pt;}
.h3_c00147{height:89.760000pt;}
.h0_c00147{height:1122.520000pt;}
.h1_c00147{height:1122.666667pt;}
.w0_c00147{width:793.701333pt;}
.w1_c00147{width:794.000000pt;}
.x0_c00147{left:0.000000pt;}
.x2_c00147{left:73.333333pt;}
.x3_c00147{left:94.666667pt;}
.x4_c00147{left:600.543200pt;}
.x1_c00147{left:700.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00148;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00148;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:1.161000;font-style: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);}
.m1_c00148{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls4_c00148{letter-spacing:-0.324000px;}
.ls3_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:0.720000px;}
.ls2_c00148{letter-spacing:1.500000px;}
.ls1_c00148{letter-spacing:1.650000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00148{word-spacing:-21.276000px;}
.ws2_c00148{word-spacing:-14.850000px;}
.ws0_c00148{word-spacing:-10.200000px;}
.wsf_c00148{word-spacing:-4.104000px;}
.ws17_c00148{word-spacing:-1.800000px;}
.wse_c00148{word-spacing:-1.584000px;}
.ws19_c00148{word-spacing:-1.500000px;}
.ws16_c00148{word-spacing:-0.360000px;}
.wsc_c00148{word-spacing:-0.216000px;}
.ws3_c00148{word-spacing:0.000000px;}
.ws10_c00148{word-spacing:0.360000px;}
.ws14_c00148{word-spacing:0.648000px;}
.wsa_c00148{word-spacing:1.224000px;}
.ws11_c00148{word-spacing:2.016000px;}
.ws9_c00148{word-spacing:2.232000px;}
.ws13_c00148{word-spacing:2.808000px;}
.ws8_c00148{word-spacing:5.040000px;}
.ws4_c00148{word-spacing:5.256000px;}
.ws18_c00148{word-spacing:5.328000px;}
.ws12_c00148{word-spacing:6.552000px;}
.wsb_c00148{word-spacing:6.624000px;}
.wsd_c00148{word-spacing:7.776000px;}
.ws7_c00148{word-spacing:9.504000px;}
.ws15_c00148{word-spacing:9.936000px;}
.ws6_c00148{word-spacing:11.808000px;}
.ws5_c00148{word-spacing:13.968000px;}
._0_c00148{margin-left:-480.337200px;}
._4_c00148{margin-left:-8.294400px;}
._5_c00148{margin-left:-6.480000px;}
._1_c00148{margin-left:-4.200000px;}
._3_c00148{margin-left:-2.160000px;}
._2_c00148{margin-left:-1.134000px;}
.fc3_c00148{color:rgb(32,32,32);}
.fc2_c00148{color:rgb(233,83,14);}
.fc1_c00148{color:rgb(232,86,17);}
.fc4_c00148{color:rgb(157,157,156);}
.fc0_c00148{color:rgb(60,60,59);}
.fs1_c00148{font-size:42.000000px;}
.fs0_c00148{font-size:60.000000px;}
.fs4_c00148{font-size:66.000000px;}
.fs3_c00148{font-size:72.000000px;}
.fs2_c00148{font-size:108.000000px;}
.y0_c00148{bottom:0.000000px;}
.y1_c00148{bottom:41.250000px;}
.y19_c00148{bottom:286.202700px;}
.y18_c00148{bottom:316.208700px;}
.y17_c00148{bottom:346.214700px;}
.y16_c00148{bottom:376.220700px;}
.y15_c00148{bottom:406.226700px;}
.y14_c00148{bottom:436.232700px;}
.y13_c00148{bottom:466.238700px;}
.y12_c00148{bottom:496.244700px;}
.y11_c00148{bottom:526.250700px;}
.y10_c00148{bottom:556.256700px;}
.yf_c00148{bottom:586.262700px;}
.ye_c00148{bottom:616.268700px;}
.yd_c00148{bottom:646.274700px;}
.yc_c00148{bottom:676.280700px;}
.yb_c00148{bottom:706.286700px;}
.ya_c00148{bottom:736.292700px;}
.y9_c00148{bottom:766.298700px;}
.y8_c00148{bottom:796.304700px;}
.y7_c00148{bottom:826.310700px;}
.y6_c00148{bottom:856.316700px;}
.y1d_c00148{bottom:856.334700px;}
.y5_c00148{bottom:886.322700px;}
.y1c_c00148{bottom:886.334700px;}
.y4_c00148{bottom:916.328700px;}
.y1b_c00148{bottom:916.334700px;}
.y3_c00148{bottom:946.334700px;}
.y1a_c00148{bottom:946.573800px;}
.y2_c00148{bottom:1006.334700px;}
.h5_c00148{height:50.292000px;}
.h2_c00148{height:54.000000px;}
.h4_c00148{height:64.800000px;}
.h3_c00148{height:100.980000px;}
.h0_c00148{height:1262.835000px;}
.h1_c00148{height:1263.000000px;}
.w0_c00148{width:892.914000px;}
.w1_c00148{width:893.250000px;}
.x0_c00148{left:0.000000px;}
.x2_c00148{left:82.500000px;}
.x3_c00148{left:106.500000px;}
.x4_c00148{left:675.611100px;}
.x1_c00148{left:788.288850px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls4_c00148{letter-spacing:-0.288000pt;}
.ls3_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:0.640000pt;}
.ls2_c00148{letter-spacing:1.333333pt;}
.ls1_c00148{letter-spacing:1.466667pt;}
.ws1_c00148{word-spacing:-18.912000pt;}
.ws2_c00148{word-spacing:-13.200000pt;}
.ws0_c00148{word-spacing:-9.066667pt;}
.wsf_c00148{word-spacing:-3.648000pt;}
.ws17_c00148{word-spacing:-1.600000pt;}
.wse_c00148{word-spacing:-1.408000pt;}
.ws19_c00148{word-spacing:-1.333333pt;}
.ws16_c00148{word-spacing:-0.320000pt;}
.wsc_c00148{word-spacing:-0.192000pt;}
.ws3_c00148{word-spacing:0.000000pt;}
.ws10_c00148{word-spacing:0.320000pt;}
.ws14_c00148{word-spacing:0.576000pt;}
.wsa_c00148{word-spacing:1.088000pt;}
.ws11_c00148{word-spacing:1.792000pt;}
.ws9_c00148{word-spacing:1.984000pt;}
.ws13_c00148{word-spacing:2.496000pt;}
.ws8_c00148{word-spacing:4.480000pt;}
.ws4_c00148{word-spacing:4.672000pt;}
.ws18_c00148{word-spacing:4.736000pt;}
.ws12_c00148{word-spacing:5.824000pt;}
.wsb_c00148{word-spacing:5.888000pt;}
.wsd_c00148{word-spacing:6.912000pt;}
.ws7_c00148{word-spacing:8.448000pt;}
.ws15_c00148{word-spacing:8.832000pt;}
.ws6_c00148{word-spacing:10.496000pt;}
.ws5_c00148{word-spacing:12.416000pt;}
._0_c00148{margin-left:-426.966400pt;}
._4_c00148{margin-left:-7.372800pt;}
._5_c00148{margin-left:-5.760000pt;}
._1_c00148{margin-left:-3.733333pt;}
._3_c00148{margin-left:-1.920000pt;}
._2_c00148{margin-left:-1.008000pt;}
.fs1_c00148{font-size:37.333333pt;}
.fs0_c00148{font-size:53.333333pt;}
.fs4_c00148{font-size:58.666667pt;}
.fs3_c00148{font-size:64.000000pt;}
.fs2_c00148{font-size:96.000000pt;}
.y0_c00148{bottom:0.000000pt;}
.y1_c00148{bottom:36.666667pt;}
.y19_c00148{bottom:254.402400pt;}
.y18_c00148{bottom:281.074400pt;}
.y17_c00148{bottom:307.746400pt;}
.y16_c00148{bottom:334.418400pt;}
.y15_c00148{bottom:361.090400pt;}
.y14_c00148{bottom:387.762400pt;}
.y13_c00148{bottom:414.434400pt;}
.y12_c00148{bottom:441.106400pt;}
.y11_c00148{bottom:467.778400pt;}
.y10_c00148{bottom:494.450400pt;}
.yf_c00148{bottom:521.122400pt;}
.ye_c00148{bottom:547.794400pt;}
.yd_c00148{bottom:574.466400pt;}
.yc_c00148{bottom:601.138400pt;}
.yb_c00148{bottom:627.810400pt;}
.ya_c00148{bottom:654.482400pt;}
.y9_c00148{bottom:681.154400pt;}
.y8_c00148{bottom:707.826400pt;}
.y7_c00148{bottom:734.498400pt;}
.y6_c00148{bottom:761.170400pt;}
.y1d_c00148{bottom:761.186400pt;}
.y5_c00148{bottom:787.842400pt;}
.y1c_c00148{bottom:787.853067pt;}
.y4_c00148{bottom:814.514400pt;}
.y1b_c00148{bottom:814.519733pt;}
.y3_c00148{bottom:841.186400pt;}
.y1a_c00148{bottom:841.398933pt;}
.y2_c00148{bottom:894.519733pt;}
.h5_c00148{height:44.704000pt;}
.h2_c00148{height:48.000000pt;}
.h4_c00148{height:57.600000pt;}
.h3_c00148{height:89.760000pt;}
.h0_c00148{height:1122.520000pt;}
.h1_c00148{height:1122.666667pt;}
.w0_c00148{width:793.701333pt;}
.w1_c00148{width:794.000000pt;}
.x0_c00148{left:0.000000pt;}
.x2_c00148{left:73.333333pt;}
.x3_c00148{left:94.666667pt;}
.x4_c00148{left:600.543200pt;}
.x1_c00148{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00149;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:1.155000;font-style: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);}
.m1_c00149{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls2_c00149{letter-spacing:0.000000px;}
.ls0_c00149{letter-spacing:0.864000px;}
.ls1_c00149{letter-spacing:1.200000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00149{word-spacing:-13.104000px;}
.ws0_c00149{word-spacing:-10.200000px;}
.ws5_c00149{word-spacing:-3.816000px;}
.ws3_c00149{word-spacing:-3.528000px;}
.ws6_c00149{word-spacing:-2.016000px;}
.ws7_c00149{word-spacing:-1.728000px;}
.ws4_c00149{word-spacing:-1.440000px;}
.ws2_c00149{word-spacing:0.000000px;}
._0_c00149{margin-left:-480.336600px;}
._7_c00149{margin-left:-8.208000px;}
._8_c00149{margin-left:-7.200000px;}
._6_c00149{margin-left:-5.760000px;}
._1_c00149{margin-left:-4.200000px;}
._3_c00149{margin-left:-2.160000px;}
._4_c00149{margin-left:-1.080000px;}
._5_c00149{width:1.440000px;}
._2_c00149{width:3.528000px;}
.fc3_c00149{color:rgb(255,255,255);}
.fc2_c00149{color:rgb(233,83,14);}
.fc1_c00149{color:rgb(232,86,17);}
.fc0_c00149{color:rgb(60,60,59);}
.fs1_c00149{font-size:42.000000px;}
.fs0_c00149{font-size:60.000000px;}
.fs3_c00149{font-size:72.000000px;}
.fs4_c00149{font-size:120.000000px;}
.fs2_c00149{font-size:360.000000px;}
.y0_c00149{bottom:0.000000px;}
.y1_c00149{bottom:41.250000px;}
.yf_c00149{bottom:394.274700px;}
.ye_c00149{bottom:415.280700px;}
.yd_c00149{bottom:436.286700px;}
.yc_c00149{bottom:484.292700px;}
.yb_c00149{bottom:505.298700px;}
.ya_c00149{bottom:526.304700px;}
.y9_c00149{bottom:574.310700px;}
.y8_c00149{bottom:595.316700px;}
.y7_c00149{bottom:616.322700px;}
.y6_c00149{bottom:664.328700px;}
.y5_c00149{bottom:685.334700px;}
.y4_c00149{bottom:706.340700px;}
.y3_c00149{bottom:752.834700px;}
.y12_c00149{bottom:946.334700px;}
.y11_c00149{bottom:976.334700px;}
.y10_c00149{bottom:1006.334700px;}
.y2_c00149{bottom:1093.526700px;}
.h2_c00149{height:54.000000px;}
.h5_c00149{height:64.800000px;}
.h4_c00149{height:66.456000px;}
.h6_c00149{height:112.200000px;}
.h3_c00149{height:324.000000px;}
.h0_c00149{height:1262.835000px;}
.h1_c00149{height:1263.000000px;}
.w0_c00149{width:892.914000px;}
.w1_c00149{width:893.250000px;}
.x0_c00149{left:0.000000px;}
.x2_c00149{left:81.290250px;}
.x3_c00149{left:82.393650px;}
.x5_c00149{left:112.287450px;}
.x4_c00149{left:127.393650px;}
.x1_c00149{left:789.353700px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls2_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:0.768000pt;}
.ls1_c00149{letter-spacing:1.066667pt;}
.ws1_c00149{word-spacing:-11.648000pt;}
.ws0_c00149{word-spacing:-9.066667pt;}
.ws5_c00149{word-spacing:-3.392000pt;}
.ws3_c00149{word-spacing:-3.136000pt;}
.ws6_c00149{word-spacing:-1.792000pt;}
.ws7_c00149{word-spacing:-1.536000pt;}
.ws4_c00149{word-spacing:-1.280000pt;}
.ws2_c00149{word-spacing:0.000000pt;}
._0_c00149{margin-left:-426.965867pt;}
._7_c00149{margin-left:-7.296000pt;}
._8_c00149{margin-left:-6.400000pt;}
._6_c00149{margin-left:-5.120000pt;}
._1_c00149{margin-left:-3.733333pt;}
._3_c00149{margin-left:-1.920000pt;}
._4_c00149{margin-left:-0.960000pt;}
._5_c00149{width:1.280000pt;}
._2_c00149{width:3.136000pt;}
.fs1_c00149{font-size:37.333333pt;}
.fs0_c00149{font-size:53.333333pt;}
.fs3_c00149{font-size:64.000000pt;}
.fs4_c00149{font-size:106.666667pt;}
.fs2_c00149{font-size:320.000000pt;}
.y0_c00149{bottom:0.000000pt;}
.y1_c00149{bottom:36.666667pt;}
.yf_c00149{bottom:350.466400pt;}
.ye_c00149{bottom:369.138400pt;}
.yd_c00149{bottom:387.810400pt;}
.yc_c00149{bottom:430.482400pt;}
.yb_c00149{bottom:449.154400pt;}
.ya_c00149{bottom:467.826400pt;}
.y9_c00149{bottom:510.498400pt;}
.y8_c00149{bottom:529.170400pt;}
.y7_c00149{bottom:547.842400pt;}
.y6_c00149{bottom:590.514400pt;}
.y5_c00149{bottom:609.186400pt;}
.y4_c00149{bottom:627.858400pt;}
.y3_c00149{bottom:669.186400pt;}
.y12_c00149{bottom:841.186400pt;}
.y11_c00149{bottom:867.853067pt;}
.y10_c00149{bottom:894.519733pt;}
.y2_c00149{bottom:972.023733pt;}
.h2_c00149{height:48.000000pt;}
.h5_c00149{height:57.600000pt;}
.h4_c00149{height:59.072000pt;}
.h6_c00149{height:99.733333pt;}
.h3_c00149{height:288.000000pt;}
.h0_c00149{height:1122.520000pt;}
.h1_c00149{height:1122.666667pt;}
.w0_c00149{width:793.701333pt;}
.w1_c00149{width:794.000000pt;}
.x0_c00149{left:0.000000pt;}
.x2_c00149{left:72.258000pt;}
.x3_c00149{left:73.238800pt;}
.x5_c00149{left:99.811067pt;}
.x4_c00149{left:113.238800pt;}
.x1_c00149{left:701.647733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00150;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.161000;font-style: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);}
.m1_c00150{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls5_c00150{letter-spacing:-0.540000px;}
.ls4_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:0.720000px;}
.ls1_c00150{letter-spacing:0.840000px;}
.ls3_c00150{letter-spacing:1.500000px;}
.ls2_c00150{letter-spacing:1.650000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00150{word-spacing:-21.060000px;}
.ws2_c00150{word-spacing:-17.640000px;}
.ws0_c00150{word-spacing:-10.200000px;}
.ws13_c00150{word-spacing:-2.664000px;}
.ws10_c00150{word-spacing:-1.512000px;}
.ws14_c00150{word-spacing:-1.500000px;}
.wsc_c00150{word-spacing:-1.224000px;}
.ws6_c00150{word-spacing:-0.864000px;}
.ws4_c00150{word-spacing:-0.840000px;}
.wsd_c00150{word-spacing:-0.720000px;}
.ws3_c00150{word-spacing:0.000000px;}
.ws5_c00150{word-spacing:0.360000px;}
.ws7_c00150{word-spacing:1.440000px;}
.ws9_c00150{word-spacing:3.312000px;}
.ws8_c00150{word-spacing:3.888000px;}
.wse_c00150{word-spacing:8.640000px;}
.ws12_c00150{word-spacing:10.872000px;}
.wsa_c00150{word-spacing:12.240000px;}
.wsf_c00150{word-spacing:16.128000px;}
.wsb_c00150{word-spacing:16.848000px;}
.ws11_c00150{word-spacing:16.992000px;}
._0_c00150{margin-left:-480.337200px;}
._5_c00150{margin-left:-5.796000px;}
._1_c00150{margin-left:-4.200000px;}
._3_c00150{margin-left:-2.491200px;}
._2_c00150{margin-left:-1.440000px;}
._4_c00150{width:2.498400px;}
.fc3_c00150{color:rgb(32,32,32);}
.fc2_c00150{color:rgb(233,83,14);}
.fc1_c00150{color:rgb(232,86,17);}
.fc4_c00150{color:rgb(157,157,156);}
.fc0_c00150{color:rgb(60,60,59);}
.fs1_c00150{font-size:42.000000px;}
.fs0_c00150{font-size:60.000000px;}
.fs5_c00150{font-size:66.000000px;}
.fs4_c00150{font-size:72.000000px;}
.fs3_c00150{font-size:84.000000px;}
.fs2_c00150{font-size:108.000000px;}
.y0_c00150{bottom:0.000000px;}
.y1_c00150{bottom:41.250000px;}
.y16_c00150{bottom:136.304700px;}
.y15_c00150{bottom:166.310700px;}
.y14_c00150{bottom:196.316700px;}
.y13_c00150{bottom:226.322700px;}
.y12_c00150{bottom:256.328700px;}
.y11_c00150{bottom:286.334700px;}
.y10_c00150{bottom:346.334700px;}
.yf_c00150{bottom:436.316700px;}
.ye_c00150{bottom:466.322700px;}
.yd_c00150{bottom:496.328700px;}
.yc_c00150{bottom:526.334700px;}
.yb_c00150{bottom:586.334700px;}
.ya_c00150{bottom:676.298700px;}
.y9_c00150{bottom:706.304700px;}
.y8_c00150{bottom:736.310700px;}
.y7_c00150{bottom:766.316700px;}
.y1a_c00150{bottom:766.334700px;}
.y6_c00150{bottom:796.322700px;}
.y19_c00150{bottom:796.334700px;}
.y5_c00150{bottom:826.328700px;}
.y18_c00150{bottom:826.334700px;}
.y4_c00150{bottom:856.334700px;}
.y17_c00150{bottom:858.082650px;}
.y3_c00150{bottom:916.334700px;}
.y2_c00150{bottom:1006.334700px;}
.h6_c00150{height:50.292000px;}
.h2_c00150{height:54.000000px;}
.h5_c00150{height:64.800000px;}
.h4_c00150{height:78.540000px;}
.h3_c00150{height:100.980000px;}
.h0_c00150{height:1262.835000px;}
.h1_c00150{height:1263.000000px;}
.w0_c00150{width:892.914000px;}
.w1_c00150{width:893.250000px;}
.x0_c00150{left:0.000000px;}
.x2_c00150{left:82.500000px;}
.x3_c00150{left:90.000000px;}
.x4_c00150{left:106.500000px;}
.x5_c00150{left:675.611100px;}
.x1_c00150{left:793.013850px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls5_c00150{letter-spacing:-0.480000pt;}
.ls4_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:0.640000pt;}
.ls1_c00150{letter-spacing:0.746667pt;}
.ls3_c00150{letter-spacing:1.333333pt;}
.ls2_c00150{letter-spacing:1.466667pt;}
.ws1_c00150{word-spacing:-18.720000pt;}
.ws2_c00150{word-spacing:-15.680000pt;}
.ws0_c00150{word-spacing:-9.066667pt;}
.ws13_c00150{word-spacing:-2.368000pt;}
.ws10_c00150{word-spacing:-1.344000pt;}
.ws14_c00150{word-spacing:-1.333333pt;}
.wsc_c00150{word-spacing:-1.088000pt;}
.ws6_c00150{word-spacing:-0.768000pt;}
.ws4_c00150{word-spacing:-0.746667pt;}
.wsd_c00150{word-spacing:-0.640000pt;}
.ws3_c00150{word-spacing:0.000000pt;}
.ws5_c00150{word-spacing:0.320000pt;}
.ws7_c00150{word-spacing:1.280000pt;}
.ws9_c00150{word-spacing:2.944000pt;}
.ws8_c00150{word-spacing:3.456000pt;}
.wse_c00150{word-spacing:7.680000pt;}
.ws12_c00150{word-spacing:9.664000pt;}
.wsa_c00150{word-spacing:10.880000pt;}
.wsf_c00150{word-spacing:14.336000pt;}
.wsb_c00150{word-spacing:14.976000pt;}
.ws11_c00150{word-spacing:15.104000pt;}
._0_c00150{margin-left:-426.966400pt;}
._5_c00150{margin-left:-5.152000pt;}
._1_c00150{margin-left:-3.733333pt;}
._3_c00150{margin-left:-2.214400pt;}
._2_c00150{margin-left:-1.280000pt;}
._4_c00150{width:2.220800pt;}
.fs1_c00150{font-size:37.333333pt;}
.fs0_c00150{font-size:53.333333pt;}
.fs5_c00150{font-size:58.666667pt;}
.fs4_c00150{font-size:64.000000pt;}
.fs3_c00150{font-size:74.666667pt;}
.fs2_c00150{font-size:96.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y1_c00150{bottom:36.666667pt;}
.y16_c00150{bottom:121.159733pt;}
.y15_c00150{bottom:147.831733pt;}
.y14_c00150{bottom:174.503733pt;}
.y13_c00150{bottom:201.175733pt;}
.y12_c00150{bottom:227.847733pt;}
.y11_c00150{bottom:254.519733pt;}
.y10_c00150{bottom:307.853067pt;}
.yf_c00150{bottom:387.837067pt;}
.ye_c00150{bottom:414.509067pt;}
.yd_c00150{bottom:441.181067pt;}
.yc_c00150{bottom:467.853067pt;}
.yb_c00150{bottom:521.186400pt;}
.ya_c00150{bottom:601.154400pt;}
.y9_c00150{bottom:627.826400pt;}
.y8_c00150{bottom:654.498400pt;}
.y7_c00150{bottom:681.170400pt;}
.y1a_c00150{bottom:681.186400pt;}
.y6_c00150{bottom:707.842400pt;}
.y19_c00150{bottom:707.853067pt;}
.y5_c00150{bottom:734.514400pt;}
.y18_c00150{bottom:734.519733pt;}
.y4_c00150{bottom:761.186400pt;}
.y17_c00150{bottom:762.740133pt;}
.y3_c00150{bottom:814.519733pt;}
.y2_c00150{bottom:894.519733pt;}
.h6_c00150{height:44.704000pt;}
.h2_c00150{height:48.000000pt;}
.h5_c00150{height:57.600000pt;}
.h4_c00150{height:69.813333pt;}
.h3_c00150{height:89.760000pt;}
.h0_c00150{height:1122.520000pt;}
.h1_c00150{height:1122.666667pt;}
.w0_c00150{width:793.701333pt;}
.w1_c00150{width:794.000000pt;}
.x0_c00150{left:0.000000pt;}
.x2_c00150{left:73.333333pt;}
.x3_c00150{left:80.000000pt;}
.x4_c00150{left:94.666667pt;}
.x5_c00150{left:600.543200pt;}
.x1_c00150{left:704.901200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.199000;font-style: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);}
.m1_c00151{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls1_c00151{letter-spacing:0.000000px;}
.ls0_c00151{letter-spacing:0.720000px;}
.ls2_c00151{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsd_c00151{word-spacing:-4.320000px;}
.ws8_c00151{word-spacing:-3.240000px;}
.ws9_c00151{word-spacing:-1.872000px;}
.ws6_c00151{word-spacing:-1.656000px;}
.ws2_c00151{word-spacing:-0.840000px;}
.ws1_c00151{word-spacing:0.000000px;}
.ws7_c00151{word-spacing:0.576000px;}
.wsb_c00151{word-spacing:4.464000px;}
.wsc_c00151{word-spacing:6.336000px;}
.ws5_c00151{word-spacing:8.928000px;}
.wsa_c00151{word-spacing:11.736000px;}
.ws4_c00151{word-spacing:14.040000px;}
.ws3_c00151{word-spacing:16.776000px;}
._0_c00151{margin-left:-480.336600px;}
._6_c00151{margin-left:-6.700800px;}
._7_c00151{margin-left:-5.299200px;}
._1_c00151{margin-left:-4.200000px;}
._4_c00151{margin-left:-2.988000px;}
._2_c00151{margin-left:-1.116000px;}
._3_c00151{width:1.274400px;}
._5_c00151{width:5.227200px;}
.fc2_c00151{color:rgb(32,32,32);}
.fc1_c00151{color:rgb(232,86,17);}
.fc0_c00151{color:rgb(60,60,59);}
.fs1_c00151{font-size:42.000000px;}
.fs0_c00151{font-size:60.000000px;}
.fs3_c00151{font-size:72.000000px;}
.fs2_c00151{font-size:84.000000px;}
.y0_c00151{bottom:0.000000px;}
.y1_c00151{bottom:41.250000px;}
.y10_c00151{bottom:466.304700px;}
.yf_c00151{bottom:496.310700px;}
.ye_c00151{bottom:526.316700px;}
.yd_c00151{bottom:556.322700px;}
.yc_c00151{bottom:586.328700px;}
.yb_c00151{bottom:616.334700px;}
.ya_c00151{bottom:676.334700px;}
.y9_c00151{bottom:766.298700px;}
.y8_c00151{bottom:796.304700px;}
.y7_c00151{bottom:826.310700px;}
.y6_c00151{bottom:856.316700px;}
.y5_c00151{bottom:886.322700px;}
.y4_c00151{bottom:916.328700px;}
.y3_c00151{bottom:946.334700px;}
.y2_c00151{bottom:1006.334700px;}
.h2_c00151{height:54.000000px;}
.h4_c00151{height:64.800000px;}
.h3_c00151{height:78.540000px;}
.h0_c00151{height:1262.835000px;}
.h1_c00151{height:1263.000000px;}
.w0_c00151{width:892.914000px;}
.w1_c00151{width:893.250000px;}
.x0_c00151{left:0.000000px;}
.x2_c00151{left:90.000000px;}
.x3_c00151{left:106.500000px;}
.x1_c00151{left:790.538700px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls1_c00151{letter-spacing:0.000000pt;}
.ls0_c00151{letter-spacing:0.640000pt;}
.ls2_c00151{letter-spacing:0.746667pt;}
.ws0_c00151{word-spacing:-9.066667pt;}
.wsd_c00151{word-spacing:-3.840000pt;}
.ws8_c00151{word-spacing:-2.880000pt;}
.ws9_c00151{word-spacing:-1.664000pt;}
.ws6_c00151{word-spacing:-1.472000pt;}
.ws2_c00151{word-spacing:-0.746667pt;}
.ws1_c00151{word-spacing:0.000000pt;}
.ws7_c00151{word-spacing:0.512000pt;}
.wsb_c00151{word-spacing:3.968000pt;}
.wsc_c00151{word-spacing:5.632000pt;}
.ws5_c00151{word-spacing:7.936000pt;}
.wsa_c00151{word-spacing:10.432000pt;}
.ws4_c00151{word-spacing:12.480000pt;}
.ws3_c00151{word-spacing:14.912000pt;}
._0_c00151{margin-left:-426.965867pt;}
._6_c00151{margin-left:-5.956267pt;}
._7_c00151{margin-left:-4.710400pt;}
._1_c00151{margin-left:-3.733333pt;}
._4_c00151{margin-left:-2.656000pt;}
._2_c00151{margin-left:-0.992000pt;}
._3_c00151{width:1.132800pt;}
._5_c00151{width:4.646400pt;}
.fs1_c00151{font-size:37.333333pt;}
.fs0_c00151{font-size:53.333333pt;}
.fs3_c00151{font-size:64.000000pt;}
.fs2_c00151{font-size:74.666667pt;}
.y0_c00151{bottom:0.000000pt;}
.y1_c00151{bottom:36.666667pt;}
.y10_c00151{bottom:414.493067pt;}
.yf_c00151{bottom:441.165067pt;}
.ye_c00151{bottom:467.837067pt;}
.yd_c00151{bottom:494.509067pt;}
.yc_c00151{bottom:521.181067pt;}
.yb_c00151{bottom:547.853067pt;}
.ya_c00151{bottom:601.186400pt;}
.y9_c00151{bottom:681.154400pt;}
.y8_c00151{bottom:707.826400pt;}
.y7_c00151{bottom:734.498400pt;}
.y6_c00151{bottom:761.170400pt;}
.y5_c00151{bottom:787.842400pt;}
.y4_c00151{bottom:814.514400pt;}
.y3_c00151{bottom:841.186400pt;}
.y2_c00151{bottom:894.519733pt;}
.h2_c00151{height:48.000000pt;}
.h4_c00151{height:57.600000pt;}
.h3_c00151{height:69.813333pt;}
.h0_c00151{height:1122.520000pt;}
.h1_c00151{height:1122.666667pt;}
.w0_c00151{width:793.701333pt;}
.w1_c00151{width:794.000000pt;}
.x0_c00151{left:0.000000pt;}
.x2_c00151{left:80.000000pt;}
.x3_c00151{left:94.666667pt;}
.x1_c00151{left:702.701067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00152;src:url('chunks/assets/font_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00152;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.161000;font-style: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);}
.m1_c00152{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls5_c00152{letter-spacing:-0.324000px;}
.ls4_c00152{letter-spacing:0.000000px;}
.ls0_c00152{letter-spacing:0.720000px;}
.ls1_c00152{letter-spacing:0.840000px;}
.ls3_c00152{letter-spacing:1.500000px;}
.ls2_c00152{letter-spacing:1.650000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00152{word-spacing:-21.276000px;}
.ws2_c00152{word-spacing:-17.640000px;}
.ws4_c00152{word-spacing:-14.850000px;}
.ws3_c00152{word-spacing:-12.960000px;}
.ws0_c00152{word-spacing:-10.200000px;}
.wsc_c00152{word-spacing:-2.088000px;}
.ws11_c00152{word-spacing:-1.656000px;}
.wsb_c00152{word-spacing:-1.224000px;}
.ws6_c00152{word-spacing:-0.840000px;}
.wse_c00152{word-spacing:-0.648000px;}
.ws5_c00152{word-spacing:0.000000px;}
.ws7_c00152{word-spacing:2.952000px;}
.wsf_c00152{word-spacing:8.352000px;}
.wsd_c00152{word-spacing:8.424000px;}
.ws8_c00152{word-spacing:10.800000px;}
.wsa_c00152{word-spacing:13.536000px;}
.ws13_c00152{word-spacing:14.112000px;}
.ws9_c00152{word-spacing:16.128000px;}
.ws10_c00152{word-spacing:18.072000px;}
.ws12_c00152{word-spacing:20.016000px;}
._0_c00152{margin-left:-480.337200px;}
._4_c00152{margin-left:-6.480000px;}
._6_c00152{margin-left:-5.284800px;}
._1_c00152{margin-left:-4.200000px;}
._3_c00152{margin-left:-2.160000px;}
._2_c00152{margin-left:-1.134000px;}
._5_c00152{width:1.245600px;}
.fc3_c00152{color:rgb(32,32,32);}
.fc2_c00152{color:rgb(233,83,14);}
.fc1_c00152{color:rgb(232,86,17);}
.fc4_c00152{color:rgb(157,157,156);}
.fc0_c00152{color:rgb(60,60,59);}
.fs1_c00152{font-size:42.000000px;}
.fs0_c00152{font-size:60.000000px;}
.fs5_c00152{font-size:66.000000px;}
.fs4_c00152{font-size:72.000000px;}
.fs3_c00152{font-size:84.000000px;}
.fs2_c00152{font-size:108.000000px;}
.y0_c00152{bottom:0.000000px;}
.y1_c00152{bottom:41.250000px;}
.y15_c00152{bottom:166.304700px;}
.y14_c00152{bottom:196.310700px;}
.y13_c00152{bottom:226.316700px;}
.y12_c00152{bottom:256.322700px;}
.y11_c00152{bottom:286.328700px;}
.y10_c00152{bottom:316.334700px;}
.yf_c00152{bottom:376.334700px;}
.ye_c00152{bottom:466.322700px;}
.yd_c00152{bottom:496.328700px;}
.yc_c00152{bottom:526.334700px;}
.yb_c00152{bottom:586.334700px;}
.ya_c00152{bottom:676.298700px;}
.y9_c00152{bottom:706.304700px;}
.y8_c00152{bottom:736.310700px;}
.y7_c00152{bottom:766.316700px;}
.y6_c00152{bottom:796.322700px;}
.y18_c00152{bottom:796.334700px;}
.y5_c00152{bottom:826.328700px;}
.y17_c00152{bottom:826.334700px;}
.y4_c00152{bottom:856.334700px;}
.y16_c00152{bottom:858.082650px;}
.y3_c00152{bottom:916.334700px;}
.y2_c00152{bottom:1006.334700px;}
.h6_c00152{height:50.292000px;}
.h2_c00152{height:54.000000px;}
.h5_c00152{height:64.800000px;}
.h4_c00152{height:78.540000px;}
.h3_c00152{height:100.980000px;}
.h0_c00152{height:1262.835000px;}
.h1_c00152{height:1263.000000px;}
.w0_c00152{width:892.914000px;}
.w1_c00152{width:893.250000px;}
.x0_c00152{left:0.000000px;}
.x2_c00152{left:82.500000px;}
.x3_c00152{left:90.000000px;}
.x4_c00152{left:106.500000px;}
.x5_c00152{left:675.611100px;}
.x1_c00152{left:790.388850px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls5_c00152{letter-spacing:-0.288000pt;}
.ls4_c00152{letter-spacing:0.000000pt;}
.ls0_c00152{letter-spacing:0.640000pt;}
.ls1_c00152{letter-spacing:0.746667pt;}
.ls3_c00152{letter-spacing:1.333333pt;}
.ls2_c00152{letter-spacing:1.466667pt;}
.ws1_c00152{word-spacing:-18.912000pt;}
.ws2_c00152{word-spacing:-15.680000pt;}
.ws4_c00152{word-spacing:-13.200000pt;}
.ws3_c00152{word-spacing:-11.520000pt;}
.ws0_c00152{word-spacing:-9.066667pt;}
.wsc_c00152{word-spacing:-1.856000pt;}
.ws11_c00152{word-spacing:-1.472000pt;}
.wsb_c00152{word-spacing:-1.088000pt;}
.ws6_c00152{word-spacing:-0.746667pt;}
.wse_c00152{word-spacing:-0.576000pt;}
.ws5_c00152{word-spacing:0.000000pt;}
.ws7_c00152{word-spacing:2.624000pt;}
.wsf_c00152{word-spacing:7.424000pt;}
.wsd_c00152{word-spacing:7.488000pt;}
.ws8_c00152{word-spacing:9.600000pt;}
.wsa_c00152{word-spacing:12.032000pt;}
.ws13_c00152{word-spacing:12.544000pt;}
.ws9_c00152{word-spacing:14.336000pt;}
.ws10_c00152{word-spacing:16.064000pt;}
.ws12_c00152{word-spacing:17.792000pt;}
._0_c00152{margin-left:-426.966400pt;}
._4_c00152{margin-left:-5.760000pt;}
._6_c00152{margin-left:-4.697600pt;}
._1_c00152{margin-left:-3.733333pt;}
._3_c00152{margin-left:-1.920000pt;}
._2_c00152{margin-left:-1.008000pt;}
._5_c00152{width:1.107200pt;}
.fs1_c00152{font-size:37.333333pt;}
.fs0_c00152{font-size:53.333333pt;}
.fs5_c00152{font-size:58.666667pt;}
.fs4_c00152{font-size:64.000000pt;}
.fs3_c00152{font-size:74.666667pt;}
.fs2_c00152{font-size:96.000000pt;}
.y0_c00152{bottom:0.000000pt;}
.y1_c00152{bottom:36.666667pt;}
.y15_c00152{bottom:147.826400pt;}
.y14_c00152{bottom:174.498400pt;}
.y13_c00152{bottom:201.170400pt;}
.y12_c00152{bottom:227.842400pt;}
.y11_c00152{bottom:254.514400pt;}
.y10_c00152{bottom:281.186400pt;}
.yf_c00152{bottom:334.519733pt;}
.ye_c00152{bottom:414.509067pt;}
.yd_c00152{bottom:441.181067pt;}
.yc_c00152{bottom:467.853067pt;}
.yb_c00152{bottom:521.186400pt;}
.ya_c00152{bottom:601.154400pt;}
.y9_c00152{bottom:627.826400pt;}
.y8_c00152{bottom:654.498400pt;}
.y7_c00152{bottom:681.170400pt;}
.y6_c00152{bottom:707.842400pt;}
.y18_c00152{bottom:707.853067pt;}
.y5_c00152{bottom:734.514400pt;}
.y17_c00152{bottom:734.519733pt;}
.y4_c00152{bottom:761.186400pt;}
.y16_c00152{bottom:762.740133pt;}
.y3_c00152{bottom:814.519733pt;}
.y2_c00152{bottom:894.519733pt;}
.h6_c00152{height:44.704000pt;}
.h2_c00152{height:48.000000pt;}
.h5_c00152{height:57.600000pt;}
.h4_c00152{height:69.813333pt;}
.h3_c00152{height:89.760000pt;}
.h0_c00152{height:1122.520000pt;}
.h1_c00152{height:1122.666667pt;}
.w0_c00152{width:793.701333pt;}
.w1_c00152{width:794.000000pt;}
.x0_c00152{left:0.000000pt;}
.x2_c00152{left:73.333333pt;}
.x3_c00152{left:80.000000pt;}
.x4_c00152{left:94.666667pt;}
.x5_c00152{left:600.543200pt;}
.x1_c00152{left:702.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.199000;font-style: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);}
.m1_c00153{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls1_c00153{letter-spacing:0.000000px;}
.ls0_c00153{letter-spacing:0.720000px;}
.ls2_c00153{letter-spacing:0.840000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00153{word-spacing:-12.960000px;}
.ws0_c00153{word-spacing:-10.200000px;}
.wsc_c00153{word-spacing:-2.232000px;}
.ws3_c00153{word-spacing:-0.840000px;}
.ws8_c00153{word-spacing:-0.072000px;}
.ws2_c00153{word-spacing:0.000000px;}
.wsb_c00153{word-spacing:1.584000px;}
.ws9_c00153{word-spacing:2.376000px;}
.ws7_c00153{word-spacing:2.664000px;}
.wsd_c00153{word-spacing:8.568000px;}
.ws4_c00153{word-spacing:10.800000px;}
.ws6_c00153{word-spacing:11.448000px;}
.ws5_c00153{word-spacing:13.176000px;}
.wsa_c00153{word-spacing:13.968000px;}
._0_c00153{margin-left:-480.337200px;}
._1_c00153{margin-left:-4.200000px;}
._3_c00153{margin-left:-3.175200px;}
._2_c00153{margin-left:-1.440000px;}
.fc2_c00153{color:rgb(32,32,32);}
.fc1_c00153{color:rgb(232,86,17);}
.fc0_c00153{color:rgb(60,60,59);}
.fs1_c00153{font-size:42.000000px;}
.fs0_c00153{font-size:60.000000px;}
.fs3_c00153{font-size:72.000000px;}
.fs2_c00153{font-size:84.000000px;}
.y0_c00153{bottom:0.000000px;}
.y1_c00153{bottom:41.250000px;}
.yf_c00153{bottom:496.310700px;}
.ye_c00153{bottom:526.316700px;}
.yd_c00153{bottom:556.322700px;}
.yc_c00153{bottom:586.328700px;}
.yb_c00153{bottom:616.334700px;}
.ya_c00153{bottom:676.334700px;}
.y9_c00153{bottom:766.298700px;}
.y8_c00153{bottom:796.304700px;}
.y7_c00153{bottom:826.310700px;}
.y6_c00153{bottom:856.316700px;}
.y5_c00153{bottom:886.322700px;}
.y4_c00153{bottom:916.328700px;}
.y3_c00153{bottom:946.334700px;}
.y2_c00153{bottom:1006.334700px;}
.h2_c00153{height:54.000000px;}
.h4_c00153{height:64.800000px;}
.h3_c00153{height:78.540000px;}
.h0_c00153{height:1262.835000px;}
.h1_c00153{height:1263.000000px;}
.w0_c00153{width:892.914000px;}
.w1_c00153{width:893.250000px;}
.x0_c00153{left:0.000000px;}
.x2_c00153{left:90.000000px;}
.x3_c00153{left:106.500000px;}
.x1_c00153{left:789.413850px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls1_c00153{letter-spacing:0.000000pt;}
.ls0_c00153{letter-spacing:0.640000pt;}
.ls2_c00153{letter-spacing:0.746667pt;}
.ws1_c00153{word-spacing:-11.520000pt;}
.ws0_c00153{word-spacing:-9.066667pt;}
.wsc_c00153{word-spacing:-1.984000pt;}
.ws3_c00153{word-spacing:-0.746667pt;}
.ws8_c00153{word-spacing:-0.064000pt;}
.ws2_c00153{word-spacing:0.000000pt;}
.wsb_c00153{word-spacing:1.408000pt;}
.ws9_c00153{word-spacing:2.112000pt;}
.ws7_c00153{word-spacing:2.368000pt;}
.wsd_c00153{word-spacing:7.616000pt;}
.ws4_c00153{word-spacing:9.600000pt;}
.ws6_c00153{word-spacing:10.176000pt;}
.ws5_c00153{word-spacing:11.712000pt;}
.wsa_c00153{word-spacing:12.416000pt;}
._0_c00153{margin-left:-426.966400pt;}
._1_c00153{margin-left:-3.733333pt;}
._3_c00153{margin-left:-2.822400pt;}
._2_c00153{margin-left:-1.280000pt;}
.fs1_c00153{font-size:37.333333pt;}
.fs0_c00153{font-size:53.333333pt;}
.fs3_c00153{font-size:64.000000pt;}
.fs2_c00153{font-size:74.666667pt;}
.y0_c00153{bottom:0.000000pt;}
.y1_c00153{bottom:36.666667pt;}
.yf_c00153{bottom:441.165067pt;}
.ye_c00153{bottom:467.837067pt;}
.yd_c00153{bottom:494.509067pt;}
.yc_c00153{bottom:521.181067pt;}
.yb_c00153{bottom:547.853067pt;}
.ya_c00153{bottom:601.186400pt;}
.y9_c00153{bottom:681.154400pt;}
.y8_c00153{bottom:707.826400pt;}
.y7_c00153{bottom:734.498400pt;}
.y6_c00153{bottom:761.170400pt;}
.y5_c00153{bottom:787.842400pt;}
.y4_c00153{bottom:814.514400pt;}
.y3_c00153{bottom:841.186400pt;}
.y2_c00153{bottom:894.519733pt;}
.h2_c00153{height:48.000000pt;}
.h4_c00153{height:57.600000pt;}
.h3_c00153{height:69.813333pt;}
.h0_c00153{height:1122.520000pt;}
.h1_c00153{height:1122.666667pt;}
.w0_c00153{width:793.701333pt;}
.w1_c00153{width:794.000000pt;}
.x0_c00153{left:0.000000pt;}
.x2_c00153{left:80.000000pt;}
.x3_c00153{left:94.666667pt;}
.x1_c00153{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00154;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00154;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:1.155000;font-style: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);}
.m1_c00154{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls2_c00154{letter-spacing:0.000000px;}
.ls0_c00154{letter-spacing:0.864000px;}
.ls1_c00154{letter-spacing:1.200000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00154{word-spacing:-13.104000px;}
.ws6_c00154{word-spacing:-11.040000px;}
.ws0_c00154{word-spacing:-10.200000px;}
.ws4_c00154{word-spacing:-3.816000px;}
.ws3_c00154{word-spacing:-1.440000px;}
.ws5_c00154{word-spacing:-0.864000px;}
.ws2_c00154{word-spacing:0.000000px;}
._0_c00154{margin-left:-480.336600px;}
._6_c00154{margin-left:-9.360000px;}
._4_c00154{margin-left:-6.480000px;}
._1_c00154{margin-left:-4.200000px;}
._7_c00154{margin-left:-2.760000px;}
._2_c00154{margin-left:-1.440000px;}
._3_c00154{width:1.440000px;}
._5_c00154{width:3.816000px;}
._8_c00154{width:11.040000px;}
.fc3_c00154{color:rgb(255,255,255);}
.fc2_c00154{color:rgb(233,83,14);}
.fc1_c00154{color:rgb(232,86,17);}
.fc0_c00154{color:rgb(60,60,59);}
.fs1_c00154{font-size:42.000000px;}
.fs0_c00154{font-size:60.000000px;}
.fs3_c00154{font-size:72.000000px;}
.fs4_c00154{font-size:120.000000px;}
.fs2_c00154{font-size:360.000000px;}
.y0_c00154{bottom:0.000000px;}
.y1_c00154{bottom:41.250000px;}
.yc_c00154{bottom:484.310700px;}
.yb_c00154{bottom:505.316700px;}
.ya_c00154{bottom:526.322700px;}
.y9_c00154{bottom:574.328700px;}
.y8_c00154{bottom:595.334700px;}
.y7_c00154{bottom:616.340700px;}
.y6_c00154{bottom:663.734700px;}
.y5_c00154{bottom:685.334700px;}
.y4_c00154{bottom:706.340700px;}
.y3_c00154{bottom:752.834700px;}
.yf_c00154{bottom:946.334700px;}
.ye_c00154{bottom:976.334700px;}
.yd_c00154{bottom:1006.334700px;}
.y2_c00154{bottom:1093.526700px;}
.h2_c00154{height:54.000000px;}
.h5_c00154{height:64.800000px;}
.h4_c00154{height:66.456000px;}
.h6_c00154{height:112.200000px;}
.h3_c00154{height:324.000000px;}
.h0_c00154{height:1262.835000px;}
.h1_c00154{height:1263.000000px;}
.w0_c00154{width:892.914000px;}
.w1_c00154{width:893.250000px;}
.x0_c00154{left:0.000000px;}
.x2_c00154{left:81.290250px;}
.x3_c00154{left:82.393650px;}
.x5_c00154{left:112.287450px;}
.x4_c00154{left:127.393650px;}
.x1_c00154{left:790.463700px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls2_c00154{letter-spacing:0.000000pt;}
.ls0_c00154{letter-spacing:0.768000pt;}
.ls1_c00154{letter-spacing:1.066667pt;}
.ws1_c00154{word-spacing:-11.648000pt;}
.ws6_c00154{word-spacing:-9.813333pt;}
.ws0_c00154{word-spacing:-9.066667pt;}
.ws4_c00154{word-spacing:-3.392000pt;}
.ws3_c00154{word-spacing:-1.280000pt;}
.ws5_c00154{word-spacing:-0.768000pt;}
.ws2_c00154{word-spacing:0.000000pt;}
._0_c00154{margin-left:-426.965867pt;}
._6_c00154{margin-left:-8.320000pt;}
._4_c00154{margin-left:-5.760000pt;}
._1_c00154{margin-left:-3.733333pt;}
._7_c00154{margin-left:-2.453333pt;}
._2_c00154{margin-left:-1.280000pt;}
._3_c00154{width:1.280000pt;}
._5_c00154{width:3.392000pt;}
._8_c00154{width:9.813333pt;}
.fs1_c00154{font-size:37.333333pt;}
.fs0_c00154{font-size:53.333333pt;}
.fs3_c00154{font-size:64.000000pt;}
.fs4_c00154{font-size:106.666667pt;}
.fs2_c00154{font-size:320.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y1_c00154{bottom:36.666667pt;}
.yc_c00154{bottom:430.498400pt;}
.yb_c00154{bottom:449.170400pt;}
.ya_c00154{bottom:467.842400pt;}
.y9_c00154{bottom:510.514400pt;}
.y8_c00154{bottom:529.186400pt;}
.y7_c00154{bottom:547.858400pt;}
.y6_c00154{bottom:589.986400pt;}
.y5_c00154{bottom:609.186400pt;}
.y4_c00154{bottom:627.858400pt;}
.y3_c00154{bottom:669.186400pt;}
.yf_c00154{bottom:841.186400pt;}
.ye_c00154{bottom:867.853067pt;}
.yd_c00154{bottom:894.519733pt;}
.y2_c00154{bottom:972.023733pt;}
.h2_c00154{height:48.000000pt;}
.h5_c00154{height:57.600000pt;}
.h4_c00154{height:59.072000pt;}
.h6_c00154{height:99.733333pt;}
.h3_c00154{height:288.000000pt;}
.h0_c00154{height:1122.520000pt;}
.h1_c00154{height:1122.666667pt;}
.w0_c00154{width:793.701333pt;}
.w1_c00154{width:794.000000pt;}
.x0_c00154{left:0.000000pt;}
.x2_c00154{left:72.258000pt;}
.x3_c00154{left:73.238800pt;}
.x5_c00154{left:99.811067pt;}
.x4_c00154{left:113.238800pt;}
.x1_c00154{left:702.634400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00155;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:1.161000;font-style: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);}
.m1_c00155{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls5_c00155{letter-spacing:-0.540000px;}
.ls4_c00155{letter-spacing:0.000000px;}
.ls0_c00155{letter-spacing:0.720000px;}
.ls1_c00155{letter-spacing:0.840000px;}
.ls3_c00155{letter-spacing:1.500000px;}
.ls2_c00155{letter-spacing:1.650000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00155{word-spacing:-21.060000px;}
.ws2_c00155{word-spacing:-17.640000px;}
.ws0_c00155{word-spacing:-10.200000px;}
.ws17_c00155{word-spacing:-2.376000px;}
.ws12_c00155{word-spacing:-2.016000px;}
.ws6_c00155{word-spacing:-1.584000px;}
.ws19_c00155{word-spacing:-1.500000px;}
.ws7_c00155{word-spacing:-0.864000px;}
.ws4_c00155{word-spacing:-0.840000px;}
.ws3_c00155{word-spacing:0.000000px;}
.ws14_c00155{word-spacing:0.072000px;}
.ws13_c00155{word-spacing:0.504000px;}
.ws11_c00155{word-spacing:1.296000px;}
.ws8_c00155{word-spacing:2.160000px;}
.ws16_c00155{word-spacing:2.664000px;}
.ws9_c00155{word-spacing:4.104000px;}
.ws18_c00155{word-spacing:4.320000px;}
.ws15_c00155{word-spacing:5.688000px;}
.wsf_c00155{word-spacing:5.760000px;}
.wsa_c00155{word-spacing:6.336000px;}
.wsc_c00155{word-spacing:7.128000px;}
.wse_c00155{word-spacing:7.632000px;}
.wsb_c00155{word-spacing:12.240000px;}
.wsd_c00155{word-spacing:12.888000px;}
.ws10_c00155{word-spacing:13.248000px;}
.ws5_c00155{word-spacing:13.824000px;}
._0_c00155{margin-left:-480.336600px;}
._3_c00155{margin-left:-5.853600px;}
._1_c00155{margin-left:-4.200000px;}
._2_c00155{margin-left:-2.160000px;}
._4_c00155{margin-left:-1.123200px;}
.fc3_c00155{color:rgb(32,32,32);}
.fc2_c00155{color:rgb(233,83,14);}
.fc1_c00155{color:rgb(232,86,17);}
.fc4_c00155{color:rgb(157,157,156);}
.fc0_c00155{color:rgb(60,60,59);}
.fs1_c00155{font-size:42.000000px;}
.fs0_c00155{font-size:60.000000px;}
.fs5_c00155{font-size:66.000000px;}
.fs4_c00155{font-size:72.000000px;}
.fs3_c00155{font-size:84.000000px;}
.fs2_c00155{font-size:108.000000px;}
.y0_c00155{bottom:0.000000px;}
.y1_c00155{bottom:41.250000px;}
.y1a_c00155{bottom:106.316700px;}
.y19_c00155{bottom:136.322700px;}
.y18_c00155{bottom:166.328700px;}
.y17_c00155{bottom:196.334700px;}
.y16_c00155{bottom:256.334700px;}
.y15_c00155{bottom:346.232700px;}
.y14_c00155{bottom:376.238700px;}
.y13_c00155{bottom:406.244700px;}
.y12_c00155{bottom:436.250700px;}
.y11_c00155{bottom:466.256700px;}
.y10_c00155{bottom:496.262700px;}
.yf_c00155{bottom:526.268700px;}
.ye_c00155{bottom:556.274700px;}
.yd_c00155{bottom:586.280700px;}
.yc_c00155{bottom:616.286700px;}
.yb_c00155{bottom:646.292700px;}
.ya_c00155{bottom:676.298700px;}
.y9_c00155{bottom:706.304700px;}
.y8_c00155{bottom:736.310700px;}
.y1f_c00155{bottom:736.334700px;}
.y7_c00155{bottom:766.316700px;}
.y1e_c00155{bottom:766.334700px;}
.y6_c00155{bottom:796.322700px;}
.y1d_c00155{bottom:796.334700px;}
.y5_c00155{bottom:826.328700px;}
.y1c_c00155{bottom:826.334700px;}
.y4_c00155{bottom:856.334700px;}
.y1b_c00155{bottom:858.082650px;}
.y3_c00155{bottom:916.334700px;}
.y2_c00155{bottom:1006.334700px;}
.h6_c00155{height:50.292000px;}
.h2_c00155{height:54.000000px;}
.h5_c00155{height:64.800000px;}
.h4_c00155{height:78.540000px;}
.h3_c00155{height:100.980000px;}
.h0_c00155{height:1262.835000px;}
.h1_c00155{height:1263.000000px;}
.w0_c00155{width:892.914000px;}
.w1_c00155{width:893.250000px;}
.x0_c00155{left:0.000000px;}
.x2_c00155{left:82.500000px;}
.x3_c00155{left:90.000000px;}
.x4_c00155{left:106.500000px;}
.x5_c00155{left:675.611100px;}
.x1_c00155{left:789.338700px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls5_c00155{letter-spacing:-0.480000pt;}
.ls4_c00155{letter-spacing:0.000000pt;}
.ls0_c00155{letter-spacing:0.640000pt;}
.ls1_c00155{letter-spacing:0.746667pt;}
.ls3_c00155{letter-spacing:1.333333pt;}
.ls2_c00155{letter-spacing:1.466667pt;}
.ws1_c00155{word-spacing:-18.720000pt;}
.ws2_c00155{word-spacing:-15.680000pt;}
.ws0_c00155{word-spacing:-9.066667pt;}
.ws17_c00155{word-spacing:-2.112000pt;}
.ws12_c00155{word-spacing:-1.792000pt;}
.ws6_c00155{word-spacing:-1.408000pt;}
.ws19_c00155{word-spacing:-1.333333pt;}
.ws7_c00155{word-spacing:-0.768000pt;}
.ws4_c00155{word-spacing:-0.746667pt;}
.ws3_c00155{word-spacing:0.000000pt;}
.ws14_c00155{word-spacing:0.064000pt;}
.ws13_c00155{word-spacing:0.448000pt;}
.ws11_c00155{word-spacing:1.152000pt;}
.ws8_c00155{word-spacing:1.920000pt;}
.ws16_c00155{word-spacing:2.368000pt;}
.ws9_c00155{word-spacing:3.648000pt;}
.ws18_c00155{word-spacing:3.840000pt;}
.ws15_c00155{word-spacing:5.056000pt;}
.wsf_c00155{word-spacing:5.120000pt;}
.wsa_c00155{word-spacing:5.632000pt;}
.wsc_c00155{word-spacing:6.336000pt;}
.wse_c00155{word-spacing:6.784000pt;}
.wsb_c00155{word-spacing:10.880000pt;}
.wsd_c00155{word-spacing:11.456000pt;}
.ws10_c00155{word-spacing:11.776000pt;}
.ws5_c00155{word-spacing:12.288000pt;}
._0_c00155{margin-left:-426.965867pt;}
._3_c00155{margin-left:-5.203200pt;}
._1_c00155{margin-left:-3.733333pt;}
._2_c00155{margin-left:-1.920000pt;}
._4_c00155{margin-left:-0.998400pt;}
.fs1_c00155{font-size:37.333333pt;}
.fs0_c00155{font-size:53.333333pt;}
.fs5_c00155{font-size:58.666667pt;}
.fs4_c00155{font-size:64.000000pt;}
.fs3_c00155{font-size:74.666667pt;}
.fs2_c00155{font-size:96.000000pt;}
.y0_c00155{bottom:0.000000pt;}
.y1_c00155{bottom:36.666667pt;}
.y1a_c00155{bottom:94.503733pt;}
.y19_c00155{bottom:121.175733pt;}
.y18_c00155{bottom:147.847733pt;}
.y17_c00155{bottom:174.519733pt;}
.y16_c00155{bottom:227.853067pt;}
.y15_c00155{bottom:307.762400pt;}
.y14_c00155{bottom:334.434400pt;}
.y13_c00155{bottom:361.106400pt;}
.y12_c00155{bottom:387.778400pt;}
.y11_c00155{bottom:414.450400pt;}
.y10_c00155{bottom:441.122400pt;}
.yf_c00155{bottom:467.794400pt;}
.ye_c00155{bottom:494.466400pt;}
.yd_c00155{bottom:521.138400pt;}
.yc_c00155{bottom:547.810400pt;}
.yb_c00155{bottom:574.482400pt;}
.ya_c00155{bottom:601.154400pt;}
.y9_c00155{bottom:627.826400pt;}
.y8_c00155{bottom:654.498400pt;}
.y1f_c00155{bottom:654.519733pt;}
.y7_c00155{bottom:681.170400pt;}
.y1e_c00155{bottom:681.186400pt;}
.y6_c00155{bottom:707.842400pt;}
.y1d_c00155{bottom:707.853067pt;}
.y5_c00155{bottom:734.514400pt;}
.y1c_c00155{bottom:734.519733pt;}
.y4_c00155{bottom:761.186400pt;}
.y1b_c00155{bottom:762.740133pt;}
.y3_c00155{bottom:814.519733pt;}
.y2_c00155{bottom:894.519733pt;}
.h6_c00155{height:44.704000pt;}
.h2_c00155{height:48.000000pt;}
.h5_c00155{height:57.600000pt;}
.h4_c00155{height:69.813333pt;}
.h3_c00155{height:89.760000pt;}
.h0_c00155{height:1122.520000pt;}
.h1_c00155{height:1122.666667pt;}
.w0_c00155{width:793.701333pt;}
.w1_c00155{width:794.000000pt;}
.x0_c00155{left:0.000000pt;}
.x2_c00155{left:73.333333pt;}
.x3_c00155{left:80.000000pt;}
.x4_c00155{left:94.666667pt;}
.x5_c00155{left:600.543200pt;}
.x1_c00155{left:701.634400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.199000;font-style: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);}
.m1_c00156{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls1_c00156{letter-spacing:0.000000px;}
.ls0_c00156{letter-spacing:0.720000px;}
.ls2_c00156{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00156{word-spacing:-0.840000px;}
.ws7_c00156{word-spacing:-0.720000px;}
.ws1_c00156{word-spacing:0.000000px;}
.ws3_c00156{word-spacing:1.368000px;}
.ws6_c00156{word-spacing:5.688000px;}
.ws8_c00156{word-spacing:6.624000px;}
.ws5_c00156{word-spacing:12.744000px;}
.ws4_c00156{word-spacing:19.080000px;}
._0_c00156{margin-left:-480.336600px;}
._1_c00156{margin-left:-4.200000px;}
._3_c00156{margin-left:-2.664000px;}
._2_c00156{margin-left:-1.440000px;}
.fc2_c00156{color:rgb(32,32,32);}
.fc1_c00156{color:rgb(232,86,17);}
.fc0_c00156{color:rgb(60,60,59);}
.fs1_c00156{font-size:42.000000px;}
.fs0_c00156{font-size:60.000000px;}
.fs3_c00156{font-size:72.000000px;}
.fs2_c00156{font-size:84.000000px;}
.y0_c00156{bottom:0.000000px;}
.y1_c00156{bottom:41.250000px;}
.yb_c00156{bottom:616.304700px;}
.ya_c00156{bottom:646.310700px;}
.y9_c00156{bottom:676.316700px;}
.y8_c00156{bottom:706.322700px;}
.y7_c00156{bottom:736.328700px;}
.y6_c00156{bottom:766.334700px;}
.y5_c00156{bottom:826.334700px;}
.y4_c00156{bottom:916.328700px;}
.y3_c00156{bottom:946.334700px;}
.y2_c00156{bottom:1006.334700px;}
.h2_c00156{height:54.000000px;}
.h4_c00156{height:64.800000px;}
.h3_c00156{height:78.540000px;}
.h0_c00156{height:1262.835000px;}
.h1_c00156{height:1263.000000px;}
.w0_c00156{width:892.914000px;}
.w1_c00156{width:893.250000px;}
.x0_c00156{left:0.000000px;}
.x2_c00156{left:90.000000px;}
.x3_c00156{left:106.500000px;}
.x1_c00156{left:791.438700px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls1_c00156{letter-spacing:0.000000pt;}
.ls0_c00156{letter-spacing:0.640000pt;}
.ls2_c00156{letter-spacing:0.746667pt;}
.ws0_c00156{word-spacing:-9.066667pt;}
.ws2_c00156{word-spacing:-0.746667pt;}
.ws7_c00156{word-spacing:-0.640000pt;}
.ws1_c00156{word-spacing:0.000000pt;}
.ws3_c00156{word-spacing:1.216000pt;}
.ws6_c00156{word-spacing:5.056000pt;}
.ws8_c00156{word-spacing:5.888000pt;}
.ws5_c00156{word-spacing:11.328000pt;}
.ws4_c00156{word-spacing:16.960000pt;}
._0_c00156{margin-left:-426.965867pt;}
._1_c00156{margin-left:-3.733333pt;}
._3_c00156{margin-left:-2.368000pt;}
._2_c00156{margin-left:-1.280000pt;}
.fs1_c00156{font-size:37.333333pt;}
.fs0_c00156{font-size:53.333333pt;}
.fs3_c00156{font-size:64.000000pt;}
.fs2_c00156{font-size:74.666667pt;}
.y0_c00156{bottom:0.000000pt;}
.y1_c00156{bottom:36.666667pt;}
.yb_c00156{bottom:547.826400pt;}
.ya_c00156{bottom:574.498400pt;}
.y9_c00156{bottom:601.170400pt;}
.y8_c00156{bottom:627.842400pt;}
.y7_c00156{bottom:654.514400pt;}
.y6_c00156{bottom:681.186400pt;}
.y5_c00156{bottom:734.519733pt;}
.y4_c00156{bottom:814.514400pt;}
.y3_c00156{bottom:841.186400pt;}
.y2_c00156{bottom:894.519733pt;}
.h2_c00156{height:48.000000pt;}
.h4_c00156{height:57.600000pt;}
.h3_c00156{height:69.813333pt;}
.h0_c00156{height:1122.520000pt;}
.h1_c00156{height:1122.666667pt;}
.w0_c00156{width:793.701333pt;}
.w1_c00156{width:794.000000pt;}
.x0_c00156{left:0.000000pt;}
.x2_c00156{left:80.000000pt;}
.x3_c00156{left:94.666667pt;}
.x1_c00156{left:703.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_795c1aff8c99ee916373da00.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:1.161000;font-style: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);}
.m1_c00157{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls4_c00157{letter-spacing:-0.324000px;}
.ls3_c00157{letter-spacing:0.000000px;}
.ls0_c00157{letter-spacing:0.720000px;}
.ls5_c00157{letter-spacing:0.840000px;}
.ls2_c00157{letter-spacing:1.500000px;}
.ls1_c00157{letter-spacing:1.650000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00157{word-spacing:-21.276000px;}
.ws2_c00157{word-spacing:-14.850000px;}
.ws0_c00157{word-spacing:-10.200000px;}
.ws16_c00157{word-spacing:-1.500000px;}
.ws5_c00157{word-spacing:-1.296000px;}
.ws4_c00157{word-spacing:-0.840000px;}
.wsf_c00157{word-spacing:-0.720000px;}
.ws3_c00157{word-spacing:0.000000px;}
.ws12_c00157{word-spacing:1.296000px;}
.ws10_c00157{word-spacing:2.448000px;}
.wsd_c00157{word-spacing:2.664000px;}
.ws6_c00157{word-spacing:4.248000px;}
.ws13_c00157{word-spacing:4.752000px;}
.wsa_c00157{word-spacing:6.192000px;}
.ws9_c00157{word-spacing:6.552000px;}
.ws8_c00157{word-spacing:6.624000px;}
.ws15_c00157{word-spacing:7.488000px;}
.ws14_c00157{word-spacing:7.848000px;}
.ws11_c00157{word-spacing:11.808000px;}
.wse_c00157{word-spacing:11.880000px;}
.wsb_c00157{word-spacing:16.488000px;}
.ws7_c00157{word-spacing:16.992000px;}
.wsc_c00157{word-spacing:18.432000px;}
._0_c00157{margin-left:-480.337200px;}
._4_c00157{margin-left:-6.249600px;}
._1_c00157{margin-left:-4.200000px;}
._3_c00157{margin-left:-2.160000px;}
._2_c00157{margin-left:-1.134000px;}
._5_c00157{width:1.500000px;}
.fc5_c00157{color:rgb(31,31,31);}
.fc3_c00157{color:rgb(32,32,32);}
.fc2_c00157{color:rgb(233,83,14);}
.fc1_c00157{color:rgb(232,86,17);}
.fc4_c00157{color:rgb(157,157,156);}
.fc0_c00157{color:rgb(60,60,59);}
.fs1_c00157{font-size:42.000000px;}
.fs0_c00157{font-size:60.000000px;}
.fs5_c00157{font-size:66.000000px;}
.fs4_c00157{font-size:72.000000px;}
.fs3_c00157{font-size:84.000000px;}
.fs2_c00157{font-size:108.000000px;}
.y0_c00157{bottom:0.000000px;}
.y1_c00157{bottom:41.250000px;}
.y16_c00157{bottom:316.226700px;}
.y15_c00157{bottom:346.232700px;}
.y14_c00157{bottom:376.238700px;}
.y13_c00157{bottom:406.244700px;}
.y12_c00157{bottom:436.250700px;}
.y11_c00157{bottom:466.256700px;}
.y10_c00157{bottom:496.262700px;}
.yf_c00157{bottom:526.268700px;}
.ye_c00157{bottom:556.274700px;}
.yd_c00157{bottom:586.280700px;}
.yc_c00157{bottom:616.286700px;}
.yb_c00157{bottom:646.292700px;}
.ya_c00157{bottom:676.298700px;}
.y9_c00157{bottom:706.304700px;}
.y8_c00157{bottom:736.310700px;}
.y1b_c00157{bottom:736.334700px;}
.y7_c00157{bottom:766.316700px;}
.y1a_c00157{bottom:766.334700px;}
.y6_c00157{bottom:796.322700px;}
.y19_c00157{bottom:796.334700px;}
.y5_c00157{bottom:826.328700px;}
.y18_c00157{bottom:826.334700px;}
.y4_c00157{bottom:856.334700px;}
.y17_c00157{bottom:858.082650px;}
.y3_c00157{bottom:916.334700px;}
.y2_c00157{bottom:1006.334700px;}
.h6_c00157{height:50.292000px;}
.h2_c00157{height:54.000000px;}
.h5_c00157{height:64.800000px;}
.h4_c00157{height:78.540000px;}
.h3_c00157{height:100.980000px;}
.h0_c00157{height:1262.835000px;}
.h1_c00157{height:1263.000000px;}
.w0_c00157{width:892.914000px;}
.w1_c00157{width:893.250000px;}
.x0_c00157{left:0.000000px;}
.x2_c00157{left:82.500000px;}
.x3_c00157{left:90.000000px;}
.x4_c00157{left:106.500000px;}
.x5_c00157{left:675.611100px;}
.x1_c00157{left:789.413850px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls4_c00157{letter-spacing:-0.288000pt;}
.ls3_c00157{letter-spacing:0.000000pt;}
.ls0_c00157{letter-spacing:0.640000pt;}
.ls5_c00157{letter-spacing:0.746667pt;}
.ls2_c00157{letter-spacing:1.333333pt;}
.ls1_c00157{letter-spacing:1.466667pt;}
.ws1_c00157{word-spacing:-18.912000pt;}
.ws2_c00157{word-spacing:-13.200000pt;}
.ws0_c00157{word-spacing:-9.066667pt;}
.ws16_c00157{word-spacing:-1.333333pt;}
.ws5_c00157{word-spacing:-1.152000pt;}
.ws4_c00157{word-spacing:-0.746667pt;}
.wsf_c00157{word-spacing:-0.640000pt;}
.ws3_c00157{word-spacing:0.000000pt;}
.ws12_c00157{word-spacing:1.152000pt;}
.ws10_c00157{word-spacing:2.176000pt;}
.wsd_c00157{word-spacing:2.368000pt;}
.ws6_c00157{word-spacing:3.776000pt;}
.ws13_c00157{word-spacing:4.224000pt;}
.wsa_c00157{word-spacing:5.504000pt;}
.ws9_c00157{word-spacing:5.824000pt;}
.ws8_c00157{word-spacing:5.888000pt;}
.ws15_c00157{word-spacing:6.656000pt;}
.ws14_c00157{word-spacing:6.976000pt;}
.ws11_c00157{word-spacing:10.496000pt;}
.wse_c00157{word-spacing:10.560000pt;}
.wsb_c00157{word-spacing:14.656000pt;}
.ws7_c00157{word-spacing:15.104000pt;}
.wsc_c00157{word-spacing:16.384000pt;}
._0_c00157{margin-left:-426.966400pt;}
._4_c00157{margin-left:-5.555200pt;}
._1_c00157{margin-left:-3.733333pt;}
._3_c00157{margin-left:-1.920000pt;}
._2_c00157{margin-left:-1.008000pt;}
._5_c00157{width:1.333333pt;}
.fs1_c00157{font-size:37.333333pt;}
.fs0_c00157{font-size:53.333333pt;}
.fs5_c00157{font-size:58.666667pt;}
.fs4_c00157{font-size:64.000000pt;}
.fs3_c00157{font-size:74.666667pt;}
.fs2_c00157{font-size:96.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y1_c00157{bottom:36.666667pt;}
.y16_c00157{bottom:281.090400pt;}
.y15_c00157{bottom:307.762400pt;}
.y14_c00157{bottom:334.434400pt;}
.y13_c00157{bottom:361.106400pt;}
.y12_c00157{bottom:387.778400pt;}
.y11_c00157{bottom:414.450400pt;}
.y10_c00157{bottom:441.122400pt;}
.yf_c00157{bottom:467.794400pt;}
.ye_c00157{bottom:494.466400pt;}
.yd_c00157{bottom:521.138400pt;}
.yc_c00157{bottom:547.810400pt;}
.yb_c00157{bottom:574.482400pt;}
.ya_c00157{bottom:601.154400pt;}
.y9_c00157{bottom:627.826400pt;}
.y8_c00157{bottom:654.498400pt;}
.y1b_c00157{bottom:654.519733pt;}
.y7_c00157{bottom:681.170400pt;}
.y1a_c00157{bottom:681.186400pt;}
.y6_c00157{bottom:707.842400pt;}
.y19_c00157{bottom:707.853067pt;}
.y5_c00157{bottom:734.514400pt;}
.y18_c00157{bottom:734.519733pt;}
.y4_c00157{bottom:761.186400pt;}
.y17_c00157{bottom:762.740133pt;}
.y3_c00157{bottom:814.519733pt;}
.y2_c00157{bottom:894.519733pt;}
.h6_c00157{height:44.704000pt;}
.h2_c00157{height:48.000000pt;}
.h5_c00157{height:57.600000pt;}
.h4_c00157{height:69.813333pt;}
.h3_c00157{height:89.760000pt;}
.h0_c00157{height:1122.520000pt;}
.h1_c00157{height:1122.666667pt;}
.w0_c00157{width:793.701333pt;}
.w1_c00157{width:794.000000pt;}
.x0_c00157{left:0.000000pt;}
.x2_c00157{left:73.333333pt;}
.x3_c00157{left:80.000000pt;}
.x4_c00157{left:94.666667pt;}
.x5_c00157{left:600.543200pt;}
.x1_c00157{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.160000;font-style:normal;font-weight:normal;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_5d4d3281a5f6ce541fb72f3b.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.199000;font-style: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);}
.m1_c00158{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls2_c00158{letter-spacing:0.000000px;}
.ls1_c00158{letter-spacing:0.720000px;}
.ls0_c00158{letter-spacing:0.840000px;}
.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;}
}
.ws1_c00158{word-spacing:-17.640000px;}
.ws0_c00158{word-spacing:-10.200000px;}
.ws9_c00158{word-spacing:-1.872000px;}
.ws6_c00158{word-spacing:-0.840000px;}
.ws2_c00158{word-spacing:0.000000px;}
.wsa_c00158{word-spacing:0.144000px;}
.ws7_c00158{word-spacing:5.328000px;}
.ws8_c00158{word-spacing:7.992000px;}
.ws4_c00158{word-spacing:8.064000px;}
.wsb_c00158{word-spacing:9.000000px;}
.ws3_c00158{word-spacing:13.320000px;}
.ws5_c00158{word-spacing:13.464000px;}
._0_c00158{margin-left:-480.336600px;}
._1_c00158{margin-left:-4.200000px;}
._3_c00158{margin-left:-2.880000px;}
._2_c00158{margin-left:-1.680000px;}
.fc2_c00158{color:rgb(32,32,32);}
.fc1_c00158{color:rgb(232,86,17);}
.fc0_c00158{color:rgb(60,60,59);}
.fs1_c00158{font-size:42.000000px;}
.fs0_c00158{font-size:60.000000px;}
.fs3_c00158{font-size:72.000000px;}
.fs2_c00158{font-size:84.000000px;}
.y0_c00158{bottom:0.000000px;}
.y1_c00158{bottom:41.250000px;}
.y10_c00158{bottom:376.304700px;}
.yf_c00158{bottom:406.310700px;}
.ye_c00158{bottom:436.316700px;}
.yd_c00158{bottom:466.322700px;}
.yc_c00158{bottom:496.328700px;}
.yb_c00158{bottom:526.334700px;}
.ya_c00158{bottom:586.334700px;}
.y9_c00158{bottom:676.328700px;}
.y8_c00158{bottom:706.334700px;}
.y7_c00158{bottom:766.334700px;}
.y6_c00158{bottom:856.316700px;}
.y5_c00158{bottom:886.322700px;}
.y4_c00158{bottom:916.328700px;}
.y3_c00158{bottom:946.334700px;}
.y2_c00158{bottom:1006.334700px;}
.h2_c00158{height:54.000000px;}
.h4_c00158{height:64.800000px;}
.h3_c00158{height:78.540000px;}
.h0_c00158{height:1262.835000px;}
.h1_c00158{height:1263.000000px;}
.w0_c00158{width:892.914000px;}
.w1_c00158{width:893.250000px;}
.x0_c00158{left:0.000000px;}
.x2_c00158{left:90.000000px;}
.x3_c00158{left:106.500000px;}
.x1_c00158{left:789.338700px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls2_c00158{letter-spacing:0.000000pt;}
.ls1_c00158{letter-spacing:0.640000pt;}
.ls0_c00158{letter-spacing:0.746667pt;}
.ws1_c00158{word-spacing:-15.680000pt;}
.ws0_c00158{word-spacing:-9.066667pt;}
.ws9_c00158{word-spacing:-1.664000pt;}
.ws6_c00158{word-spacing:-0.746667pt;}
.ws2_c00158{word-spacing:0.000000pt;}
.wsa_c00158{word-spacing:0.128000pt;}
.ws7_c00158{word-spacing:4.736000pt;}
.ws8_c00158{word-spacing:7.104000pt;}
.ws4_c00158{word-spacing:7.168000pt;}
.wsb_c00158{word-spacing:8.000000pt;}
.ws3_c00158{word-spacing:11.840000pt;}
.ws5_c00158{word-spacing:11.968000pt;}
._0_c00158{margin-left:-426.965867pt;}
._1_c00158{margin-left:-3.733333pt;}
._3_c00158{margin-left:-2.560000pt;}
._2_c00158{margin-left:-1.493333pt;}
.fs1_c00158{font-size:37.333333pt;}
.fs0_c00158{font-size:53.333333pt;}
.fs3_c00158{font-size:64.000000pt;}
.fs2_c00158{font-size:74.666667pt;}
.y0_c00158{bottom:0.000000pt;}
.y1_c00158{bottom:36.666667pt;}
.y10_c00158{bottom:334.493067pt;}
.yf_c00158{bottom:361.165067pt;}
.ye_c00158{bottom:387.837067pt;}
.yd_c00158{bottom:414.509067pt;}
.yc_c00158{bottom:441.181067pt;}
.yb_c00158{bottom:467.853067pt;}
.ya_c00158{bottom:521.186400pt;}
.y9_c00158{bottom:601.181067pt;}
.y8_c00158{bottom:627.853067pt;}
.y7_c00158{bottom:681.186400pt;}
.y6_c00158{bottom:761.170400pt;}
.y5_c00158{bottom:787.842400pt;}
.y4_c00158{bottom:814.514400pt;}
.y3_c00158{bottom:841.186400pt;}
.y2_c00158{bottom:894.519733pt;}
.h2_c00158{height:48.000000pt;}
.h4_c00158{height:57.600000pt;}
.h3_c00158{height:69.813333pt;}
.h0_c00158{height:1122.520000pt;}
.h1_c00158{height:1122.666667pt;}
.w0_c00158{width:793.701333pt;}
.w1_c00158{width:794.000000pt;}
.x0_c00158{left:0.000000pt;}
.x2_c00158{left:80.000000pt;}
.x3_c00158{left:94.666667pt;}
.x1_c00158{left:701.634400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00159;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00159;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:1.155000;font-style: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);}
.m1_c00159{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls4_c00159{letter-spacing:-0.360000px;}
.ls3_c00159{letter-spacing:-0.288000px;}
.ls2_c00159{letter-spacing:0.000000px;}
.ls0_c00159{letter-spacing:0.864000px;}
.ls1_c00159{letter-spacing:1.200000px;}
.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:-13.104000px;}
.ws2_c00159{word-spacing:-11.952000px;}
.ws0_c00159{word-spacing:-10.200000px;}
.ws7_c00159{word-spacing:-8.400000px;}
.ws6_c00159{word-spacing:-5.400000px;}
.ws8_c00159{word-spacing:-3.600000px;}
.ws5_c00159{word-spacing:-2.952000px;}
.ws4_c00159{word-spacing:-0.576000px;}
.ws3_c00159{word-spacing:0.000000px;}
.ws9_c00159{word-spacing:1.560000px;}
._0_c00159{margin-left:-480.337200px;}
._5_c00159{margin-left:-10.792800px;}
._3_c00159{margin-left:-8.784000px;}
._4_c00159{margin-left:-6.480000px;}
._1_c00159{margin-left:-4.200000px;}
._2_c00159{margin-left:-1.440000px;}
._7_c00159{width:1.152000px;}
._9_c00159{width:2.616000px;}
._8_c00159{width:4.080000px;}
._6_c00159{width:5.400000px;}
.fc3_c00159{color:rgb(255,255,255);}
.fc2_c00159{color:rgb(233,83,14);}
.fc1_c00159{color:rgb(232,86,17);}
.fc0_c00159{color:rgb(60,60,59);}
.fs1_c00159{font-size:42.000000px;}
.fs0_c00159{font-size:60.000000px;}
.fs3_c00159{font-size:72.000000px;}
.fs4_c00159{font-size:120.000000px;}
.fs2_c00159{font-size:360.000000px;}
.y0_c00159{bottom:0.000000px;}
.y1_c00159{bottom:41.250000px;}
.yd_c00159{bottom:454.304700px;}
.yc_c00159{bottom:475.310700px;}
.yb_c00159{bottom:496.316700px;}
.ya_c00159{bottom:553.322700px;}
.y9_c00159{bottom:574.328700px;}
.y8_c00159{bottom:595.334700px;}
.y7_c00159{bottom:616.340700px;}
.y6_c00159{bottom:663.734700px;}
.y5_c00159{bottom:685.334700px;}
.y4_c00159{bottom:706.340700px;}
.y3_c00159{bottom:752.834700px;}
.y12_c00159{bottom:886.334700px;}
.y11_c00159{bottom:916.334700px;}
.y10_c00159{bottom:946.334700px;}
.yf_c00159{bottom:976.334700px;}
.ye_c00159{bottom:1006.334700px;}
.y2_c00159{bottom:1093.526700px;}
.h2_c00159{height:54.000000px;}
.h5_c00159{height:64.800000px;}
.h4_c00159{height:66.456000px;}
.h6_c00159{height:112.200000px;}
.h3_c00159{height:324.000000px;}
.h0_c00159{height:1262.835000px;}
.h1_c00159{height:1263.000000px;}
.w0_c00159{width:892.914000px;}
.w1_c00159{width:893.250000px;}
.x0_c00159{left:0.000000px;}
.x2_c00159{left:81.290250px;}
.x3_c00159{left:82.393650px;}
.x5_c00159{left:112.287450px;}
.x4_c00159{left:127.393650px;}
.x1_c00159{left:788.228850px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls4_c00159{letter-spacing:-0.320000pt;}
.ls3_c00159{letter-spacing:-0.256000pt;}
.ls2_c00159{letter-spacing:0.000000pt;}
.ls0_c00159{letter-spacing:0.768000pt;}
.ls1_c00159{letter-spacing:1.066667pt;}
.ws1_c00159{word-spacing:-11.648000pt;}
.ws2_c00159{word-spacing:-10.624000pt;}
.ws0_c00159{word-spacing:-9.066667pt;}
.ws7_c00159{word-spacing:-7.466667pt;}
.ws6_c00159{word-spacing:-4.800000pt;}
.ws8_c00159{word-spacing:-3.200000pt;}
.ws5_c00159{word-spacing:-2.624000pt;}
.ws4_c00159{word-spacing:-0.512000pt;}
.ws3_c00159{word-spacing:0.000000pt;}
.ws9_c00159{word-spacing:1.386667pt;}
._0_c00159{margin-left:-426.966400pt;}
._5_c00159{margin-left:-9.593600pt;}
._3_c00159{margin-left:-7.808000pt;}
._4_c00159{margin-left:-5.760000pt;}
._1_c00159{margin-left:-3.733333pt;}
._2_c00159{margin-left:-1.280000pt;}
._7_c00159{width:1.024000pt;}
._9_c00159{width:2.325333pt;}
._8_c00159{width:3.626667pt;}
._6_c00159{width:4.800000pt;}
.fs1_c00159{font-size:37.333333pt;}
.fs0_c00159{font-size:53.333333pt;}
.fs3_c00159{font-size:64.000000pt;}
.fs4_c00159{font-size:106.666667pt;}
.fs2_c00159{font-size:320.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y1_c00159{bottom:36.666667pt;}
.yd_c00159{bottom:403.826400pt;}
.yc_c00159{bottom:422.498400pt;}
.yb_c00159{bottom:441.170400pt;}
.ya_c00159{bottom:491.842400pt;}
.y9_c00159{bottom:510.514400pt;}
.y8_c00159{bottom:529.186400pt;}
.y7_c00159{bottom:547.858400pt;}
.y6_c00159{bottom:589.986400pt;}
.y5_c00159{bottom:609.186400pt;}
.y4_c00159{bottom:627.858400pt;}
.y3_c00159{bottom:669.186400pt;}
.y12_c00159{bottom:787.853067pt;}
.y11_c00159{bottom:814.519733pt;}
.y10_c00159{bottom:841.186400pt;}
.yf_c00159{bottom:867.853067pt;}
.ye_c00159{bottom:894.519733pt;}
.y2_c00159{bottom:972.023733pt;}
.h2_c00159{height:48.000000pt;}
.h5_c00159{height:57.600000pt;}
.h4_c00159{height:59.072000pt;}
.h6_c00159{height:99.733333pt;}
.h3_c00159{height:288.000000pt;}
.h0_c00159{height:1122.520000pt;}
.h1_c00159{height:1122.666667pt;}
.w0_c00159{width:793.701333pt;}
.w1_c00159{width:794.000000pt;}
.x0_c00159{left:0.000000pt;}
.x2_c00159{left:72.258000pt;}
.x3_c00159{left:73.238800pt;}
.x5_c00159{left:99.811067pt;}
.x4_c00159{left:113.238800pt;}
.x1_c00159{left:700.647867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00160;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.161000;font-style: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);}
.m1_c00160{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls5_c00160{letter-spacing:-0.540000px;}
.ls4_c00160{letter-spacing:0.000000px;}
.ls0_c00160{letter-spacing:0.720000px;}
.ls1_c00160{letter-spacing:0.840000px;}
.ls3_c00160{letter-spacing:1.500000px;}
.ls2_c00160{letter-spacing:1.650000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00160{word-spacing:-21.060000px;}
.ws3_c00160{word-spacing:-17.640000px;}
.ws2_c00160{word-spacing:-12.960000px;}
.ws0_c00160{word-spacing:-10.200000px;}
.wsd_c00160{word-spacing:-3.024000px;}
.ws15_c00160{word-spacing:-1.500000px;}
.ws5_c00160{word-spacing:-0.840000px;}
.wse_c00160{word-spacing:-0.432000px;}
.ws4_c00160{word-spacing:0.000000px;}
.ws8_c00160{word-spacing:0.504000px;}
.ws9_c00160{word-spacing:2.448000px;}
.ws11_c00160{word-spacing:3.168000px;}
.ws14_c00160{word-spacing:4.032000px;}
.ws13_c00160{word-spacing:5.328000px;}
.wsb_c00160{word-spacing:5.400000px;}
.wsf_c00160{word-spacing:6.408000px;}
.wsa_c00160{word-spacing:6.552000px;}
.ws12_c00160{word-spacing:10.800000px;}
.ws6_c00160{word-spacing:11.304000px;}
.wsc_c00160{word-spacing:14.112000px;}
.ws10_c00160{word-spacing:15.336000px;}
.ws7_c00160{word-spacing:17.928000px;}
._0_c00160{margin-left:-480.337200px;}
._3_c00160{margin-left:-5.678400px;}
._1_c00160{margin-left:-4.200000px;}
._2_c00160{margin-left:-1.440000px;}
._4_c00160{width:1.008000px;}
._5_c00160{width:3.326400px;}
.fc3_c00160{color:rgb(32,32,32);}
.fc2_c00160{color:rgb(233,83,14);}
.fc1_c00160{color:rgb(232,86,17);}
.fc4_c00160{color:rgb(157,157,156);}
.fc0_c00160{color:rgb(60,60,59);}
.fs1_c00160{font-size:42.000000px;}
.fs0_c00160{font-size:60.000000px;}
.fs5_c00160{font-size:66.000000px;}
.fs4_c00160{font-size:72.000000px;}
.fs3_c00160{font-size:84.000000px;}
.fs2_c00160{font-size:108.000000px;}
.y0_c00160{bottom:0.000000px;}
.y1_c00160{bottom:41.250000px;}
.y18_c00160{bottom:76.304700px;}
.y17_c00160{bottom:106.310700px;}
.y16_c00160{bottom:136.316700px;}
.y15_c00160{bottom:166.322700px;}
.y14_c00160{bottom:196.328700px;}
.y13_c00160{bottom:226.334700px;}
.y12_c00160{bottom:286.334700px;}
.y11_c00160{bottom:376.310700px;}
.y10_c00160{bottom:406.316700px;}
.yf_c00160{bottom:436.322700px;}
.ye_c00160{bottom:466.328700px;}
.yd_c00160{bottom:496.334700px;}
.yc_c00160{bottom:556.334700px;}
.yb_c00160{bottom:646.292700px;}
.ya_c00160{bottom:676.298700px;}
.y9_c00160{bottom:706.304700px;}
.y1e_c00160{bottom:706.334700px;}
.y8_c00160{bottom:736.310700px;}
.y1d_c00160{bottom:736.334700px;}
.y7_c00160{bottom:766.316700px;}
.y1c_c00160{bottom:766.334700px;}
.y6_c00160{bottom:796.322700px;}
.y1b_c00160{bottom:796.334700px;}
.y5_c00160{bottom:826.328700px;}
.y1a_c00160{bottom:826.334700px;}
.y4_c00160{bottom:856.334700px;}
.y19_c00160{bottom:858.082650px;}
.y3_c00160{bottom:916.334700px;}
.y2_c00160{bottom:1006.334700px;}
.h6_c00160{height:50.292000px;}
.h2_c00160{height:54.000000px;}
.h5_c00160{height:64.800000px;}
.h4_c00160{height:78.540000px;}
.h3_c00160{height:100.980000px;}
.h0_c00160{height:1262.835000px;}
.h1_c00160{height:1263.000000px;}
.w0_c00160{width:892.914000px;}
.w1_c00160{width:893.250000px;}
.x0_c00160{left:0.000000px;}
.x2_c00160{left:82.500000px;}
.x3_c00160{left:90.000000px;}
.x4_c00160{left:106.500000px;}
.x5_c00160{left:675.611100px;}
.x1_c00160{left:791.888850px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls5_c00160{letter-spacing:-0.480000pt;}
.ls4_c00160{letter-spacing:0.000000pt;}
.ls0_c00160{letter-spacing:0.640000pt;}
.ls1_c00160{letter-spacing:0.746667pt;}
.ls3_c00160{letter-spacing:1.333333pt;}
.ls2_c00160{letter-spacing:1.466667pt;}
.ws1_c00160{word-spacing:-18.720000pt;}
.ws3_c00160{word-spacing:-15.680000pt;}
.ws2_c00160{word-spacing:-11.520000pt;}
.ws0_c00160{word-spacing:-9.066667pt;}
.wsd_c00160{word-spacing:-2.688000pt;}
.ws15_c00160{word-spacing:-1.333333pt;}
.ws5_c00160{word-spacing:-0.746667pt;}
.wse_c00160{word-spacing:-0.384000pt;}
.ws4_c00160{word-spacing:0.000000pt;}
.ws8_c00160{word-spacing:0.448000pt;}
.ws9_c00160{word-spacing:2.176000pt;}
.ws11_c00160{word-spacing:2.816000pt;}
.ws14_c00160{word-spacing:3.584000pt;}
.ws13_c00160{word-spacing:4.736000pt;}
.wsb_c00160{word-spacing:4.800000pt;}
.wsf_c00160{word-spacing:5.696000pt;}
.wsa_c00160{word-spacing:5.824000pt;}
.ws12_c00160{word-spacing:9.600000pt;}
.ws6_c00160{word-spacing:10.048000pt;}
.wsc_c00160{word-spacing:12.544000pt;}
.ws10_c00160{word-spacing:13.632000pt;}
.ws7_c00160{word-spacing:15.936000pt;}
._0_c00160{margin-left:-426.966400pt;}
._3_c00160{margin-left:-5.047467pt;}
._1_c00160{margin-left:-3.733333pt;}
._2_c00160{margin-left:-1.280000pt;}
._4_c00160{width:0.896000pt;}
._5_c00160{width:2.956800pt;}
.fs1_c00160{font-size:37.333333pt;}
.fs0_c00160{font-size:53.333333pt;}
.fs5_c00160{font-size:58.666667pt;}
.fs4_c00160{font-size:64.000000pt;}
.fs3_c00160{font-size:74.666667pt;}
.fs2_c00160{font-size:96.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y1_c00160{bottom:36.666667pt;}
.y18_c00160{bottom:67.826400pt;}
.y17_c00160{bottom:94.498400pt;}
.y16_c00160{bottom:121.170400pt;}
.y15_c00160{bottom:147.842400pt;}
.y14_c00160{bottom:174.514400pt;}
.y13_c00160{bottom:201.186400pt;}
.y12_c00160{bottom:254.519733pt;}
.y11_c00160{bottom:334.498400pt;}
.y10_c00160{bottom:361.170400pt;}
.yf_c00160{bottom:387.842400pt;}
.ye_c00160{bottom:414.514400pt;}
.yd_c00160{bottom:441.186400pt;}
.yc_c00160{bottom:494.519733pt;}
.yb_c00160{bottom:574.482400pt;}
.ya_c00160{bottom:601.154400pt;}
.y9_c00160{bottom:627.826400pt;}
.y1e_c00160{bottom:627.853067pt;}
.y8_c00160{bottom:654.498400pt;}
.y1d_c00160{bottom:654.519733pt;}
.y7_c00160{bottom:681.170400pt;}
.y1c_c00160{bottom:681.186400pt;}
.y6_c00160{bottom:707.842400pt;}
.y1b_c00160{bottom:707.853067pt;}
.y5_c00160{bottom:734.514400pt;}
.y1a_c00160{bottom:734.519733pt;}
.y4_c00160{bottom:761.186400pt;}
.y19_c00160{bottom:762.740133pt;}
.y3_c00160{bottom:814.519733pt;}
.y2_c00160{bottom:894.519733pt;}
.h6_c00160{height:44.704000pt;}
.h2_c00160{height:48.000000pt;}
.h5_c00160{height:57.600000pt;}
.h4_c00160{height:69.813333pt;}
.h3_c00160{height:89.760000pt;}
.h0_c00160{height:1122.520000pt;}
.h1_c00160{height:1122.666667pt;}
.w0_c00160{width:793.701333pt;}
.w1_c00160{width:794.000000pt;}
.x0_c00160{left:0.000000pt;}
.x2_c00160{left:73.333333pt;}
.x3_c00160{left:80.000000pt;}
.x4_c00160{left:94.666667pt;}
.x5_c00160{left:600.543200pt;}
.x1_c00160{left:703.901200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.199000;font-style: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);}
.m1_c00161{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls2_c00161{letter-spacing:0.000000px;}
.ls0_c00161{letter-spacing:0.720000px;}
.ls1_c00161{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00161{word-spacing:-0.840000px;}
.wsa_c00161{word-spacing:-0.720000px;}
.ws1_c00161{word-spacing:0.000000px;}
.wsc_c00161{word-spacing:0.648000px;}
.ws7_c00161{word-spacing:3.600000px;}
.wse_c00161{word-spacing:5.688000px;}
.wsd_c00161{word-spacing:7.560000px;}
.ws3_c00161{word-spacing:7.920000px;}
.ws5_c00161{word-spacing:9.072000px;}
.ws9_c00161{word-spacing:9.504000px;}
.ws6_c00161{word-spacing:9.576000px;}
.wsb_c00161{word-spacing:9.936000px;}
.ws8_c00161{word-spacing:10.152000px;}
.ws4_c00161{word-spacing:15.768000px;}
._0_c00161{margin-left:-480.337200px;}
._1_c00161{margin-left:-4.200000px;}
._2_c00161{margin-left:-1.440000px;}
.fc2_c00161{color:rgb(32,32,32);}
.fc1_c00161{color:rgb(232,86,17);}
.fc0_c00161{color:rgb(60,60,59);}
.fs1_c00161{font-size:42.000000px;}
.fs0_c00161{font-size:60.000000px;}
.fs3_c00161{font-size:72.000000px;}
.fs2_c00161{font-size:84.000000px;}
.y0_c00161{bottom:0.000000px;}
.y1_c00161{bottom:41.250000px;}
.y10_c00161{bottom:466.310700px;}
.yf_c00161{bottom:496.316700px;}
.ye_c00161{bottom:526.322700px;}
.yd_c00161{bottom:556.328700px;}
.yc_c00161{bottom:586.334700px;}
.yb_c00161{bottom:646.334700px;}
.ya_c00161{bottom:736.292700px;}
.y9_c00161{bottom:766.298700px;}
.y8_c00161{bottom:796.304700px;}
.y7_c00161{bottom:826.310700px;}
.y6_c00161{bottom:856.316700px;}
.y5_c00161{bottom:886.322700px;}
.y4_c00161{bottom:916.328700px;}
.y3_c00161{bottom:946.334700px;}
.y2_c00161{bottom:1006.334700px;}
.h2_c00161{height:54.000000px;}
.h4_c00161{height:64.800000px;}
.h3_c00161{height:78.540000px;}
.h0_c00161{height:1262.835000px;}
.h1_c00161{height:1263.000000px;}
.w0_c00161{width:892.914000px;}
.w1_c00161{width:893.250000px;}
.x0_c00161{left:0.000000px;}
.x2_c00161{left:90.000000px;}
.x3_c00161{left:106.500000px;}
.x1_c00161{left:789.413850px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls2_c00161{letter-spacing:0.000000pt;}
.ls0_c00161{letter-spacing:0.640000pt;}
.ls1_c00161{letter-spacing:0.746667pt;}
.ws0_c00161{word-spacing:-9.066667pt;}
.ws2_c00161{word-spacing:-0.746667pt;}
.wsa_c00161{word-spacing:-0.640000pt;}
.ws1_c00161{word-spacing:0.000000pt;}
.wsc_c00161{word-spacing:0.576000pt;}
.ws7_c00161{word-spacing:3.200000pt;}
.wse_c00161{word-spacing:5.056000pt;}
.wsd_c00161{word-spacing:6.720000pt;}
.ws3_c00161{word-spacing:7.040000pt;}
.ws5_c00161{word-spacing:8.064000pt;}
.ws9_c00161{word-spacing:8.448000pt;}
.ws6_c00161{word-spacing:8.512000pt;}
.wsb_c00161{word-spacing:8.832000pt;}
.ws8_c00161{word-spacing:9.024000pt;}
.ws4_c00161{word-spacing:14.016000pt;}
._0_c00161{margin-left:-426.966400pt;}
._1_c00161{margin-left:-3.733333pt;}
._2_c00161{margin-left:-1.280000pt;}
.fs1_c00161{font-size:37.333333pt;}
.fs0_c00161{font-size:53.333333pt;}
.fs3_c00161{font-size:64.000000pt;}
.fs2_c00161{font-size:74.666667pt;}
.y0_c00161{bottom:0.000000pt;}
.y1_c00161{bottom:36.666667pt;}
.y10_c00161{bottom:414.498400pt;}
.yf_c00161{bottom:441.170400pt;}
.ye_c00161{bottom:467.842400pt;}
.yd_c00161{bottom:494.514400pt;}
.yc_c00161{bottom:521.186400pt;}
.yb_c00161{bottom:574.519733pt;}
.ya_c00161{bottom:654.482400pt;}
.y9_c00161{bottom:681.154400pt;}
.y8_c00161{bottom:707.826400pt;}
.y7_c00161{bottom:734.498400pt;}
.y6_c00161{bottom:761.170400pt;}
.y5_c00161{bottom:787.842400pt;}
.y4_c00161{bottom:814.514400pt;}
.y3_c00161{bottom:841.186400pt;}
.y2_c00161{bottom:894.519733pt;}
.h2_c00161{height:48.000000pt;}
.h4_c00161{height:57.600000pt;}
.h3_c00161{height:69.813333pt;}
.h0_c00161{height:1122.520000pt;}
.h1_c00161{height:1122.666667pt;}
.w0_c00161{width:793.701333pt;}
.w1_c00161{width:794.000000pt;}
.x0_c00161{left:0.000000pt;}
.x2_c00161{left:80.000000pt;}
.x3_c00161{left:94.666667pt;}
.x1_c00161{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00162;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.161000;font-style: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);}
.m1_c00162{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls5_c00162{letter-spacing:-0.324000px;}
.ls4_c00162{letter-spacing:0.000000px;}
.ls0_c00162{letter-spacing:0.720000px;}
.ls1_c00162{letter-spacing:0.840000px;}
.ls3_c00162{letter-spacing:1.500000px;}
.ls2_c00162{letter-spacing:1.650000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00162{word-spacing:-21.276000px;}
.ws2_c00162{word-spacing:-17.640000px;}
.ws3_c00162{word-spacing:-14.850000px;}
.ws0_c00162{word-spacing:-10.200000px;}
.ws15_c00162{word-spacing:-1.500000px;}
.ws5_c00162{word-spacing:-0.840000px;}
.ws4_c00162{word-spacing:0.000000px;}
.ws14_c00162{word-spacing:0.576000px;}
.wse_c00162{word-spacing:1.368000px;}
.wsd_c00162{word-spacing:2.016000px;}
.ws13_c00162{word-spacing:2.304000px;}
.ws12_c00162{word-spacing:3.816000px;}
.ws6_c00162{word-spacing:3.960000px;}
.wsb_c00162{word-spacing:4.608000px;}
.wsc_c00162{word-spacing:4.968000px;}
.ws7_c00162{word-spacing:5.040000px;}
.ws11_c00162{word-spacing:6.552000px;}
.ws10_c00162{word-spacing:13.392000px;}
.wsa_c00162{word-spacing:15.264000px;}
.wsf_c00162{word-spacing:18.360000px;}
.ws9_c00162{word-spacing:20.232000px;}
.ws8_c00162{word-spacing:23.904000px;}
._0_c00162{margin-left:-480.337200px;}
._4_c00162{margin-left:-5.284800px;}
._1_c00162{margin-left:-4.200000px;}
._3_c00162{margin-left:-2.530800px;}
._2_c00162{margin-left:-1.134000px;}
._5_c00162{width:1.206000px;}
.fc3_c00162{color:rgb(32,32,32);}
.fc2_c00162{color:rgb(233,83,14);}
.fc1_c00162{color:rgb(232,86,17);}
.fc4_c00162{color:rgb(157,157,156);}
.fc0_c00162{color:rgb(60,60,59);}
.fs1_c00162{font-size:42.000000px;}
.fs0_c00162{font-size:60.000000px;}
.fs5_c00162{font-size:66.000000px;}
.fs4_c00162{font-size:72.000000px;}
.fs3_c00162{font-size:84.000000px;}
.fs2_c00162{font-size:108.000000px;}
.y0_c00162{bottom:0.000000px;}
.y1_c00162{bottom:41.250000px;}
.y17_c00162{bottom:106.310700px;}
.y16_c00162{bottom:136.316700px;}
.y15_c00162{bottom:166.322700px;}
.y14_c00162{bottom:196.328700px;}
.y13_c00162{bottom:226.334700px;}
.y12_c00162{bottom:286.334700px;}
.y11_c00162{bottom:376.310700px;}
.y10_c00162{bottom:406.316700px;}
.yf_c00162{bottom:436.322700px;}
.ye_c00162{bottom:466.328700px;}
.yd_c00162{bottom:496.334700px;}
.yc_c00162{bottom:556.334700px;}
.yb_c00162{bottom:646.292700px;}
.ya_c00162{bottom:676.298700px;}
.y9_c00162{bottom:706.304700px;}
.y8_c00162{bottom:736.310700px;}
.y1c_c00162{bottom:736.334700px;}
.y7_c00162{bottom:766.316700px;}
.y1b_c00162{bottom:766.334700px;}
.y6_c00162{bottom:796.322700px;}
.y1a_c00162{bottom:796.334700px;}
.y5_c00162{bottom:826.328700px;}
.y19_c00162{bottom:826.334700px;}
.y4_c00162{bottom:856.334700px;}
.y18_c00162{bottom:858.082650px;}
.y3_c00162{bottom:916.334700px;}
.y2_c00162{bottom:1006.334700px;}
.h6_c00162{height:50.292000px;}
.h2_c00162{height:54.000000px;}
.h5_c00162{height:64.800000px;}
.h4_c00162{height:78.540000px;}
.h3_c00162{height:100.980000px;}
.h0_c00162{height:1262.835000px;}
.h1_c00162{height:1263.000000px;}
.w0_c00162{width:892.914000px;}
.w1_c00162{width:893.250000px;}
.x0_c00162{left:0.000000px;}
.x2_c00162{left:82.500000px;}
.x3_c00162{left:90.000000px;}
.x4_c00162{left:106.500000px;}
.x5_c00162{left:675.611100px;}
.x1_c00162{left:789.263850px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls5_c00162{letter-spacing:-0.288000pt;}
.ls4_c00162{letter-spacing:0.000000pt;}
.ls0_c00162{letter-spacing:0.640000pt;}
.ls1_c00162{letter-spacing:0.746667pt;}
.ls3_c00162{letter-spacing:1.333333pt;}
.ls2_c00162{letter-spacing:1.466667pt;}
.ws1_c00162{word-spacing:-18.912000pt;}
.ws2_c00162{word-spacing:-15.680000pt;}
.ws3_c00162{word-spacing:-13.200000pt;}
.ws0_c00162{word-spacing:-9.066667pt;}
.ws15_c00162{word-spacing:-1.333333pt;}
.ws5_c00162{word-spacing:-0.746667pt;}
.ws4_c00162{word-spacing:0.000000pt;}
.ws14_c00162{word-spacing:0.512000pt;}
.wse_c00162{word-spacing:1.216000pt;}
.wsd_c00162{word-spacing:1.792000pt;}
.ws13_c00162{word-spacing:2.048000pt;}
.ws12_c00162{word-spacing:3.392000pt;}
.ws6_c00162{word-spacing:3.520000pt;}
.wsb_c00162{word-spacing:4.096000pt;}
.wsc_c00162{word-spacing:4.416000pt;}
.ws7_c00162{word-spacing:4.480000pt;}
.ws11_c00162{word-spacing:5.824000pt;}
.ws10_c00162{word-spacing:11.904000pt;}
.wsa_c00162{word-spacing:13.568000pt;}
.wsf_c00162{word-spacing:16.320000pt;}
.ws9_c00162{word-spacing:17.984000pt;}
.ws8_c00162{word-spacing:21.248000pt;}
._0_c00162{margin-left:-426.966400pt;}
._4_c00162{margin-left:-4.697600pt;}
._1_c00162{margin-left:-3.733333pt;}
._3_c00162{margin-left:-2.249600pt;}
._2_c00162{margin-left:-1.008000pt;}
._5_c00162{width:1.072000pt;}
.fs1_c00162{font-size:37.333333pt;}
.fs0_c00162{font-size:53.333333pt;}
.fs5_c00162{font-size:58.666667pt;}
.fs4_c00162{font-size:64.000000pt;}
.fs3_c00162{font-size:74.666667pt;}
.fs2_c00162{font-size:96.000000pt;}
.y0_c00162{bottom:0.000000pt;}
.y1_c00162{bottom:36.666667pt;}
.y17_c00162{bottom:94.498400pt;}
.y16_c00162{bottom:121.170400pt;}
.y15_c00162{bottom:147.842400pt;}
.y14_c00162{bottom:174.514400pt;}
.y13_c00162{bottom:201.186400pt;}
.y12_c00162{bottom:254.519733pt;}
.y11_c00162{bottom:334.498400pt;}
.y10_c00162{bottom:361.170400pt;}
.yf_c00162{bottom:387.842400pt;}
.ye_c00162{bottom:414.514400pt;}
.yd_c00162{bottom:441.186400pt;}
.yc_c00162{bottom:494.519733pt;}
.yb_c00162{bottom:574.482400pt;}
.ya_c00162{bottom:601.154400pt;}
.y9_c00162{bottom:627.826400pt;}
.y8_c00162{bottom:654.498400pt;}
.y1c_c00162{bottom:654.519733pt;}
.y7_c00162{bottom:681.170400pt;}
.y1b_c00162{bottom:681.186400pt;}
.y6_c00162{bottom:707.842400pt;}
.y1a_c00162{bottom:707.853067pt;}
.y5_c00162{bottom:734.514400pt;}
.y19_c00162{bottom:734.519733pt;}
.y4_c00162{bottom:761.186400pt;}
.y18_c00162{bottom:762.740133pt;}
.y3_c00162{bottom:814.519733pt;}
.y2_c00162{bottom:894.519733pt;}
.h6_c00162{height:44.704000pt;}
.h2_c00162{height:48.000000pt;}
.h5_c00162{height:57.600000pt;}
.h4_c00162{height:69.813333pt;}
.h3_c00162{height:89.760000pt;}
.h0_c00162{height:1122.520000pt;}
.h1_c00162{height:1122.666667pt;}
.w0_c00162{width:793.701333pt;}
.w1_c00162{width:794.000000pt;}
.x0_c00162{left:0.000000pt;}
.x2_c00162{left:73.333333pt;}
.x3_c00162{left:80.000000pt;}
.x4_c00162{left:94.666667pt;}
.x5_c00162{left:600.543200pt;}
.x1_c00162{left:701.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.199000;font-style: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);}
.m1_c00163{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls2_c00163{letter-spacing:0.000000px;}
.ls0_c00163{letter-spacing:0.720000px;}
.ls1_c00163{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsd_c00163{word-spacing:-2.016000px;}
.ws2_c00163{word-spacing:-0.840000px;}
.ws1_c00163{word-spacing:0.000000px;}
.ws7_c00163{word-spacing:2.160000px;}
.ws8_c00163{word-spacing:4.680000px;}
.wsc_c00163{word-spacing:4.968000px;}
.ws6_c00163{word-spacing:7.488000px;}
.wsb_c00163{word-spacing:7.704000px;}
.ws5_c00163{word-spacing:9.144000px;}
.ws9_c00163{word-spacing:15.120000px;}
.ws3_c00163{word-spacing:20.376000px;}
.ws4_c00163{word-spacing:22.248000px;}
.wsa_c00163{word-spacing:25.776000px;}
._0_c00163{margin-left:-480.337200px;}
._3_c00163{margin-left:-5.541600px;}
._1_c00163{margin-left:-4.200000px;}
._2_c00163{margin-left:-1.440000px;}
.fc2_c00163{color:rgb(32,32,32);}
.fc1_c00163{color:rgb(232,86,17);}
.fc0_c00163{color:rgb(60,60,59);}
.fs1_c00163{font-size:42.000000px;}
.fs0_c00163{font-size:60.000000px;}
.fs3_c00163{font-size:72.000000px;}
.fs2_c00163{font-size:84.000000px;}
.y0_c00163{bottom:0.000000px;}
.y1_c00163{bottom:41.250000px;}
.yf_c00163{bottom:496.310700px;}
.ye_c00163{bottom:526.316700px;}
.yd_c00163{bottom:556.322700px;}
.yc_c00163{bottom:586.328700px;}
.yb_c00163{bottom:616.334700px;}
.ya_c00163{bottom:676.334700px;}
.y9_c00163{bottom:766.298700px;}
.y8_c00163{bottom:796.304700px;}
.y7_c00163{bottom:826.310700px;}
.y6_c00163{bottom:856.316700px;}
.y5_c00163{bottom:886.322700px;}
.y4_c00163{bottom:916.328700px;}
.y3_c00163{bottom:946.334700px;}
.y2_c00163{bottom:1006.334700px;}
.h2_c00163{height:54.000000px;}
.h4_c00163{height:64.800000px;}
.h3_c00163{height:78.540000px;}
.h0_c00163{height:1262.835000px;}
.h1_c00163{height:1263.000000px;}
.w0_c00163{width:892.914000px;}
.w1_c00163{width:893.250000px;}
.x0_c00163{left:0.000000px;}
.x2_c00163{left:90.000000px;}
.x3_c00163{left:106.500000px;}
.x1_c00163{left:788.288850px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls2_c00163{letter-spacing:0.000000pt;}
.ls0_c00163{letter-spacing:0.640000pt;}
.ls1_c00163{letter-spacing:0.746667pt;}
.ws0_c00163{word-spacing:-9.066667pt;}
.wsd_c00163{word-spacing:-1.792000pt;}
.ws2_c00163{word-spacing:-0.746667pt;}
.ws1_c00163{word-spacing:0.000000pt;}
.ws7_c00163{word-spacing:1.920000pt;}
.ws8_c00163{word-spacing:4.160000pt;}
.wsc_c00163{word-spacing:4.416000pt;}
.ws6_c00163{word-spacing:6.656000pt;}
.wsb_c00163{word-spacing:6.848000pt;}
.ws5_c00163{word-spacing:8.128000pt;}
.ws9_c00163{word-spacing:13.440000pt;}
.ws3_c00163{word-spacing:18.112000pt;}
.ws4_c00163{word-spacing:19.776000pt;}
.wsa_c00163{word-spacing:22.912000pt;}
._0_c00163{margin-left:-426.966400pt;}
._3_c00163{margin-left:-4.925867pt;}
._1_c00163{margin-left:-3.733333pt;}
._2_c00163{margin-left:-1.280000pt;}
.fs1_c00163{font-size:37.333333pt;}
.fs0_c00163{font-size:53.333333pt;}
.fs3_c00163{font-size:64.000000pt;}
.fs2_c00163{font-size:74.666667pt;}
.y0_c00163{bottom:0.000000pt;}
.y1_c00163{bottom:36.666667pt;}
.yf_c00163{bottom:441.165067pt;}
.ye_c00163{bottom:467.837067pt;}
.yd_c00163{bottom:494.509067pt;}
.yc_c00163{bottom:521.181067pt;}
.yb_c00163{bottom:547.853067pt;}
.ya_c00163{bottom:601.186400pt;}
.y9_c00163{bottom:681.154400pt;}
.y8_c00163{bottom:707.826400pt;}
.y7_c00163{bottom:734.498400pt;}
.y6_c00163{bottom:761.170400pt;}
.y5_c00163{bottom:787.842400pt;}
.y4_c00163{bottom:814.514400pt;}
.y3_c00163{bottom:841.186400pt;}
.y2_c00163{bottom:894.519733pt;}
.h2_c00163{height:48.000000pt;}
.h4_c00163{height:57.600000pt;}
.h3_c00163{height:69.813333pt;}
.h0_c00163{height:1122.520000pt;}
.h1_c00163{height:1122.666667pt;}
.w0_c00163{width:793.701333pt;}
.w1_c00163{width:794.000000pt;}
.x0_c00163{left:0.000000pt;}
.x2_c00163{left:80.000000pt;}
.x3_c00163{left:94.666667pt;}
.x1_c00163{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.160000;font-style:normal;font-weight:normal;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_66b6970dbf7b040f8f7c58d9.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00164;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:1.155000;font-style: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);}
.m1_c00164{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls2_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:0.864000px;}
.ls1_c00164{letter-spacing:1.200000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00164{word-spacing:-13.104000px;}
.ws0_c00164{word-spacing:-10.200000px;}
.ws8_c00164{word-spacing:-6.720000px;}
.ws4_c00164{word-spacing:-4.104000px;}
.ws3_c00164{word-spacing:-2.952000px;}
.ws6_c00164{word-spacing:-1.440000px;}
.ws7_c00164{word-spacing:-1.200000px;}
.ws5_c00164{word-spacing:-0.576000px;}
.ws2_c00164{word-spacing:0.000000px;}
._0_c00164{margin-left:-480.336600px;}
._3_c00164{margin-left:-6.480000px;}
._1_c00164{margin-left:-4.200000px;}
._5_c00164{margin-left:-2.640000px;}
._2_c00164{margin-left:-1.440000px;}
._4_c00164{width:1.440000px;}
.fc3_c00164{color:rgb(255,255,255);}
.fc2_c00164{color:rgb(233,83,14);}
.fc1_c00164{color:rgb(232,86,17);}
.fc0_c00164{color:rgb(60,60,59);}
.fs1_c00164{font-size:42.000000px;}
.fs0_c00164{font-size:60.000000px;}
.fs3_c00164{font-size:72.000000px;}
.fs4_c00164{font-size:120.000000px;}
.fs2_c00164{font-size:360.000000px;}
.y0_c00164{bottom:0.000000px;}
.y1_c00164{bottom:41.250000px;}
.yd_c00164{bottom:463.286700px;}
.yc_c00164{bottom:484.292700px;}
.yb_c00164{bottom:505.298700px;}
.ya_c00164{bottom:526.304700px;}
.y9_c00164{bottom:574.310700px;}
.y8_c00164{bottom:595.316700px;}
.y7_c00164{bottom:616.322700px;}
.y6_c00164{bottom:664.328700px;}
.y5_c00164{bottom:685.334700px;}
.y4_c00164{bottom:706.340700px;}
.y3_c00164{bottom:752.834700px;}
.yf_c00164{bottom:976.334700px;}
.ye_c00164{bottom:1006.334700px;}
.y2_c00164{bottom:1093.526700px;}
.h2_c00164{height:54.000000px;}
.h5_c00164{height:64.800000px;}
.h4_c00164{height:66.456000px;}
.h6_c00164{height:112.200000px;}
.h3_c00164{height:324.000000px;}
.h0_c00164{height:1262.835000px;}
.h1_c00164{height:1263.000000px;}
.w0_c00164{width:892.914000px;}
.w1_c00164{width:893.250000px;}
.x0_c00164{left:0.000000px;}
.x2_c00164{left:81.290250px;}
.x3_c00164{left:82.393650px;}
.x5_c00164{left:112.287450px;}
.x4_c00164{left:127.393650px;}
.x1_c00164{left:789.338700px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls2_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:0.768000pt;}
.ls1_c00164{letter-spacing:1.066667pt;}
.ws1_c00164{word-spacing:-11.648000pt;}
.ws0_c00164{word-spacing:-9.066667pt;}
.ws8_c00164{word-spacing:-5.973333pt;}
.ws4_c00164{word-spacing:-3.648000pt;}
.ws3_c00164{word-spacing:-2.624000pt;}
.ws6_c00164{word-spacing:-1.280000pt;}
.ws7_c00164{word-spacing:-1.066667pt;}
.ws5_c00164{word-spacing:-0.512000pt;}
.ws2_c00164{word-spacing:0.000000pt;}
._0_c00164{margin-left:-426.965867pt;}
._3_c00164{margin-left:-5.760000pt;}
._1_c00164{margin-left:-3.733333pt;}
._5_c00164{margin-left:-2.346667pt;}
._2_c00164{margin-left:-1.280000pt;}
._4_c00164{width:1.280000pt;}
.fs1_c00164{font-size:37.333333pt;}
.fs0_c00164{font-size:53.333333pt;}
.fs3_c00164{font-size:64.000000pt;}
.fs4_c00164{font-size:106.666667pt;}
.fs2_c00164{font-size:320.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y1_c00164{bottom:36.666667pt;}
.yd_c00164{bottom:411.810400pt;}
.yc_c00164{bottom:430.482400pt;}
.yb_c00164{bottom:449.154400pt;}
.ya_c00164{bottom:467.826400pt;}
.y9_c00164{bottom:510.498400pt;}
.y8_c00164{bottom:529.170400pt;}
.y7_c00164{bottom:547.842400pt;}
.y6_c00164{bottom:590.514400pt;}
.y5_c00164{bottom:609.186400pt;}
.y4_c00164{bottom:627.858400pt;}
.y3_c00164{bottom:669.186400pt;}
.yf_c00164{bottom:867.853067pt;}
.ye_c00164{bottom:894.519733pt;}
.y2_c00164{bottom:972.023733pt;}
.h2_c00164{height:48.000000pt;}
.h5_c00164{height:57.600000pt;}
.h4_c00164{height:59.072000pt;}
.h6_c00164{height:99.733333pt;}
.h3_c00164{height:288.000000pt;}
.h0_c00164{height:1122.520000pt;}
.h1_c00164{height:1122.666667pt;}
.w0_c00164{width:793.701333pt;}
.w1_c00164{width:794.000000pt;}
.x0_c00164{left:0.000000pt;}
.x2_c00164{left:72.258000pt;}
.x3_c00164{left:73.238800pt;}
.x5_c00164{left:99.811067pt;}
.x4_c00164{left:113.238800pt;}
.x1_c00164{left:701.634400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.160000;font-style:normal;font-weight:normal;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_9199441f23763687eab2a311.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:1.161000;font-style: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);}
.m1_c00165{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls5_c00165{letter-spacing:-0.540000px;}
.ls4_c00165{letter-spacing:0.000000px;}
.ls0_c00165{letter-spacing:0.720000px;}
.ls1_c00165{letter-spacing:0.840000px;}
.ls3_c00165{letter-spacing:1.500000px;}
.ls2_c00165{letter-spacing:1.650000px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00165{word-spacing:-21.060000px;}
.ws2_c00165{word-spacing:-11.700000px;}
.ws0_c00165{word-spacing:-10.200000px;}
.wse_c00165{word-spacing:-1.728000px;}
.ws14_c00165{word-spacing:-1.500000px;}
.ws4_c00165{word-spacing:-0.840000px;}
.ws3_c00165{word-spacing:0.000000px;}
.ws8_c00165{word-spacing:1.152000px;}
.wsf_c00165{word-spacing:1.368000px;}
.ws11_c00165{word-spacing:1.944000px;}
.wsb_c00165{word-spacing:2.304000px;}
.ws10_c00165{word-spacing:4.176000px;}
.wsd_c00165{word-spacing:5.112000px;}
.ws9_c00165{word-spacing:5.832000px;}
.wsc_c00165{word-spacing:7.272000px;}
.wsa_c00165{word-spacing:7.488000px;}
.ws7_c00165{word-spacing:7.848000px;}
.ws5_c00165{word-spacing:11.592000px;}
.ws12_c00165{word-spacing:15.048000px;}
.ws6_c00165{word-spacing:15.912000px;}
.ws13_c00165{word-spacing:18.720000px;}
._0_c00165{margin-left:-480.336600px;}
._1_c00165{margin-left:-4.200000px;}
._2_c00165{margin-left:-1.440000px;}
.fc3_c00165{color:rgb(32,32,32);}
.fc2_c00165{color:rgb(233,83,14);}
.fc1_c00165{color:rgb(232,86,17);}
.fc4_c00165{color:rgb(157,157,156);}
.fc0_c00165{color:rgb(60,60,59);}
.fs1_c00165{font-size:42.000000px;}
.fs0_c00165{font-size:60.000000px;}
.fs5_c00165{font-size:66.000000px;}
.fs4_c00165{font-size:72.000000px;}
.fs3_c00165{font-size:84.000000px;}
.fs2_c00165{font-size:108.000000px;}
.y0_c00165{bottom:0.000000px;}
.y1_c00165{bottom:41.250000px;}
.y18_c00165{bottom:76.310700px;}
.y17_c00165{bottom:106.316700px;}
.y16_c00165{bottom:136.322700px;}
.y15_c00165{bottom:166.328700px;}
.y14_c00165{bottom:196.334700px;}
.y13_c00165{bottom:256.334700px;}
.y12_c00165{bottom:346.322700px;}
.y11_c00165{bottom:376.328700px;}
.y10_c00165{bottom:406.334700px;}
.yf_c00165{bottom:466.334700px;}
.ye_c00165{bottom:556.274700px;}
.yd_c00165{bottom:586.280700px;}
.yc_c00165{bottom:616.286700px;}
.y21_c00165{bottom:616.334700px;}
.yb_c00165{bottom:646.292700px;}
.y20_c00165{bottom:646.334700px;}
.ya_c00165{bottom:676.298700px;}
.y1f_c00165{bottom:676.334700px;}
.y9_c00165{bottom:706.304700px;}
.y1e_c00165{bottom:706.334700px;}
.y8_c00165{bottom:736.310700px;}
.y1d_c00165{bottom:736.334700px;}
.y7_c00165{bottom:766.316700px;}
.y1c_c00165{bottom:766.334700px;}
.y6_c00165{bottom:796.322700px;}
.y1b_c00165{bottom:796.334700px;}
.y5_c00165{bottom:826.328700px;}
.y1a_c00165{bottom:826.334700px;}
.y4_c00165{bottom:856.334700px;}
.y19_c00165{bottom:858.082650px;}
.y3_c00165{bottom:916.334700px;}
.y2_c00165{bottom:1006.334700px;}
.h6_c00165{height:50.292000px;}
.h2_c00165{height:54.000000px;}
.h5_c00165{height:64.800000px;}
.h4_c00165{height:78.540000px;}
.h3_c00165{height:100.980000px;}
.h0_c00165{height:1262.835000px;}
.h1_c00165{height:1263.000000px;}
.w0_c00165{width:892.914000px;}
.w1_c00165{width:893.250000px;}
.x0_c00165{left:0.000000px;}
.x2_c00165{left:82.500000px;}
.x3_c00165{left:90.000000px;}
.x4_c00165{left:106.500000px;}
.x5_c00165{left:675.611100px;}
.x1_c00165{left:788.213700px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls5_c00165{letter-spacing:-0.480000pt;}
.ls4_c00165{letter-spacing:0.000000pt;}
.ls0_c00165{letter-spacing:0.640000pt;}
.ls1_c00165{letter-spacing:0.746667pt;}
.ls3_c00165{letter-spacing:1.333333pt;}
.ls2_c00165{letter-spacing:1.466667pt;}
.ws1_c00165{word-spacing:-18.720000pt;}
.ws2_c00165{word-spacing:-10.400000pt;}
.ws0_c00165{word-spacing:-9.066667pt;}
.wse_c00165{word-spacing:-1.536000pt;}
.ws14_c00165{word-spacing:-1.333333pt;}
.ws4_c00165{word-spacing:-0.746667pt;}
.ws3_c00165{word-spacing:0.000000pt;}
.ws8_c00165{word-spacing:1.024000pt;}
.wsf_c00165{word-spacing:1.216000pt;}
.ws11_c00165{word-spacing:1.728000pt;}
.wsb_c00165{word-spacing:2.048000pt;}
.ws10_c00165{word-spacing:3.712000pt;}
.wsd_c00165{word-spacing:4.544000pt;}
.ws9_c00165{word-spacing:5.184000pt;}
.wsc_c00165{word-spacing:6.464000pt;}
.wsa_c00165{word-spacing:6.656000pt;}
.ws7_c00165{word-spacing:6.976000pt;}
.ws5_c00165{word-spacing:10.304000pt;}
.ws12_c00165{word-spacing:13.376000pt;}
.ws6_c00165{word-spacing:14.144000pt;}
.ws13_c00165{word-spacing:16.640000pt;}
._0_c00165{margin-left:-426.965867pt;}
._1_c00165{margin-left:-3.733333pt;}
._2_c00165{margin-left:-1.280000pt;}
.fs1_c00165{font-size:37.333333pt;}
.fs0_c00165{font-size:53.333333pt;}
.fs5_c00165{font-size:58.666667pt;}
.fs4_c00165{font-size:64.000000pt;}
.fs3_c00165{font-size:74.666667pt;}
.fs2_c00165{font-size:96.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y1_c00165{bottom:36.666667pt;}
.y18_c00165{bottom:67.831733pt;}
.y17_c00165{bottom:94.503733pt;}
.y16_c00165{bottom:121.175733pt;}
.y15_c00165{bottom:147.847733pt;}
.y14_c00165{bottom:174.519733pt;}
.y13_c00165{bottom:227.853067pt;}
.y12_c00165{bottom:307.842400pt;}
.y11_c00165{bottom:334.514400pt;}
.y10_c00165{bottom:361.186400pt;}
.yf_c00165{bottom:414.519733pt;}
.ye_c00165{bottom:494.466400pt;}
.yd_c00165{bottom:521.138400pt;}
.yc_c00165{bottom:547.810400pt;}
.y21_c00165{bottom:547.853067pt;}
.yb_c00165{bottom:574.482400pt;}
.y20_c00165{bottom:574.519733pt;}
.ya_c00165{bottom:601.154400pt;}
.y1f_c00165{bottom:601.186400pt;}
.y9_c00165{bottom:627.826400pt;}
.y1e_c00165{bottom:627.853067pt;}
.y8_c00165{bottom:654.498400pt;}
.y1d_c00165{bottom:654.519733pt;}
.y7_c00165{bottom:681.170400pt;}
.y1c_c00165{bottom:681.186400pt;}
.y6_c00165{bottom:707.842400pt;}
.y1b_c00165{bottom:707.853067pt;}
.y5_c00165{bottom:734.514400pt;}
.y1a_c00165{bottom:734.519733pt;}
.y4_c00165{bottom:761.186400pt;}
.y19_c00165{bottom:762.740133pt;}
.y3_c00165{bottom:814.519733pt;}
.y2_c00165{bottom:894.519733pt;}
.h6_c00165{height:44.704000pt;}
.h2_c00165{height:48.000000pt;}
.h5_c00165{height:57.600000pt;}
.h4_c00165{height:69.813333pt;}
.h3_c00165{height:89.760000pt;}
.h0_c00165{height:1122.520000pt;}
.h1_c00165{height:1122.666667pt;}
.w0_c00165{width:793.701333pt;}
.w1_c00165{width:794.000000pt;}
.x0_c00165{left:0.000000pt;}
.x2_c00165{left:73.333333pt;}
.x3_c00165{left:80.000000pt;}
.x4_c00165{left:94.666667pt;}
.x5_c00165{left:600.543200pt;}
.x1_c00165{left:700.634400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.199000;font-style: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);}
.m1_c00166{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls2_c00166{letter-spacing:0.000000px;}
.ls0_c00166{letter-spacing:0.720000px;}
.ls1_c00166{letter-spacing:0.840000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00166{word-spacing:-10.200000px;}
.wsa_c00166{word-spacing:-6.912000px;}
.ws2_c00166{word-spacing:-0.840000px;}
.ws1_c00166{word-spacing:0.000000px;}
.ws9_c00166{word-spacing:2.592000px;}
.ws6_c00166{word-spacing:2.736000px;}
.ws7_c00166{word-spacing:3.024000px;}
.ws3_c00166{word-spacing:3.456000px;}
.ws4_c00166{word-spacing:5.472000px;}
.ws8_c00166{word-spacing:9.792000px;}
.ws5_c00166{word-spacing:13.536000px;}
._0_c00166{margin-left:-480.337200px;}
._1_c00166{margin-left:-4.200000px;}
._3_c00166{margin-left:-2.937600px;}
._2_c00166{margin-left:-1.432800px;}
._4_c00166{width:1.792800px;}
.fc2_c00166{color:rgb(32,32,32);}
.fc1_c00166{color:rgb(232,86,17);}
.fc0_c00166{color:rgb(60,60,59);}
.fs1_c00166{font-size:42.000000px;}
.fs0_c00166{font-size:60.000000px;}
.fs3_c00166{font-size:72.000000px;}
.fs2_c00166{font-size:84.000000px;}
.y0_c00166{bottom:0.000000px;}
.y1_c00166{bottom:41.250000px;}
.yd_c00166{bottom:556.310700px;}
.yc_c00166{bottom:586.316700px;}
.yb_c00166{bottom:616.322700px;}
.ya_c00166{bottom:646.328700px;}
.y9_c00166{bottom:676.334700px;}
.y8_c00166{bottom:736.334700px;}
.y7_c00166{bottom:826.310700px;}
.y6_c00166{bottom:856.316700px;}
.y5_c00166{bottom:886.322700px;}
.y4_c00166{bottom:916.328700px;}
.y3_c00166{bottom:946.334700px;}
.y2_c00166{bottom:1006.334700px;}
.h2_c00166{height:54.000000px;}
.h4_c00166{height:64.800000px;}
.h3_c00166{height:78.540000px;}
.h0_c00166{height:1262.835000px;}
.h1_c00166{height:1263.000000px;}
.w0_c00166{width:892.914000px;}
.w1_c00166{width:893.250000px;}
.x0_c00166{left:0.000000px;}
.x2_c00166{left:90.000000px;}
.x3_c00166{left:106.500000px;}
.x1_c00166{left:790.313850px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls2_c00166{letter-spacing:0.000000pt;}
.ls0_c00166{letter-spacing:0.640000pt;}
.ls1_c00166{letter-spacing:0.746667pt;}
.ws0_c00166{word-spacing:-9.066667pt;}
.wsa_c00166{word-spacing:-6.144000pt;}
.ws2_c00166{word-spacing:-0.746667pt;}
.ws1_c00166{word-spacing:0.000000pt;}
.ws9_c00166{word-spacing:2.304000pt;}
.ws6_c00166{word-spacing:2.432000pt;}
.ws7_c00166{word-spacing:2.688000pt;}
.ws3_c00166{word-spacing:3.072000pt;}
.ws4_c00166{word-spacing:4.864000pt;}
.ws8_c00166{word-spacing:8.704000pt;}
.ws5_c00166{word-spacing:12.032000pt;}
._0_c00166{margin-left:-426.966400pt;}
._1_c00166{margin-left:-3.733333pt;}
._3_c00166{margin-left:-2.611200pt;}
._2_c00166{margin-left:-1.273600pt;}
._4_c00166{width:1.593600pt;}
.fs1_c00166{font-size:37.333333pt;}
.fs0_c00166{font-size:53.333333pt;}
.fs3_c00166{font-size:64.000000pt;}
.fs2_c00166{font-size:74.666667pt;}
.y0_c00166{bottom:0.000000pt;}
.y1_c00166{bottom:36.666667pt;}
.yd_c00166{bottom:494.498400pt;}
.yc_c00166{bottom:521.170400pt;}
.yb_c00166{bottom:547.842400pt;}
.ya_c00166{bottom:574.514400pt;}
.y9_c00166{bottom:601.186400pt;}
.y8_c00166{bottom:654.519733pt;}
.y7_c00166{bottom:734.498400pt;}
.y6_c00166{bottom:761.170400pt;}
.y5_c00166{bottom:787.842400pt;}
.y4_c00166{bottom:814.514400pt;}
.y3_c00166{bottom:841.186400pt;}
.y2_c00166{bottom:894.519733pt;}
.h2_c00166{height:48.000000pt;}
.h4_c00166{height:57.600000pt;}
.h3_c00166{height:69.813333pt;}
.h0_c00166{height:1122.520000pt;}
.h1_c00166{height:1122.666667pt;}
.w0_c00166{width:793.701333pt;}
.w1_c00166{width:794.000000pt;}
.x0_c00166{left:0.000000pt;}
.x2_c00166{left:80.000000pt;}
.x3_c00166{left:94.666667pt;}
.x1_c00166{left:702.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_69d21ca045ca03b3182acdf3.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.161000;font-style: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);}
.m1_c00167{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls5_c00167{letter-spacing:-0.324000px;}
.ls4_c00167{letter-spacing:0.000000px;}
.ls0_c00167{letter-spacing:0.720000px;}
.ls1_c00167{letter-spacing:0.840000px;}
.ls3_c00167{letter-spacing:1.500000px;}
.ls2_c00167{letter-spacing:1.650000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00167{word-spacing:-21.276000px;}
.ws2_c00167{word-spacing:-17.640000px;}
.ws3_c00167{word-spacing:-14.850000px;}
.ws0_c00167{word-spacing:-10.200000px;}
.wsd_c00167{word-spacing:-1.872000px;}
.ws10_c00167{word-spacing:-1.500000px;}
.ws5_c00167{word-spacing:-0.840000px;}
.wse_c00167{word-spacing:-0.648000px;}
.ws4_c00167{word-spacing:0.000000px;}
.wsf_c00167{word-spacing:1.008000px;}
.ws7_c00167{word-spacing:2.232000px;}
.ws8_c00167{word-spacing:6.624000px;}
.ws9_c00167{word-spacing:7.128000px;}
.wsa_c00167{word-spacing:9.000000px;}
.wsb_c00167{word-spacing:11.448000px;}
.wsc_c00167{word-spacing:15.192000px;}
.ws6_c00167{word-spacing:16.344000px;}
._0_c00167{margin-left:-480.337200px;}
._3_c00167{margin-left:-6.480000px;}
._5_c00167{margin-left:-5.479200px;}
._1_c00167{margin-left:-4.200000px;}
._4_c00167{margin-left:-2.473200px;}
._2_c00167{margin-left:-1.134000px;}
.fc3_c00167{color:rgb(32,32,32);}
.fc2_c00167{color:rgb(233,83,14);}
.fc1_c00167{color:rgb(232,86,17);}
.fc4_c00167{color:rgb(157,157,156);}
.fc0_c00167{color:rgb(60,60,59);}
.fs1_c00167{font-size:42.000000px;}
.fs0_c00167{font-size:60.000000px;}
.fs5_c00167{font-size:66.000000px;}
.fs4_c00167{font-size:72.000000px;}
.fs3_c00167{font-size:84.000000px;}
.fs2_c00167{font-size:108.000000px;}
.y0_c00167{bottom:0.000000px;}
.y1_c00167{bottom:41.250000px;}
.y11_c00167{bottom:376.322700px;}
.y10_c00167{bottom:406.328700px;}
.yf_c00167{bottom:436.334700px;}
.ye_c00167{bottom:496.334700px;}
.yd_c00167{bottom:586.280700px;}
.yc_c00167{bottom:616.286700px;}
.yb_c00167{bottom:646.292700px;}
.ya_c00167{bottom:676.298700px;}
.y18_c00167{bottom:678.082650px;}
.y9_c00167{bottom:706.304700px;}
.y17_c00167{bottom:708.082650px;}
.y8_c00167{bottom:736.310700px;}
.y16_c00167{bottom:738.082650px;}
.y7_c00167{bottom:766.316700px;}
.y15_c00167{bottom:768.082650px;}
.y6_c00167{bottom:796.322700px;}
.y14_c00167{bottom:798.082650px;}
.y5_c00167{bottom:826.328700px;}
.y13_c00167{bottom:828.082650px;}
.y4_c00167{bottom:856.334700px;}
.y12_c00167{bottom:858.082650px;}
.y3_c00167{bottom:916.334700px;}
.y2_c00167{bottom:1006.334700px;}
.h6_c00167{height:50.292000px;}
.h2_c00167{height:54.000000px;}
.h5_c00167{height:64.800000px;}
.h4_c00167{height:78.540000px;}
.h3_c00167{height:100.980000px;}
.h0_c00167{height:1262.835000px;}
.h1_c00167{height:1263.000000px;}
.w0_c00167{width:892.914000px;}
.w1_c00167{width:893.250000px;}
.x0_c00167{left:0.000000px;}
.x2_c00167{left:82.500000px;}
.x3_c00167{left:90.000000px;}
.x4_c00167{left:106.500000px;}
.x5_c00167{left:675.611100px;}
.x1_c00167{left:788.288850px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls5_c00167{letter-spacing:-0.288000pt;}
.ls4_c00167{letter-spacing:0.000000pt;}
.ls0_c00167{letter-spacing:0.640000pt;}
.ls1_c00167{letter-spacing:0.746667pt;}
.ls3_c00167{letter-spacing:1.333333pt;}
.ls2_c00167{letter-spacing:1.466667pt;}
.ws1_c00167{word-spacing:-18.912000pt;}
.ws2_c00167{word-spacing:-15.680000pt;}
.ws3_c00167{word-spacing:-13.200000pt;}
.ws0_c00167{word-spacing:-9.066667pt;}
.wsd_c00167{word-spacing:-1.664000pt;}
.ws10_c00167{word-spacing:-1.333333pt;}
.ws5_c00167{word-spacing:-0.746667pt;}
.wse_c00167{word-spacing:-0.576000pt;}
.ws4_c00167{word-spacing:0.000000pt;}
.wsf_c00167{word-spacing:0.896000pt;}
.ws7_c00167{word-spacing:1.984000pt;}
.ws8_c00167{word-spacing:5.888000pt;}
.ws9_c00167{word-spacing:6.336000pt;}
.wsa_c00167{word-spacing:8.000000pt;}
.wsb_c00167{word-spacing:10.176000pt;}
.wsc_c00167{word-spacing:13.504000pt;}
.ws6_c00167{word-spacing:14.528000pt;}
._0_c00167{margin-left:-426.966400pt;}
._3_c00167{margin-left:-5.760000pt;}
._5_c00167{margin-left:-4.870400pt;}
._1_c00167{margin-left:-3.733333pt;}
._4_c00167{margin-left:-2.198400pt;}
._2_c00167{margin-left:-1.008000pt;}
.fs1_c00167{font-size:37.333333pt;}
.fs0_c00167{font-size:53.333333pt;}
.fs5_c00167{font-size:58.666667pt;}
.fs4_c00167{font-size:64.000000pt;}
.fs3_c00167{font-size:74.666667pt;}
.fs2_c00167{font-size:96.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y1_c00167{bottom:36.666667pt;}
.y11_c00167{bottom:334.509067pt;}
.y10_c00167{bottom:361.181067pt;}
.yf_c00167{bottom:387.853067pt;}
.ye_c00167{bottom:441.186400pt;}
.yd_c00167{bottom:521.138400pt;}
.yc_c00167{bottom:547.810400pt;}
.yb_c00167{bottom:574.482400pt;}
.ya_c00167{bottom:601.154400pt;}
.y18_c00167{bottom:602.740133pt;}
.y9_c00167{bottom:627.826400pt;}
.y17_c00167{bottom:629.406800pt;}
.y8_c00167{bottom:654.498400pt;}
.y16_c00167{bottom:656.073467pt;}
.y7_c00167{bottom:681.170400pt;}
.y15_c00167{bottom:682.740133pt;}
.y6_c00167{bottom:707.842400pt;}
.y14_c00167{bottom:709.406800pt;}
.y5_c00167{bottom:734.514400pt;}
.y13_c00167{bottom:736.073467pt;}
.y4_c00167{bottom:761.186400pt;}
.y12_c00167{bottom:762.740133pt;}
.y3_c00167{bottom:814.519733pt;}
.y2_c00167{bottom:894.519733pt;}
.h6_c00167{height:44.704000pt;}
.h2_c00167{height:48.000000pt;}
.h5_c00167{height:57.600000pt;}
.h4_c00167{height:69.813333pt;}
.h3_c00167{height:89.760000pt;}
.h0_c00167{height:1122.520000pt;}
.h1_c00167{height:1122.666667pt;}
.w0_c00167{width:793.701333pt;}
.w1_c00167{width:794.000000pt;}
.x0_c00167{left:0.000000pt;}
.x2_c00167{left:73.333333pt;}
.x3_c00167{left:80.000000pt;}
.x4_c00167{left:94.666667pt;}
.x5_c00167{left:600.543200pt;}
.x1_c00167{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9336a84ddb46a296126c8b8f.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.199000;font-style: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);}
.m1_c00168{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls2_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:0.720000px;}
.ls1_c00168{letter-spacing:0.840000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00168{word-spacing:-10.200000px;}
.ws2_c00168{word-spacing:-0.840000px;}
.wsb_c00168{word-spacing:-0.216000px;}
.ws1_c00168{word-spacing:0.000000px;}
.wsc_c00168{word-spacing:0.216000px;}
.ws4_c00168{word-spacing:1.872000px;}
.ws3_c00168{word-spacing:3.168000px;}
.ws5_c00168{word-spacing:5.400000px;}
.wsa_c00168{word-spacing:6.480000px;}
.ws7_c00168{word-spacing:11.664000px;}
.ws6_c00168{word-spacing:14.400000px;}
.ws8_c00168{word-spacing:14.976000px;}
.ws9_c00168{word-spacing:15.624000px;}
._0_c00168{margin-left:-480.336600px;}
._3_c00168{margin-left:-6.501600px;}
._1_c00168{margin-left:-4.200000px;}
._2_c00168{margin-left:-1.432800px;}
.fc2_c00168{color:rgb(32,32,32);}
.fc1_c00168{color:rgb(232,86,17);}
.fc0_c00168{color:rgb(60,60,59);}
.fs1_c00168{font-size:42.000000px;}
.fs0_c00168{font-size:60.000000px;}
.fs3_c00168{font-size:72.000000px;}
.fs2_c00168{font-size:84.000000px;}
.y0_c00168{bottom:0.000000px;}
.y1_c00168{bottom:41.250000px;}
.y12_c00168{bottom:316.316700px;}
.y11_c00168{bottom:346.322700px;}
.y10_c00168{bottom:376.328700px;}
.yf_c00168{bottom:406.334700px;}
.ye_c00168{bottom:466.334700px;}
.yd_c00168{bottom:556.310700px;}
.yc_c00168{bottom:586.316700px;}
.yb_c00168{bottom:616.322700px;}
.ya_c00168{bottom:646.328700px;}
.y9_c00168{bottom:676.334700px;}
.y8_c00168{bottom:736.334700px;}
.y7_c00168{bottom:826.310700px;}
.y6_c00168{bottom:856.316700px;}
.y5_c00168{bottom:886.322700px;}
.y4_c00168{bottom:916.328700px;}
.y3_c00168{bottom:946.334700px;}
.y2_c00168{bottom:1006.334700px;}
.h2_c00168{height:54.000000px;}
.h4_c00168{height:64.800000px;}
.h3_c00168{height:78.540000px;}
.h0_c00168{height:1262.835000px;}
.h1_c00168{height:1263.000000px;}
.w0_c00168{width:892.914000px;}
.w1_c00168{width:893.250000px;}
.x0_c00168{left:0.000000px;}
.x2_c00168{left:90.000000px;}
.x3_c00168{left:106.500000px;}
.x1_c00168{left:788.213700px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls2_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:0.640000pt;}
.ls1_c00168{letter-spacing:0.746667pt;}
.ws0_c00168{word-spacing:-9.066667pt;}
.ws2_c00168{word-spacing:-0.746667pt;}
.wsb_c00168{word-spacing:-0.192000pt;}
.ws1_c00168{word-spacing:0.000000pt;}
.wsc_c00168{word-spacing:0.192000pt;}
.ws4_c00168{word-spacing:1.664000pt;}
.ws3_c00168{word-spacing:2.816000pt;}
.ws5_c00168{word-spacing:4.800000pt;}
.wsa_c00168{word-spacing:5.760000pt;}
.ws7_c00168{word-spacing:10.368000pt;}
.ws6_c00168{word-spacing:12.800000pt;}
.ws8_c00168{word-spacing:13.312000pt;}
.ws9_c00168{word-spacing:13.888000pt;}
._0_c00168{margin-left:-426.965867pt;}
._3_c00168{margin-left:-5.779200pt;}
._1_c00168{margin-left:-3.733333pt;}
._2_c00168{margin-left:-1.273600pt;}
.fs1_c00168{font-size:37.333333pt;}
.fs0_c00168{font-size:53.333333pt;}
.fs3_c00168{font-size:64.000000pt;}
.fs2_c00168{font-size:74.666667pt;}
.y0_c00168{bottom:0.000000pt;}
.y1_c00168{bottom:36.666667pt;}
.y12_c00168{bottom:281.170400pt;}
.y11_c00168{bottom:307.842400pt;}
.y10_c00168{bottom:334.514400pt;}
.yf_c00168{bottom:361.186400pt;}
.ye_c00168{bottom:414.519733pt;}
.yd_c00168{bottom:494.498400pt;}
.yc_c00168{bottom:521.170400pt;}
.yb_c00168{bottom:547.842400pt;}
.ya_c00168{bottom:574.514400pt;}
.y9_c00168{bottom:601.186400pt;}
.y8_c00168{bottom:654.519733pt;}
.y7_c00168{bottom:734.498400pt;}
.y6_c00168{bottom:761.170400pt;}
.y5_c00168{bottom:787.842400pt;}
.y4_c00168{bottom:814.514400pt;}
.y3_c00168{bottom:841.186400pt;}
.y2_c00168{bottom:894.519733pt;}
.h2_c00168{height:48.000000pt;}
.h4_c00168{height:57.600000pt;}
.h3_c00168{height:69.813333pt;}
.h0_c00168{height:1122.520000pt;}
.h1_c00168{height:1122.666667pt;}
.w0_c00168{width:793.701333pt;}
.w1_c00168{width:794.000000pt;}
.x0_c00168{left:0.000000pt;}
.x2_c00168{left:80.000000pt;}
.x3_c00168{left:94.666667pt;}
.x1_c00168{left:700.634400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00169;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00169;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:1.155000;font-style: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);}
.m1_c00169{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls3_c00169{letter-spacing:-0.360000px;}
.ls2_c00169{letter-spacing:0.000000px;}
.ls0_c00169{letter-spacing:0.864000px;}
.ls1_c00169{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00169{word-spacing:-13.104000px;}
.ws0_c00169{word-spacing:-10.200000px;}
.ws8_c00169{word-spacing:-7.200000px;}
.ws7_c00169{word-spacing:-3.600000px;}
.ws5_c00169{word-spacing:-3.528000px;}
.ws4_c00169{word-spacing:-2.952000px;}
.ws6_c00169{word-spacing:-2.016000px;}
.ws3_c00169{word-spacing:-0.864000px;}
.ws2_c00169{word-spacing:0.000000px;}
.ws9_c00169{word-spacing:1.560000px;}
._0_c00169{margin-left:-480.337200px;}
._7_c00169{margin-left:-10.800000px;}
._5_c00169{margin-left:-8.496000px;}
._4_c00169{margin-left:-6.480000px;}
._1_c00169{margin-left:-4.200000px;}
._6_c00169{margin-left:-2.592000px;}
._2_c00169{margin-left:-1.440000px;}
._b_c00169{width:1.560000px;}
._3_c00169{width:2.952000px;}
._8_c00169{width:3.984000px;}
._a_c00169{width:5.160000px;}
._9_c00169{width:7.200000px;}
.fc3_c00169{color:rgb(255,255,255);}
.fc2_c00169{color:rgb(233,83,14);}
.fc1_c00169{color:rgb(232,86,17);}
.fc0_c00169{color:rgb(60,60,59);}
.fs1_c00169{font-size:42.000000px;}
.fs0_c00169{font-size:60.000000px;}
.fs3_c00169{font-size:72.000000px;}
.fs4_c00169{font-size:120.000000px;}
.fs2_c00169{font-size:360.000000px;}
.y0_c00169{bottom:0.000000px;}
.y1_c00169{bottom:41.250000px;}
.y12_c00169{bottom:304.256700px;}
.y11_c00169{bottom:325.262700px;}
.y10_c00169{bottom:346.268700px;}
.yf_c00169{bottom:394.274700px;}
.ye_c00169{bottom:415.280700px;}
.yd_c00169{bottom:436.286700px;}
.yc_c00169{bottom:484.292700px;}
.yb_c00169{bottom:505.298700px;}
.ya_c00169{bottom:526.304700px;}
.y9_c00169{bottom:574.310700px;}
.y8_c00169{bottom:595.316700px;}
.y7_c00169{bottom:616.322700px;}
.y6_c00169{bottom:664.328700px;}
.y5_c00169{bottom:685.334700px;}
.y4_c00169{bottom:706.340700px;}
.y3_c00169{bottom:752.834700px;}
.y16_c00169{bottom:916.334700px;}
.y15_c00169{bottom:946.334700px;}
.y14_c00169{bottom:976.334700px;}
.y13_c00169{bottom:1006.334700px;}
.y2_c00169{bottom:1093.526700px;}
.h2_c00169{height:54.000000px;}
.h5_c00169{height:64.800000px;}
.h4_c00169{height:66.456000px;}
.h6_c00169{height:112.200000px;}
.h3_c00169{height:324.000000px;}
.h0_c00169{height:1262.835000px;}
.h1_c00169{height:1263.000000px;}
.w0_c00169{width:892.914000px;}
.w1_c00169{width:893.250000px;}
.x0_c00169{left:0.000000px;}
.x2_c00169{left:81.290250px;}
.x3_c00169{left:82.393650px;}
.x5_c00169{left:112.287450px;}
.x4_c00169{left:127.393650px;}
.x1_c00169{left:790.328850px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls3_c00169{letter-spacing:-0.320000pt;}
.ls2_c00169{letter-spacing:0.000000pt;}
.ls0_c00169{letter-spacing:0.768000pt;}
.ls1_c00169{letter-spacing:1.066667pt;}
.ws1_c00169{word-spacing:-11.648000pt;}
.ws0_c00169{word-spacing:-9.066667pt;}
.ws8_c00169{word-spacing:-6.400000pt;}
.ws7_c00169{word-spacing:-3.200000pt;}
.ws5_c00169{word-spacing:-3.136000pt;}
.ws4_c00169{word-spacing:-2.624000pt;}
.ws6_c00169{word-spacing:-1.792000pt;}
.ws3_c00169{word-spacing:-0.768000pt;}
.ws2_c00169{word-spacing:0.000000pt;}
.ws9_c00169{word-spacing:1.386667pt;}
._0_c00169{margin-left:-426.966400pt;}
._7_c00169{margin-left:-9.600000pt;}
._5_c00169{margin-left:-7.552000pt;}
._4_c00169{margin-left:-5.760000pt;}
._1_c00169{margin-left:-3.733333pt;}
._6_c00169{margin-left:-2.304000pt;}
._2_c00169{margin-left:-1.280000pt;}
._b_c00169{width:1.386667pt;}
._3_c00169{width:2.624000pt;}
._8_c00169{width:3.541333pt;}
._a_c00169{width:4.586667pt;}
._9_c00169{width:6.400000pt;}
.fs1_c00169{font-size:37.333333pt;}
.fs0_c00169{font-size:53.333333pt;}
.fs3_c00169{font-size:64.000000pt;}
.fs4_c00169{font-size:106.666667pt;}
.fs2_c00169{font-size:320.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y1_c00169{bottom:36.666667pt;}
.y12_c00169{bottom:270.450400pt;}
.y11_c00169{bottom:289.122400pt;}
.y10_c00169{bottom:307.794400pt;}
.yf_c00169{bottom:350.466400pt;}
.ye_c00169{bottom:369.138400pt;}
.yd_c00169{bottom:387.810400pt;}
.yc_c00169{bottom:430.482400pt;}
.yb_c00169{bottom:449.154400pt;}
.ya_c00169{bottom:467.826400pt;}
.y9_c00169{bottom:510.498400pt;}
.y8_c00169{bottom:529.170400pt;}
.y7_c00169{bottom:547.842400pt;}
.y6_c00169{bottom:590.514400pt;}
.y5_c00169{bottom:609.186400pt;}
.y4_c00169{bottom:627.858400pt;}
.y3_c00169{bottom:669.186400pt;}
.y16_c00169{bottom:814.519733pt;}
.y15_c00169{bottom:841.186400pt;}
.y14_c00169{bottom:867.853067pt;}
.y13_c00169{bottom:894.519733pt;}
.y2_c00169{bottom:972.023733pt;}
.h2_c00169{height:48.000000pt;}
.h5_c00169{height:57.600000pt;}
.h4_c00169{height:59.072000pt;}
.h6_c00169{height:99.733333pt;}
.h3_c00169{height:288.000000pt;}
.h0_c00169{height:1122.520000pt;}
.h1_c00169{height:1122.666667pt;}
.w0_c00169{width:793.701333pt;}
.w1_c00169{width:794.000000pt;}
.x0_c00169{left:0.000000pt;}
.x2_c00169{left:72.258000pt;}
.x3_c00169{left:73.238800pt;}
.x5_c00169{left:99.811067pt;}
.x4_c00169{left:113.238800pt;}
.x1_c00169{left:702.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00170;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00170;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.161000;font-style: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);}
.m1_c00170{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls5_c00170{letter-spacing:-0.540000px;}
.ls4_c00170{letter-spacing:0.000000px;}
.ls0_c00170{letter-spacing:0.720000px;}
.ls1_c00170{letter-spacing:0.840000px;}
.ls3_c00170{letter-spacing:1.500000px;}
.ls2_c00170{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00170{word-spacing:-21.060000px;}
.ws2_c00170{word-spacing:-17.640000px;}
.ws3_c00170{word-spacing:-11.700000px;}
.ws0_c00170{word-spacing:-10.200000px;}
.ws13_c00170{word-spacing:-5.832000px;}
.wsa_c00170{word-spacing:-5.328000px;}
.ws12_c00170{word-spacing:-4.608000px;}
.ws14_c00170{word-spacing:-3.744000px;}
.ws15_c00170{word-spacing:-3.384000px;}
.wsc_c00170{word-spacing:-1.800000px;}
.wsb_c00170{word-spacing:-1.728000px;}
.ws16_c00170{word-spacing:-1.500000px;}
.ws11_c00170{word-spacing:-1.080000px;}
.ws9_c00170{word-spacing:-0.936000px;}
.ws5_c00170{word-spacing:-0.840000px;}
.ws4_c00170{word-spacing:0.000000px;}
.wsd_c00170{word-spacing:1.512000px;}
.ws10_c00170{word-spacing:1.800000px;}
.wse_c00170{word-spacing:5.184000px;}
.ws6_c00170{word-spacing:7.416000px;}
.ws7_c00170{word-spacing:7.920000px;}
.ws8_c00170{word-spacing:9.936000px;}
.wsf_c00170{word-spacing:16.560000px;}
._0_c00170{margin-left:-480.337200px;}
._4_c00170{margin-left:-5.940000px;}
._1_c00170{margin-left:-4.200000px;}
._2_c00170{margin-left:-2.160000px;}
._5_c00170{margin-left:-1.005600px;}
._3_c00170{width:1.065600px;}
._7_c00170{width:2.937600px;}
._6_c00170{width:4.910400px;}
.fc3_c00170{color:rgb(32,32,32);}
.fc2_c00170{color:rgb(233,83,14);}
.fc1_c00170{color:rgb(232,86,17);}
.fc4_c00170{color:rgb(157,157,156);}
.fc0_c00170{color:rgb(60,60,59);}
.fs1_c00170{font-size:42.000000px;}
.fs0_c00170{font-size:60.000000px;}
.fs5_c00170{font-size:66.000000px;}
.fs4_c00170{font-size:72.000000px;}
.fs3_c00170{font-size:84.000000px;}
.fs2_c00170{font-size:108.000000px;}
.y0_c00170{bottom:0.000000px;}
.y1_c00170{bottom:41.250000px;}
.y16_c00170{bottom:226.316700px;}
.y15_c00170{bottom:256.322700px;}
.y14_c00170{bottom:286.328700px;}
.y13_c00170{bottom:316.334700px;}
.y12_c00170{bottom:376.334700px;}
.y11_c00170{bottom:466.256700px;}
.y10_c00170{bottom:496.262700px;}
.yf_c00170{bottom:526.268700px;}
.ye_c00170{bottom:556.274700px;}
.yd_c00170{bottom:586.280700px;}
.yc_c00170{bottom:616.286700px;}
.yb_c00170{bottom:646.292700px;}
.ya_c00170{bottom:676.298700px;}
.y9_c00170{bottom:706.304700px;}
.y1c_c00170{bottom:706.334700px;}
.y8_c00170{bottom:736.310700px;}
.y1b_c00170{bottom:736.334700px;}
.y7_c00170{bottom:766.316700px;}
.y1a_c00170{bottom:766.334700px;}
.y6_c00170{bottom:796.322700px;}
.y19_c00170{bottom:796.334700px;}
.y5_c00170{bottom:826.328700px;}
.y18_c00170{bottom:826.334700px;}
.y4_c00170{bottom:856.334700px;}
.y17_c00170{bottom:858.082650px;}
.y3_c00170{bottom:916.334700px;}
.y2_c00170{bottom:1006.334700px;}
.h6_c00170{height:50.292000px;}
.h2_c00170{height:54.000000px;}
.h5_c00170{height:64.800000px;}
.h4_c00170{height:78.540000px;}
.h3_c00170{height:100.980000px;}
.h0_c00170{height:1262.835000px;}
.h1_c00170{height:1263.000000px;}
.w0_c00170{width:892.914000px;}
.w1_c00170{width:893.250000px;}
.x0_c00170{left:0.000000px;}
.x2_c00170{left:82.500000px;}
.x3_c00170{left:90.000000px;}
.x4_c00170{left:106.500000px;}
.x5_c00170{left:675.611100px;}
.x1_c00170{left:793.988850px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls5_c00170{letter-spacing:-0.480000pt;}
.ls4_c00170{letter-spacing:0.000000pt;}
.ls0_c00170{letter-spacing:0.640000pt;}
.ls1_c00170{letter-spacing:0.746667pt;}
.ls3_c00170{letter-spacing:1.333333pt;}
.ls2_c00170{letter-spacing:1.466667pt;}
.ws1_c00170{word-spacing:-18.720000pt;}
.ws2_c00170{word-spacing:-15.680000pt;}
.ws3_c00170{word-spacing:-10.400000pt;}
.ws0_c00170{word-spacing:-9.066667pt;}
.ws13_c00170{word-spacing:-5.184000pt;}
.wsa_c00170{word-spacing:-4.736000pt;}
.ws12_c00170{word-spacing:-4.096000pt;}
.ws14_c00170{word-spacing:-3.328000pt;}
.ws15_c00170{word-spacing:-3.008000pt;}
.wsc_c00170{word-spacing:-1.600000pt;}
.wsb_c00170{word-spacing:-1.536000pt;}
.ws16_c00170{word-spacing:-1.333333pt;}
.ws11_c00170{word-spacing:-0.960000pt;}
.ws9_c00170{word-spacing:-0.832000pt;}
.ws5_c00170{word-spacing:-0.746667pt;}
.ws4_c00170{word-spacing:0.000000pt;}
.wsd_c00170{word-spacing:1.344000pt;}
.ws10_c00170{word-spacing:1.600000pt;}
.wse_c00170{word-spacing:4.608000pt;}
.ws6_c00170{word-spacing:6.592000pt;}
.ws7_c00170{word-spacing:7.040000pt;}
.ws8_c00170{word-spacing:8.832000pt;}
.wsf_c00170{word-spacing:14.720000pt;}
._0_c00170{margin-left:-426.966400pt;}
._4_c00170{margin-left:-5.280000pt;}
._1_c00170{margin-left:-3.733333pt;}
._2_c00170{margin-left:-1.920000pt;}
._5_c00170{margin-left:-0.893867pt;}
._3_c00170{width:0.947200pt;}
._7_c00170{width:2.611200pt;}
._6_c00170{width:4.364800pt;}
.fs1_c00170{font-size:37.333333pt;}
.fs0_c00170{font-size:53.333333pt;}
.fs5_c00170{font-size:58.666667pt;}
.fs4_c00170{font-size:64.000000pt;}
.fs3_c00170{font-size:74.666667pt;}
.fs2_c00170{font-size:96.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y1_c00170{bottom:36.666667pt;}
.y16_c00170{bottom:201.170400pt;}
.y15_c00170{bottom:227.842400pt;}
.y14_c00170{bottom:254.514400pt;}
.y13_c00170{bottom:281.186400pt;}
.y12_c00170{bottom:334.519733pt;}
.y11_c00170{bottom:414.450400pt;}
.y10_c00170{bottom:441.122400pt;}
.yf_c00170{bottom:467.794400pt;}
.ye_c00170{bottom:494.466400pt;}
.yd_c00170{bottom:521.138400pt;}
.yc_c00170{bottom:547.810400pt;}
.yb_c00170{bottom:574.482400pt;}
.ya_c00170{bottom:601.154400pt;}
.y9_c00170{bottom:627.826400pt;}
.y1c_c00170{bottom:627.853067pt;}
.y8_c00170{bottom:654.498400pt;}
.y1b_c00170{bottom:654.519733pt;}
.y7_c00170{bottom:681.170400pt;}
.y1a_c00170{bottom:681.186400pt;}
.y6_c00170{bottom:707.842400pt;}
.y19_c00170{bottom:707.853067pt;}
.y5_c00170{bottom:734.514400pt;}
.y18_c00170{bottom:734.519733pt;}
.y4_c00170{bottom:761.186400pt;}
.y17_c00170{bottom:762.740133pt;}
.y3_c00170{bottom:814.519733pt;}
.y2_c00170{bottom:894.519733pt;}
.h6_c00170{height:44.704000pt;}
.h2_c00170{height:48.000000pt;}
.h5_c00170{height:57.600000pt;}
.h4_c00170{height:69.813333pt;}
.h3_c00170{height:89.760000pt;}
.h0_c00170{height:1122.520000pt;}
.h1_c00170{height:1122.666667pt;}
.w0_c00170{width:793.701333pt;}
.w1_c00170{width:794.000000pt;}
.x0_c00170{left:0.000000pt;}
.x2_c00170{left:73.333333pt;}
.x3_c00170{left:80.000000pt;}
.x4_c00170{left:94.666667pt;}
.x5_c00170{left:600.543200pt;}
.x1_c00170{left:705.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.199000;font-style: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);}
.m1_c00171{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls1_c00171{letter-spacing:0.000000px;}
.ls0_c00171{letter-spacing:0.720000px;}
.ls2_c00171{letter-spacing:0.840000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00171{word-spacing:-10.200000px;}
.ws5_c00171{word-spacing:-1.224000px;}
.ws2_c00171{word-spacing:-0.840000px;}
.ws4_c00171{word-spacing:-0.504000px;}
.ws1_c00171{word-spacing:0.000000px;}
.ws3_c00171{word-spacing:2.376000px;}
.ws7_c00171{word-spacing:5.688000px;}
.ws9_c00171{word-spacing:6.840000px;}
.wsb_c00171{word-spacing:7.416000px;}
.ws8_c00171{word-spacing:7.488000px;}
.wsa_c00171{word-spacing:10.512000px;}
.ws6_c00171{word-spacing:19.008000px;}
._0_c00171{margin-left:-480.336600px;}
._3_c00171{margin-left:-6.480000px;}
._1_c00171{margin-left:-4.200000px;}
._2_c00171{margin-left:-1.440000px;}
._4_c00171{width:5.868000px;}
.fc2_c00171{color:rgb(32,32,32);}
.fc1_c00171{color:rgb(232,86,17);}
.fc0_c00171{color:rgb(60,60,59);}
.fs1_c00171{font-size:42.000000px;}
.fs0_c00171{font-size:60.000000px;}
.fs3_c00171{font-size:72.000000px;}
.fs2_c00171{font-size:84.000000px;}
.y0_c00171{bottom:0.000000px;}
.y1_c00171{bottom:41.250000px;}
.yf_c00171{bottom:496.292700px;}
.ye_c00171{bottom:526.298700px;}
.yd_c00171{bottom:556.304700px;}
.yc_c00171{bottom:586.310700px;}
.yb_c00171{bottom:616.316700px;}
.ya_c00171{bottom:646.322700px;}
.y9_c00171{bottom:676.328700px;}
.y8_c00171{bottom:706.334700px;}
.y7_c00171{bottom:766.334700px;}
.y6_c00171{bottom:856.316700px;}
.y5_c00171{bottom:886.322700px;}
.y4_c00171{bottom:916.328700px;}
.y3_c00171{bottom:946.334700px;}
.y2_c00171{bottom:1006.334700px;}
.h2_c00171{height:54.000000px;}
.h4_c00171{height:64.800000px;}
.h3_c00171{height:78.540000px;}
.h0_c00171{height:1262.835000px;}
.h1_c00171{height:1263.000000px;}
.w0_c00171{width:892.914000px;}
.w1_c00171{width:893.250000px;}
.x0_c00171{left:0.000000px;}
.x2_c00171{left:90.000000px;}
.x3_c00171{left:106.500000px;}
.x1_c00171{left:791.513700px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls1_c00171{letter-spacing:0.000000pt;}
.ls0_c00171{letter-spacing:0.640000pt;}
.ls2_c00171{letter-spacing:0.746667pt;}
.ws0_c00171{word-spacing:-9.066667pt;}
.ws5_c00171{word-spacing:-1.088000pt;}
.ws2_c00171{word-spacing:-0.746667pt;}
.ws4_c00171{word-spacing:-0.448000pt;}
.ws1_c00171{word-spacing:0.000000pt;}
.ws3_c00171{word-spacing:2.112000pt;}
.ws7_c00171{word-spacing:5.056000pt;}
.ws9_c00171{word-spacing:6.080000pt;}
.wsb_c00171{word-spacing:6.592000pt;}
.ws8_c00171{word-spacing:6.656000pt;}
.wsa_c00171{word-spacing:9.344000pt;}
.ws6_c00171{word-spacing:16.896000pt;}
._0_c00171{margin-left:-426.965867pt;}
._3_c00171{margin-left:-5.760000pt;}
._1_c00171{margin-left:-3.733333pt;}
._2_c00171{margin-left:-1.280000pt;}
._4_c00171{width:5.216000pt;}
.fs1_c00171{font-size:37.333333pt;}
.fs0_c00171{font-size:53.333333pt;}
.fs3_c00171{font-size:64.000000pt;}
.fs2_c00171{font-size:74.666667pt;}
.y0_c00171{bottom:0.000000pt;}
.y1_c00171{bottom:36.666667pt;}
.yf_c00171{bottom:441.149067pt;}
.ye_c00171{bottom:467.821067pt;}
.yd_c00171{bottom:494.493067pt;}
.yc_c00171{bottom:521.165067pt;}
.yb_c00171{bottom:547.837067pt;}
.ya_c00171{bottom:574.509067pt;}
.y9_c00171{bottom:601.181067pt;}
.y8_c00171{bottom:627.853067pt;}
.y7_c00171{bottom:681.186400pt;}
.y6_c00171{bottom:761.170400pt;}
.y5_c00171{bottom:787.842400pt;}
.y4_c00171{bottom:814.514400pt;}
.y3_c00171{bottom:841.186400pt;}
.y2_c00171{bottom:894.519733pt;}
.h2_c00171{height:48.000000pt;}
.h4_c00171{height:57.600000pt;}
.h3_c00171{height:69.813333pt;}
.h0_c00171{height:1122.520000pt;}
.h1_c00171{height:1122.666667pt;}
.w0_c00171{width:793.701333pt;}
.w1_c00171{width:794.000000pt;}
.x0_c00171{left:0.000000pt;}
.x2_c00171{left:80.000000pt;}
.x3_c00171{left:94.666667pt;}
.x1_c00171{left:703.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_404726e6b27da81fd5ea9fff.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.160000;font-style:normal;font-weight:normal;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_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00172;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.161000;font-style: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);}
.m1_c00172{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls5_c00172{letter-spacing:-0.324000px;}
.ls4_c00172{letter-spacing:0.000000px;}
.ls1_c00172{letter-spacing:0.720000px;}
.ls0_c00172{letter-spacing:0.840000px;}
.ls3_c00172{letter-spacing:1.500000px;}
.ls2_c00172{letter-spacing:1.650000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00172{word-spacing:-21.276000px;}
.ws2_c00172{word-spacing:-17.640000px;}
.ws4_c00172{word-spacing:-14.850000px;}
.ws3_c00172{word-spacing:-12.960000px;}
.ws0_c00172{word-spacing:-10.200000px;}
.ws16_c00172{word-spacing:-1.500000px;}
.wsb_c00172{word-spacing:-1.368000px;}
.ws14_c00172{word-spacing:-0.936000px;}
.ws6_c00172{word-spacing:-0.840000px;}
.ws13_c00172{word-spacing:-0.288000px;}
.ws10_c00172{word-spacing:-0.072000px;}
.ws5_c00172{word-spacing:0.000000px;}
.ws11_c00172{word-spacing:0.792000px;}
.wsd_c00172{word-spacing:1.080000px;}
.ws12_c00172{word-spacing:2.016000px;}
.wsa_c00172{word-spacing:6.120000px;}
.ws9_c00172{word-spacing:6.840000px;}
.wse_c00172{word-spacing:9.000000px;}
.ws15_c00172{word-spacing:10.224000px;}
.wsf_c00172{word-spacing:10.440000px;}
.ws8_c00172{word-spacing:12.960000px;}
.ws7_c00172{word-spacing:13.896000px;}
.wsc_c00172{word-spacing:17.928000px;}
._0_c00172{margin-left:-480.337200px;}
._4_c00172{margin-left:-5.796000px;}
._1_c00172{margin-left:-4.200000px;}
._3_c00172{margin-left:-2.160000px;}
._2_c00172{margin-left:-1.134000px;}
._5_c00172{width:1.267200px;}
._7_c00172{width:3.480000px;}
._6_c00172{width:4.932000px;}
.fc3_c00172{color:rgb(32,32,32);}
.fc2_c00172{color:rgb(233,83,14);}
.fc1_c00172{color:rgb(232,86,17);}
.fc4_c00172{color:rgb(157,157,156);}
.fc0_c00172{color:rgb(60,60,59);}
.fs1_c00172{font-size:42.000000px;}
.fs0_c00172{font-size:60.000000px;}
.fs5_c00172{font-size:66.000000px;}
.fs4_c00172{font-size:72.000000px;}
.fs3_c00172{font-size:84.000000px;}
.fs2_c00172{font-size:108.000000px;}
.y0_c00172{bottom:0.000000px;}
.y1_c00172{bottom:41.250000px;}
.y15_c00172{bottom:256.316700px;}
.y14_c00172{bottom:286.322700px;}
.y13_c00172{bottom:316.328700px;}
.y12_c00172{bottom:346.334700px;}
.y11_c00172{bottom:406.334700px;}
.y10_c00172{bottom:496.262700px;}
.yf_c00172{bottom:526.268700px;}
.ye_c00172{bottom:556.274700px;}
.yd_c00172{bottom:586.280700px;}
.yc_c00172{bottom:616.286700px;}
.yb_c00172{bottom:646.292700px;}
.ya_c00172{bottom:676.298700px;}
.y9_c00172{bottom:706.304700px;}
.y8_c00172{bottom:736.310700px;}
.y1a_c00172{bottom:736.334700px;}
.y7_c00172{bottom:766.316700px;}
.y19_c00172{bottom:766.334700px;}
.y6_c00172{bottom:796.322700px;}
.y18_c00172{bottom:796.334700px;}
.y5_c00172{bottom:826.328700px;}
.y17_c00172{bottom:826.334700px;}
.y4_c00172{bottom:856.334700px;}
.y16_c00172{bottom:858.082650px;}
.y3_c00172{bottom:916.334700px;}
.y2_c00172{bottom:1006.334700px;}
.h6_c00172{height:50.292000px;}
.h2_c00172{height:54.000000px;}
.h5_c00172{height:64.800000px;}
.h4_c00172{height:78.540000px;}
.h3_c00172{height:100.980000px;}
.h0_c00172{height:1262.835000px;}
.h1_c00172{height:1263.000000px;}
.w0_c00172{width:892.914000px;}
.w1_c00172{width:893.250000px;}
.x0_c00172{left:0.000000px;}
.x2_c00172{left:82.500000px;}
.x3_c00172{left:90.000000px;}
.x4_c00172{left:106.500000px;}
.x5_c00172{left:675.611100px;}
.x1_c00172{left:791.363850px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls5_c00172{letter-spacing:-0.288000pt;}
.ls4_c00172{letter-spacing:0.000000pt;}
.ls1_c00172{letter-spacing:0.640000pt;}
.ls0_c00172{letter-spacing:0.746667pt;}
.ls3_c00172{letter-spacing:1.333333pt;}
.ls2_c00172{letter-spacing:1.466667pt;}
.ws1_c00172{word-spacing:-18.912000pt;}
.ws2_c00172{word-spacing:-15.680000pt;}
.ws4_c00172{word-spacing:-13.200000pt;}
.ws3_c00172{word-spacing:-11.520000pt;}
.ws0_c00172{word-spacing:-9.066667pt;}
.ws16_c00172{word-spacing:-1.333333pt;}
.wsb_c00172{word-spacing:-1.216000pt;}
.ws14_c00172{word-spacing:-0.832000pt;}
.ws6_c00172{word-spacing:-0.746667pt;}
.ws13_c00172{word-spacing:-0.256000pt;}
.ws10_c00172{word-spacing:-0.064000pt;}
.ws5_c00172{word-spacing:0.000000pt;}
.ws11_c00172{word-spacing:0.704000pt;}
.wsd_c00172{word-spacing:0.960000pt;}
.ws12_c00172{word-spacing:1.792000pt;}
.wsa_c00172{word-spacing:5.440000pt;}
.ws9_c00172{word-spacing:6.080000pt;}
.wse_c00172{word-spacing:8.000000pt;}
.ws15_c00172{word-spacing:9.088000pt;}
.wsf_c00172{word-spacing:9.280000pt;}
.ws8_c00172{word-spacing:11.520000pt;}
.ws7_c00172{word-spacing:12.352000pt;}
.wsc_c00172{word-spacing:15.936000pt;}
._0_c00172{margin-left:-426.966400pt;}
._4_c00172{margin-left:-5.152000pt;}
._1_c00172{margin-left:-3.733333pt;}
._3_c00172{margin-left:-1.920000pt;}
._2_c00172{margin-left:-1.008000pt;}
._5_c00172{width:1.126400pt;}
._7_c00172{width:3.093333pt;}
._6_c00172{width:4.384000pt;}
.fs1_c00172{font-size:37.333333pt;}
.fs0_c00172{font-size:53.333333pt;}
.fs5_c00172{font-size:58.666667pt;}
.fs4_c00172{font-size:64.000000pt;}
.fs3_c00172{font-size:74.666667pt;}
.fs2_c00172{font-size:96.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y1_c00172{bottom:36.666667pt;}
.y15_c00172{bottom:227.837067pt;}
.y14_c00172{bottom:254.509067pt;}
.y13_c00172{bottom:281.181067pt;}
.y12_c00172{bottom:307.853067pt;}
.y11_c00172{bottom:361.186400pt;}
.y10_c00172{bottom:441.122400pt;}
.yf_c00172{bottom:467.794400pt;}
.ye_c00172{bottom:494.466400pt;}
.yd_c00172{bottom:521.138400pt;}
.yc_c00172{bottom:547.810400pt;}
.yb_c00172{bottom:574.482400pt;}
.ya_c00172{bottom:601.154400pt;}
.y9_c00172{bottom:627.826400pt;}
.y8_c00172{bottom:654.498400pt;}
.y1a_c00172{bottom:654.519733pt;}
.y7_c00172{bottom:681.170400pt;}
.y19_c00172{bottom:681.186400pt;}
.y6_c00172{bottom:707.842400pt;}
.y18_c00172{bottom:707.853067pt;}
.y5_c00172{bottom:734.514400pt;}
.y17_c00172{bottom:734.519733pt;}
.y4_c00172{bottom:761.186400pt;}
.y16_c00172{bottom:762.740133pt;}
.y3_c00172{bottom:814.519733pt;}
.y2_c00172{bottom:894.519733pt;}
.h6_c00172{height:44.704000pt;}
.h2_c00172{height:48.000000pt;}
.h5_c00172{height:57.600000pt;}
.h4_c00172{height:69.813333pt;}
.h3_c00172{height:89.760000pt;}
.h0_c00172{height:1122.520000pt;}
.h1_c00172{height:1122.666667pt;}
.w0_c00172{width:793.701333pt;}
.w1_c00172{width:794.000000pt;}
.x0_c00172{left:0.000000pt;}
.x2_c00172{left:73.333333pt;}
.x3_c00172{left:80.000000pt;}
.x4_c00172{left:94.666667pt;}
.x5_c00172{left:600.543200pt;}
.x1_c00172{left:703.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.160000;font-style:normal;font-weight:normal;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_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.199000;font-style: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);}
.m1_c00173{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls2_c00173{letter-spacing:-3.600000px;}
.ls3_c00173{letter-spacing:0.000000px;}
.ls0_c00173{letter-spacing:0.720000px;}
.ls1_c00173{letter-spacing:0.840000px;}
.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:-6.600000px;}
.ws3_c00173{word-spacing:-4.896000px;}
.ws6_c00173{word-spacing:-3.096000px;}
.ws4_c00173{word-spacing:-2.160000px;}
.ws2_c00173{word-spacing:-0.840000px;}
.ws1_c00173{word-spacing:0.000000px;}
.ws5_c00173{word-spacing:1.152000px;}
.ws9_c00173{word-spacing:2.304000px;}
.wsc_c00173{word-spacing:2.376000px;}
.wsb_c00173{word-spacing:2.952000px;}
.wsa_c00173{word-spacing:6.264000px;}
.ws7_c00173{word-spacing:6.696000px;}
.ws8_c00173{word-spacing:19.728000px;}
._1_c00173{margin-left:-476.737200px;}
._4_c00173{margin-left:-5.868000px;}
._2_c00173{margin-left:-4.200000px;}
._3_c00173{margin-left:-1.476000px;}
._5_c00173{width:2.001600px;}
._0_c00173{width:3.600000px;}
.fc2_c00173{color:rgb(32,32,32);}
.fc1_c00173{color:rgb(232,86,17);}
.fc0_c00173{color:rgb(60,60,59);}
.fs1_c00173{font-size:42.000000px;}
.fs0_c00173{font-size:60.000000px;}
.fs3_c00173{font-size:72.000000px;}
.fs2_c00173{font-size:84.000000px;}
.y0_c00173{bottom:0.000000px;}
.y1_c00173{bottom:41.250000px;}
.ye_c00173{bottom:526.298700px;}
.yd_c00173{bottom:556.304700px;}
.yc_c00173{bottom:586.310700px;}
.yb_c00173{bottom:616.316700px;}
.ya_c00173{bottom:646.322700px;}
.y9_c00173{bottom:676.328700px;}
.y8_c00173{bottom:706.334700px;}
.y7_c00173{bottom:766.334700px;}
.y6_c00173{bottom:856.316700px;}
.y5_c00173{bottom:886.322700px;}
.y4_c00173{bottom:916.328700px;}
.y3_c00173{bottom:946.334700px;}
.y2_c00173{bottom:1006.334700px;}
.h2_c00173{height:54.000000px;}
.h4_c00173{height:64.800000px;}
.h3_c00173{height:78.540000px;}
.h0_c00173{height:1262.835000px;}
.h1_c00173{height:1263.000000px;}
.w0_c00173{width:892.914000px;}
.w1_c00173{width:893.250000px;}
.x0_c00173{left:0.000000px;}
.x2_c00173{left:90.000000px;}
.x3_c00173{left:106.500000px;}
.x1_c00173{left:791.288850px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls2_c00173{letter-spacing:-3.200000pt;}
.ls3_c00173{letter-spacing:0.000000pt;}
.ls0_c00173{letter-spacing:0.640000pt;}
.ls1_c00173{letter-spacing:0.746667pt;}
.ws0_c00173{word-spacing:-5.866667pt;}
.ws3_c00173{word-spacing:-4.352000pt;}
.ws6_c00173{word-spacing:-2.752000pt;}
.ws4_c00173{word-spacing:-1.920000pt;}
.ws2_c00173{word-spacing:-0.746667pt;}
.ws1_c00173{word-spacing:0.000000pt;}
.ws5_c00173{word-spacing:1.024000pt;}
.ws9_c00173{word-spacing:2.048000pt;}
.wsc_c00173{word-spacing:2.112000pt;}
.wsb_c00173{word-spacing:2.624000pt;}
.wsa_c00173{word-spacing:5.568000pt;}
.ws7_c00173{word-spacing:5.952000pt;}
.ws8_c00173{word-spacing:17.536000pt;}
._1_c00173{margin-left:-423.766400pt;}
._4_c00173{margin-left:-5.216000pt;}
._2_c00173{margin-left:-3.733333pt;}
._3_c00173{margin-left:-1.312000pt;}
._5_c00173{width:1.779200pt;}
._0_c00173{width:3.200000pt;}
.fs1_c00173{font-size:37.333333pt;}
.fs0_c00173{font-size:53.333333pt;}
.fs3_c00173{font-size:64.000000pt;}
.fs2_c00173{font-size:74.666667pt;}
.y0_c00173{bottom:0.000000pt;}
.y1_c00173{bottom:36.666667pt;}
.ye_c00173{bottom:467.821067pt;}
.yd_c00173{bottom:494.493067pt;}
.yc_c00173{bottom:521.165067pt;}
.yb_c00173{bottom:547.837067pt;}
.ya_c00173{bottom:574.509067pt;}
.y9_c00173{bottom:601.181067pt;}
.y8_c00173{bottom:627.853067pt;}
.y7_c00173{bottom:681.186400pt;}
.y6_c00173{bottom:761.170400pt;}
.y5_c00173{bottom:787.842400pt;}
.y4_c00173{bottom:814.514400pt;}
.y3_c00173{bottom:841.186400pt;}
.y2_c00173{bottom:894.519733pt;}
.h2_c00173{height:48.000000pt;}
.h4_c00173{height:57.600000pt;}
.h3_c00173{height:69.813333pt;}
.h0_c00173{height:1122.520000pt;}
.h1_c00173{height:1122.666667pt;}
.w0_c00173{width:793.701333pt;}
.w1_c00173{width:794.000000pt;}
.x0_c00173{left:0.000000pt;}
.x2_c00173{left:80.000000pt;}
.x3_c00173{left:94.666667pt;}
.x1_c00173{left:703.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.160000;font-style:normal;font-weight:normal;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_d071661ec5c75d861a68aa6b.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00174;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:1.155000;font-style: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);}
.m1_c00174{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.ls2_c00174{letter-spacing:0.000000px;}
.ls0_c00174{letter-spacing:0.864000px;}
.ls1_c00174{letter-spacing:1.200000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00174{word-spacing:-13.104000px;}
.ws0_c00174{word-spacing:-10.200000px;}
.ws7_c00174{word-spacing:-8.064000px;}
.ws6_c00174{word-spacing:-6.840000px;}
.ws3_c00174{word-spacing:-5.904000px;}
.ws5_c00174{word-spacing:-2.952000px;}
.ws4_c00174{word-spacing:-0.864000px;}
.ws2_c00174{word-spacing:0.000000px;}
._0_c00174{margin-left:-480.336600px;}
._3_c00174{margin-left:-10.800000px;}
._5_c00174{margin-left:-9.000000px;}
._1_c00174{margin-left:-4.200000px;}
._4_c00174{margin-left:-2.760000px;}
._2_c00174{margin-left:-1.440000px;}
.fc3_c00174{color:rgb(255,255,255);}
.fc2_c00174{color:rgb(233,83,14);}
.fc1_c00174{color:rgb(232,86,17);}
.fc0_c00174{color:rgb(60,60,59);}
.fs1_c00174{font-size:42.000000px;}
.fs0_c00174{font-size:60.000000px;}
.fs3_c00174{font-size:72.000000px;}
.fs4_c00174{font-size:120.000000px;}
.fs2_c00174{font-size:360.000000px;}
.y0_c00174{bottom:0.000000px;}
.y1_c00174{bottom:41.250000px;}
.y13_c00174{bottom:283.250700px;}
.y12_c00174{bottom:304.256700px;}
.y11_c00174{bottom:325.262700px;}
.y10_c00174{bottom:346.268700px;}
.yf_c00174{bottom:403.274700px;}
.ye_c00174{bottom:424.280700px;}
.yd_c00174{bottom:445.286700px;}
.yc_c00174{bottom:466.292700px;}
.yb_c00174{bottom:523.298700px;}
.ya_c00174{bottom:544.304700px;}
.y9_c00174{bottom:565.310700px;}
.y8_c00174{bottom:586.316700px;}
.y7_c00174{bottom:643.322700px;}
.y6_c00174{bottom:664.328700px;}
.y5_c00174{bottom:685.334700px;}
.y4_c00174{bottom:706.340700px;}
.y3_c00174{bottom:752.834700px;}
.y17_c00174{bottom:916.334700px;}
.y16_c00174{bottom:946.334700px;}
.y15_c00174{bottom:976.334700px;}
.y14_c00174{bottom:1006.334700px;}
.y2_c00174{bottom:1093.526700px;}
.h2_c00174{height:54.000000px;}
.h5_c00174{height:64.800000px;}
.h4_c00174{height:66.456000px;}
.h6_c00174{height:112.200000px;}
.h3_c00174{height:324.000000px;}
.h0_c00174{height:1262.835000px;}
.h1_c00174{height:1263.000000px;}
.w0_c00174{width:892.914000px;}
.w1_c00174{width:893.250000px;}
.x0_c00174{left:0.000000px;}
.x2_c00174{left:81.290250px;}
.x3_c00174{left:82.393650px;}
.x5_c00174{left:112.287450px;}
.x4_c00174{left:127.393650px;}
.x1_c00174{left:791.438700px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls2_c00174{letter-spacing:0.000000pt;}
.ls0_c00174{letter-spacing:0.768000pt;}
.ls1_c00174{letter-spacing:1.066667pt;}
.ws1_c00174{word-spacing:-11.648000pt;}
.ws0_c00174{word-spacing:-9.066667pt;}
.ws7_c00174{word-spacing:-7.168000pt;}
.ws6_c00174{word-spacing:-6.080000pt;}
.ws3_c00174{word-spacing:-5.248000pt;}
.ws5_c00174{word-spacing:-2.624000pt;}
.ws4_c00174{word-spacing:-0.768000pt;}
.ws2_c00174{word-spacing:0.000000pt;}
._0_c00174{margin-left:-426.965867pt;}
._3_c00174{margin-left:-9.600000pt;}
._5_c00174{margin-left:-8.000000pt;}
._1_c00174{margin-left:-3.733333pt;}
._4_c00174{margin-left:-2.453333pt;}
._2_c00174{margin-left:-1.280000pt;}
.fs1_c00174{font-size:37.333333pt;}
.fs0_c00174{font-size:53.333333pt;}
.fs3_c00174{font-size:64.000000pt;}
.fs4_c00174{font-size:106.666667pt;}
.fs2_c00174{font-size:320.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y1_c00174{bottom:36.666667pt;}
.y13_c00174{bottom:251.778400pt;}
.y12_c00174{bottom:270.450400pt;}
.y11_c00174{bottom:289.122400pt;}
.y10_c00174{bottom:307.794400pt;}
.yf_c00174{bottom:358.466400pt;}
.ye_c00174{bottom:377.138400pt;}
.yd_c00174{bottom:395.810400pt;}
.yc_c00174{bottom:414.482400pt;}
.yb_c00174{bottom:465.154400pt;}
.ya_c00174{bottom:483.826400pt;}
.y9_c00174{bottom:502.498400pt;}
.y8_c00174{bottom:521.170400pt;}
.y7_c00174{bottom:571.842400pt;}
.y6_c00174{bottom:590.514400pt;}
.y5_c00174{bottom:609.186400pt;}
.y4_c00174{bottom:627.858400pt;}
.y3_c00174{bottom:669.186400pt;}
.y17_c00174{bottom:814.519733pt;}
.y16_c00174{bottom:841.186400pt;}
.y15_c00174{bottom:867.853067pt;}
.y14_c00174{bottom:894.519733pt;}
.y2_c00174{bottom:972.023733pt;}
.h2_c00174{height:48.000000pt;}
.h5_c00174{height:57.600000pt;}
.h4_c00174{height:59.072000pt;}
.h6_c00174{height:99.733333pt;}
.h3_c00174{height:288.000000pt;}
.h0_c00174{height:1122.520000pt;}
.h1_c00174{height:1122.666667pt;}
.w0_c00174{width:793.701333pt;}
.w1_c00174{width:794.000000pt;}
.x0_c00174{left:0.000000pt;}
.x2_c00174{left:72.258000pt;}
.x3_c00174{left:73.238800pt;}
.x5_c00174{left:99.811067pt;}
.x4_c00174{left:113.238800pt;}
.x1_c00174{left:703.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.199000;font-style:normal;font-weight:normal;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_cce1acd28a01bf8bf86ac4f7.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00175;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;line-height:1.161000;font-style: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);}
.m1_c00175{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls6_c00175{letter-spacing:-0.540000px;}
.ls5_c00175{letter-spacing:0.000000px;}
.ls0_c00175{letter-spacing:0.720000px;}
.ls2_c00175{letter-spacing:0.792000px;}
.ls1_c00175{letter-spacing:0.864000px;}
.ls4_c00175{letter-spacing:1.500000px;}
.ls3_c00175{letter-spacing:1.650000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00175{word-spacing:-21.060000px;}
.ws0_c00175{word-spacing:-10.200000px;}
.ws17_c00175{word-spacing:-2.520000px;}
.ws3_c00175{word-spacing:-1.872000px;}
.ws1c_c00175{word-spacing:-1.656000px;}
.ws1d_c00175{word-spacing:-1.500000px;}
.ws1a_c00175{word-spacing:-1.296000px;}
.ws5_c00175{word-spacing:-1.152000px;}
.ws8_c00175{word-spacing:-0.432000px;}
.ws6_c00175{word-spacing:-0.288000px;}
.ws2_c00175{word-spacing:0.000000px;}
.ws7_c00175{word-spacing:0.792000px;}
.wsf_c00175{word-spacing:1.584000px;}
.wsd_c00175{word-spacing:1.944000px;}
.ws4_c00175{word-spacing:2.736000px;}
.ws9_c00175{word-spacing:4.032000px;}
.ws16_c00175{word-spacing:4.608000px;}
.ws14_c00175{word-spacing:5.040000px;}
.ws1b_c00175{word-spacing:5.328000px;}
.ws11_c00175{word-spacing:5.472000px;}
.ws15_c00175{word-spacing:6.264000px;}
.ws12_c00175{word-spacing:7.704000px;}
.wse_c00175{word-spacing:8.280000px;}
.ws13_c00175{word-spacing:8.496000px;}
.wsc_c00175{word-spacing:8.784000px;}
.ws10_c00175{word-spacing:9.288000px;}
.ws19_c00175{word-spacing:12.600000px;}
.ws18_c00175{word-spacing:13.104000px;}
.wsa_c00175{word-spacing:15.120000px;}
.wsb_c00175{word-spacing:17.136000px;}
._0_c00175{margin-left:-480.337200px;}
._3_c00175{margin-left:-6.472800px;}
._1_c00175{margin-left:-4.200000px;}
._4_c00175{margin-left:-2.460000px;}
._2_c00175{margin-left:-1.440000px;}
.fc3_c00175{color:rgb(32,32,32);}
.fc2_c00175{color:rgb(233,83,14);}
.fc1_c00175{color:rgb(232,86,17);}
.fc4_c00175{color:rgb(157,157,156);}
.fc0_c00175{color:rgb(60,60,59);}
.fs1_c00175{font-size:42.000000px;}
.fs0_c00175{font-size:60.000000px;}
.fs4_c00175{font-size:66.000000px;}
.fs3_c00175{font-size:72.000000px;}
.fs2_c00175{font-size:108.000000px;}
.y0_c00175{bottom:0.000000px;}
.y1_c00175{bottom:41.250000px;}
.y1e_c00175{bottom:136.172700px;}
.y1d_c00175{bottom:166.178700px;}
.y1c_c00175{bottom:196.184700px;}
.y1b_c00175{bottom:226.190700px;}
.y1a_c00175{bottom:256.196700px;}
.y19_c00175{bottom:286.202700px;}
.y18_c00175{bottom:316.208700px;}
.y17_c00175{bottom:346.214700px;}
.y16_c00175{bottom:376.220700px;}
.y15_c00175{bottom:406.226700px;}
.y14_c00175{bottom:436.232700px;}
.y13_c00175{bottom:466.238700px;}
.y12_c00175{bottom:496.244700px;}
.y11_c00175{bottom:526.250700px;}
.y10_c00175{bottom:556.256700px;}
.yf_c00175{bottom:586.262700px;}
.ye_c00175{bottom:616.268700px;}
.yd_c00175{bottom:646.274700px;}
.yc_c00175{bottom:676.280700px;}
.yb_c00175{bottom:706.286700px;}
.ya_c00175{bottom:736.292700px;}
.y9_c00175{bottom:766.298700px;}
.y8_c00175{bottom:796.304700px;}
.y24_c00175{bottom:796.334700px;}
.y7_c00175{bottom:826.310700px;}
.y23_c00175{bottom:826.334700px;}
.y6_c00175{bottom:856.316700px;}
.y22_c00175{bottom:856.334700px;}
.y5_c00175{bottom:886.322700px;}
.y21_c00175{bottom:886.334700px;}
.y4_c00175{bottom:916.328700px;}
.y20_c00175{bottom:916.334700px;}
.y3_c00175{bottom:946.334700px;}
.y1f_c00175{bottom:947.069850px;}
.y2_c00175{bottom:1006.334700px;}
.h5_c00175{height:50.292000px;}
.h2_c00175{height:54.000000px;}
.h4_c00175{height:64.800000px;}
.h3_c00175{height:100.980000px;}
.h0_c00175{height:1262.835000px;}
.h1_c00175{height:1263.000000px;}
.w0_c00175{width:892.914000px;}
.w1_c00175{width:893.250000px;}
.x0_c00175{left:0.000000px;}
.x2_c00175{left:82.500000px;}
.x3_c00175{left:106.500000px;}
.x4_c00175{left:675.611100px;}
.x1_c00175{left:790.313850px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls6_c00175{letter-spacing:-0.480000pt;}
.ls5_c00175{letter-spacing:0.000000pt;}
.ls0_c00175{letter-spacing:0.640000pt;}
.ls2_c00175{letter-spacing:0.704000pt;}
.ls1_c00175{letter-spacing:0.768000pt;}
.ls4_c00175{letter-spacing:1.333333pt;}
.ls3_c00175{letter-spacing:1.466667pt;}
.ws1_c00175{word-spacing:-18.720000pt;}
.ws0_c00175{word-spacing:-9.066667pt;}
.ws17_c00175{word-spacing:-2.240000pt;}
.ws3_c00175{word-spacing:-1.664000pt;}
.ws1c_c00175{word-spacing:-1.472000pt;}
.ws1d_c00175{word-spacing:-1.333333pt;}
.ws1a_c00175{word-spacing:-1.152000pt;}
.ws5_c00175{word-spacing:-1.024000pt;}
.ws8_c00175{word-spacing:-0.384000pt;}
.ws6_c00175{word-spacing:-0.256000pt;}
.ws2_c00175{word-spacing:0.000000pt;}
.ws7_c00175{word-spacing:0.704000pt;}
.wsf_c00175{word-spacing:1.408000pt;}
.wsd_c00175{word-spacing:1.728000pt;}
.ws4_c00175{word-spacing:2.432000pt;}
.ws9_c00175{word-spacing:3.584000pt;}
.ws16_c00175{word-spacing:4.096000pt;}
.ws14_c00175{word-spacing:4.480000pt;}
.ws1b_c00175{word-spacing:4.736000pt;}
.ws11_c00175{word-spacing:4.864000pt;}
.ws15_c00175{word-spacing:5.568000pt;}
.ws12_c00175{word-spacing:6.848000pt;}
.wse_c00175{word-spacing:7.360000pt;}
.ws13_c00175{word-spacing:7.552000pt;}
.wsc_c00175{word-spacing:7.808000pt;}
.ws10_c00175{word-spacing:8.256000pt;}
.ws19_c00175{word-spacing:11.200000pt;}
.ws18_c00175{word-spacing:11.648000pt;}
.wsa_c00175{word-spacing:13.440000pt;}
.wsb_c00175{word-spacing:15.232000pt;}
._0_c00175{margin-left:-426.966400pt;}
._3_c00175{margin-left:-5.753600pt;}
._1_c00175{margin-left:-3.733333pt;}
._4_c00175{margin-left:-2.186667pt;}
._2_c00175{margin-left:-1.280000pt;}
.fs1_c00175{font-size:37.333333pt;}
.fs0_c00175{font-size:53.333333pt;}
.fs4_c00175{font-size:58.666667pt;}
.fs3_c00175{font-size:64.000000pt;}
.fs2_c00175{font-size:96.000000pt;}
.y0_c00175{bottom:0.000000pt;}
.y1_c00175{bottom:36.666667pt;}
.y1e_c00175{bottom:121.042400pt;}
.y1d_c00175{bottom:147.714400pt;}
.y1c_c00175{bottom:174.386400pt;}
.y1b_c00175{bottom:201.058400pt;}
.y1a_c00175{bottom:227.730400pt;}
.y19_c00175{bottom:254.402400pt;}
.y18_c00175{bottom:281.074400pt;}
.y17_c00175{bottom:307.746400pt;}
.y16_c00175{bottom:334.418400pt;}
.y15_c00175{bottom:361.090400pt;}
.y14_c00175{bottom:387.762400pt;}
.y13_c00175{bottom:414.434400pt;}
.y12_c00175{bottom:441.106400pt;}
.y11_c00175{bottom:467.778400pt;}
.y10_c00175{bottom:494.450400pt;}
.yf_c00175{bottom:521.122400pt;}
.ye_c00175{bottom:547.794400pt;}
.yd_c00175{bottom:574.466400pt;}
.yc_c00175{bottom:601.138400pt;}
.yb_c00175{bottom:627.810400pt;}
.ya_c00175{bottom:654.482400pt;}
.y9_c00175{bottom:681.154400pt;}
.y8_c00175{bottom:707.826400pt;}
.y24_c00175{bottom:707.853067pt;}
.y7_c00175{bottom:734.498400pt;}
.y23_c00175{bottom:734.519733pt;}
.y6_c00175{bottom:761.170400pt;}
.y22_c00175{bottom:761.186400pt;}
.y5_c00175{bottom:787.842400pt;}
.y21_c00175{bottom:787.853067pt;}
.y4_c00175{bottom:814.514400pt;}
.y20_c00175{bottom:814.519733pt;}
.y3_c00175{bottom:841.186400pt;}
.y1f_c00175{bottom:841.839867pt;}
.y2_c00175{bottom:894.519733pt;}
.h5_c00175{height:44.704000pt;}
.h2_c00175{height:48.000000pt;}
.h4_c00175{height:57.600000pt;}
.h3_c00175{height:89.760000pt;}
.h0_c00175{height:1122.520000pt;}
.h1_c00175{height:1122.666667pt;}
.w0_c00175{width:793.701333pt;}
.w1_c00175{width:794.000000pt;}
.x0_c00175{left:0.000000pt;}
.x2_c00175{left:73.333333pt;}
.x3_c00175{left:94.666667pt;}
.x4_c00175{left:600.543200pt;}
.x1_c00175{left:702.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_73c7dea85163a337c1490c92.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00176;src:url('chunks/assets/font_cce1acd28a01bf8bf86ac4f7.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00176;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:1.161000;font-style: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);}
.m1_c00176{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls5_c00176{letter-spacing:-0.324000px;}
.ls4_c00176{letter-spacing:0.000000px;}
.ls0_c00176{letter-spacing:0.720000px;}
.ls1_c00176{letter-spacing:0.792000px;}
.ls3_c00176{letter-spacing:1.500000px;}
.ls2_c00176{letter-spacing:1.650000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00176{word-spacing:-21.276000px;}
.ws2_c00176{word-spacing:-14.850000px;}
.ws0_c00176{word-spacing:-10.200000px;}
.ws4_c00176{word-spacing:-2.952000px;}
.wsb_c00176{word-spacing:-1.656000px;}
.ws1d_c00176{word-spacing:-1.500000px;}
.ws1c_c00176{word-spacing:-1.380000px;}
.wsd_c00176{word-spacing:-1.224000px;}
.ws17_c00176{word-spacing:-0.072000px;}
.ws3_c00176{word-spacing:0.000000px;}
.ws15_c00176{word-spacing:0.216000px;}
.ws11_c00176{word-spacing:0.432000px;}
.ws5_c00176{word-spacing:1.080000px;}
.ws1a_c00176{word-spacing:1.728000px;}
.ws14_c00176{word-spacing:1.944000px;}
.ws1b_c00176{word-spacing:2.304000px;}
.wsf_c00176{word-spacing:2.520000px;}
.ws19_c00176{word-spacing:3.096000px;}
.ws6_c00176{word-spacing:3.816000px;}
.wsc_c00176{word-spacing:4.032000px;}
.ws18_c00176{word-spacing:5.112000px;}
.wse_c00176{word-spacing:7.200000px;}
.ws9_c00176{word-spacing:8.928000px;}
.ws10_c00176{word-spacing:9.504000px;}
.ws16_c00176{word-spacing:10.008000px;}
.ws12_c00176{word-spacing:11.664000px;}
.ws13_c00176{word-spacing:12.096000px;}
.ws7_c00176{word-spacing:15.552000px;}
.wsa_c00176{word-spacing:16.272000px;}
.ws8_c00176{word-spacing:19.080000px;}
._0_c00176{margin-left:-480.336600px;}
._3_c00176{margin-left:-6.220800px;}
._1_c00176{margin-left:-4.200000px;}
._4_c00176{margin-left:-2.160000px;}
._2_c00176{margin-left:-1.134000px;}
._5_c00176{width:5.108400px;}
.fc3_c00176{color:rgb(32,32,32);}
.fc2_c00176{color:rgb(233,83,14);}
.fc1_c00176{color:rgb(232,86,17);}
.fc4_c00176{color:rgb(157,157,156);}
.fc0_c00176{color:rgb(60,60,59);}
.fs1_c00176{font-size:42.000000px;}
.fs0_c00176{font-size:60.000000px;}
.fs4_c00176{font-size:66.000000px;}
.fs3_c00176{font-size:72.000000px;}
.fs2_c00176{font-size:108.000000px;}
.y0_c00176{bottom:0.000000px;}
.y1_c00176{bottom:41.250000px;}
.y1c_c00176{bottom:196.184700px;}
.y1b_c00176{bottom:226.190700px;}
.y1a_c00176{bottom:256.196700px;}
.y19_c00176{bottom:286.202700px;}
.y18_c00176{bottom:316.208700px;}
.y17_c00176{bottom:346.214700px;}
.y16_c00176{bottom:376.220700px;}
.y15_c00176{bottom:406.226700px;}
.y14_c00176{bottom:436.232700px;}
.y13_c00176{bottom:466.238700px;}
.y12_c00176{bottom:496.244700px;}
.y11_c00176{bottom:526.250700px;}
.y10_c00176{bottom:556.256700px;}
.yf_c00176{bottom:586.262700px;}
.ye_c00176{bottom:616.268700px;}
.yd_c00176{bottom:646.274700px;}
.yc_c00176{bottom:676.280700px;}
.yb_c00176{bottom:706.286700px;}
.ya_c00176{bottom:736.292700px;}
.y9_c00176{bottom:766.298700px;}
.y8_c00176{bottom:796.304700px;}
.y22_c00176{bottom:796.334700px;}
.y7_c00176{bottom:826.310700px;}
.y21_c00176{bottom:826.334700px;}
.y6_c00176{bottom:856.316700px;}
.y20_c00176{bottom:856.334700px;}
.y5_c00176{bottom:886.322700px;}
.y1f_c00176{bottom:886.334700px;}
.y4_c00176{bottom:916.328700px;}
.y1e_c00176{bottom:916.334700px;}
.y3_c00176{bottom:946.334700px;}
.y1d_c00176{bottom:947.069850px;}
.y2_c00176{bottom:1006.334700px;}
.h5_c00176{height:50.292000px;}
.h2_c00176{height:54.000000px;}
.h4_c00176{height:64.800000px;}
.h3_c00176{height:100.980000px;}
.h0_c00176{height:1262.835000px;}
.h1_c00176{height:1263.000000px;}
.w0_c00176{width:892.914000px;}
.w1_c00176{width:893.250000px;}
.x0_c00176{left:0.000000px;}
.x2_c00176{left:82.500000px;}
.x3_c00176{left:106.500000px;}
.x4_c00176{left:675.611100px;}
.x1_c00176{left:792.413700px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls5_c00176{letter-spacing:-0.288000pt;}
.ls4_c00176{letter-spacing:0.000000pt;}
.ls0_c00176{letter-spacing:0.640000pt;}
.ls1_c00176{letter-spacing:0.704000pt;}
.ls3_c00176{letter-spacing:1.333333pt;}
.ls2_c00176{letter-spacing:1.466667pt;}
.ws1_c00176{word-spacing:-18.912000pt;}
.ws2_c00176{word-spacing:-13.200000pt;}
.ws0_c00176{word-spacing:-9.066667pt;}
.ws4_c00176{word-spacing:-2.624000pt;}
.wsb_c00176{word-spacing:-1.472000pt;}
.ws1d_c00176{word-spacing:-1.333333pt;}
.ws1c_c00176{word-spacing:-1.226667pt;}
.wsd_c00176{word-spacing:-1.088000pt;}
.ws17_c00176{word-spacing:-0.064000pt;}
.ws3_c00176{word-spacing:0.000000pt;}
.ws15_c00176{word-spacing:0.192000pt;}
.ws11_c00176{word-spacing:0.384000pt;}
.ws5_c00176{word-spacing:0.960000pt;}
.ws1a_c00176{word-spacing:1.536000pt;}
.ws14_c00176{word-spacing:1.728000pt;}
.ws1b_c00176{word-spacing:2.048000pt;}
.wsf_c00176{word-spacing:2.240000pt;}
.ws19_c00176{word-spacing:2.752000pt;}
.ws6_c00176{word-spacing:3.392000pt;}
.wsc_c00176{word-spacing:3.584000pt;}
.ws18_c00176{word-spacing:4.544000pt;}
.wse_c00176{word-spacing:6.400000pt;}
.ws9_c00176{word-spacing:7.936000pt;}
.ws10_c00176{word-spacing:8.448000pt;}
.ws16_c00176{word-spacing:8.896000pt;}
.ws12_c00176{word-spacing:10.368000pt;}
.ws13_c00176{word-spacing:10.752000pt;}
.ws7_c00176{word-spacing:13.824000pt;}
.wsa_c00176{word-spacing:14.464000pt;}
.ws8_c00176{word-spacing:16.960000pt;}
._0_c00176{margin-left:-426.965867pt;}
._3_c00176{margin-left:-5.529600pt;}
._1_c00176{margin-left:-3.733333pt;}
._4_c00176{margin-left:-1.920000pt;}
._2_c00176{margin-left:-1.008000pt;}
._5_c00176{width:4.540800pt;}
.fs1_c00176{font-size:37.333333pt;}
.fs0_c00176{font-size:53.333333pt;}
.fs4_c00176{font-size:58.666667pt;}
.fs3_c00176{font-size:64.000000pt;}
.fs2_c00176{font-size:96.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y1_c00176{bottom:36.666667pt;}
.y1c_c00176{bottom:174.386400pt;}
.y1b_c00176{bottom:201.058400pt;}
.y1a_c00176{bottom:227.730400pt;}
.y19_c00176{bottom:254.402400pt;}
.y18_c00176{bottom:281.074400pt;}
.y17_c00176{bottom:307.746400pt;}
.y16_c00176{bottom:334.418400pt;}
.y15_c00176{bottom:361.090400pt;}
.y14_c00176{bottom:387.762400pt;}
.y13_c00176{bottom:414.434400pt;}
.y12_c00176{bottom:441.106400pt;}
.y11_c00176{bottom:467.778400pt;}
.y10_c00176{bottom:494.450400pt;}
.yf_c00176{bottom:521.122400pt;}
.ye_c00176{bottom:547.794400pt;}
.yd_c00176{bottom:574.466400pt;}
.yc_c00176{bottom:601.138400pt;}
.yb_c00176{bottom:627.810400pt;}
.ya_c00176{bottom:654.482400pt;}
.y9_c00176{bottom:681.154400pt;}
.y8_c00176{bottom:707.826400pt;}
.y22_c00176{bottom:707.853067pt;}
.y7_c00176{bottom:734.498400pt;}
.y21_c00176{bottom:734.519733pt;}
.y6_c00176{bottom:761.170400pt;}
.y20_c00176{bottom:761.186400pt;}
.y5_c00176{bottom:787.842400pt;}
.y1f_c00176{bottom:787.853067pt;}
.y4_c00176{bottom:814.514400pt;}
.y1e_c00176{bottom:814.519733pt;}
.y3_c00176{bottom:841.186400pt;}
.y1d_c00176{bottom:841.839867pt;}
.y2_c00176{bottom:894.519733pt;}
.h5_c00176{height:44.704000pt;}
.h2_c00176{height:48.000000pt;}
.h4_c00176{height:57.600000pt;}
.h3_c00176{height:89.760000pt;}
.h0_c00176{height:1122.520000pt;}
.h1_c00176{height:1122.666667pt;}
.w0_c00176{width:793.701333pt;}
.w1_c00176{width:794.000000pt;}
.x0_c00176{left:0.000000pt;}
.x2_c00176{left:73.333333pt;}
.x3_c00176{left:94.666667pt;}
.x4_c00176{left:600.543200pt;}
.x1_c00176{left:704.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.160000;font-style:normal;font-weight:normal;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_d071661ec5c75d861a68aa6b.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00177;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:1.155000;font-style: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);}
.m1_c00177{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls2_c00177{letter-spacing:0.000000px;}
.ls0_c00177{letter-spacing:0.864000px;}
.ls1_c00177{letter-spacing:1.200000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00177{word-spacing:-13.104000px;}
.ws0_c00177{word-spacing:-10.200000px;}
.ws3_c00177{word-spacing:-8.064000px;}
.ws9_c00177{word-spacing:-7.560000px;}
.ws6_c00177{word-spacing:-6.840000px;}
.ws7_c00177{word-spacing:-5.904000px;}
.ws5_c00177{word-spacing:-2.952000px;}
.ws8_c00177{word-spacing:-2.400000px;}
.ws4_c00177{word-spacing:-0.864000px;}
.ws2_c00177{word-spacing:0.000000px;}
._0_c00177{margin-left:-480.337200px;}
._3_c00177{margin-left:-9.720000px;}
._7_c00177{margin-left:-6.120000px;}
._1_c00177{margin-left:-4.200000px;}
._6_c00177{margin-left:-3.000000px;}
._2_c00177{margin-left:-1.440000px;}
._4_c00177{width:2.400000px;}
._5_c00177{width:7.560000px;}
.fc3_c00177{color:rgb(255,255,255);}
.fc2_c00177{color:rgb(233,83,14);}
.fc1_c00177{color:rgb(232,86,17);}
.fc0_c00177{color:rgb(60,60,59);}
.fs1_c00177{font-size:42.000000px;}
.fs0_c00177{font-size:60.000000px;}
.fs3_c00177{font-size:72.000000px;}
.fs4_c00177{font-size:120.000000px;}
.fs2_c00177{font-size:360.000000px;}
.y0_c00177{bottom:0.000000px;}
.y1_c00177{bottom:41.250000px;}
.yf_c00177{bottom:394.274700px;}
.ye_c00177{bottom:415.280700px;}
.yd_c00177{bottom:436.286700px;}
.yc_c00177{bottom:484.292700px;}
.yb_c00177{bottom:505.298700px;}
.ya_c00177{bottom:526.304700px;}
.y9_c00177{bottom:574.310700px;}
.y8_c00177{bottom:595.316700px;}
.y7_c00177{bottom:616.322700px;}
.y6_c00177{bottom:664.328700px;}
.y5_c00177{bottom:685.334700px;}
.y4_c00177{bottom:706.340700px;}
.y3_c00177{bottom:752.834700px;}
.y14_c00177{bottom:886.334700px;}
.y13_c00177{bottom:916.334700px;}
.y12_c00177{bottom:946.334700px;}
.y11_c00177{bottom:976.334700px;}
.y10_c00177{bottom:1006.334700px;}
.y2_c00177{bottom:1093.526700px;}
.h2_c00177{height:54.000000px;}
.h5_c00177{height:64.800000px;}
.h4_c00177{height:66.456000px;}
.h6_c00177{height:112.200000px;}
.h3_c00177{height:324.000000px;}
.h0_c00177{height:1262.835000px;}
.h1_c00177{height:1263.000000px;}
.w0_c00177{width:892.914000px;}
.w1_c00177{width:893.250000px;}
.x0_c00177{left:0.000000px;}
.x2_c00177{left:81.290250px;}
.x3_c00177{left:82.393650px;}
.x5_c00177{left:112.287450px;}
.x4_c00177{left:127.393650px;}
.x1_c00177{left:790.388850px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls2_c00177{letter-spacing:0.000000pt;}
.ls0_c00177{letter-spacing:0.768000pt;}
.ls1_c00177{letter-spacing:1.066667pt;}
.ws1_c00177{word-spacing:-11.648000pt;}
.ws0_c00177{word-spacing:-9.066667pt;}
.ws3_c00177{word-spacing:-7.168000pt;}
.ws9_c00177{word-spacing:-6.720000pt;}
.ws6_c00177{word-spacing:-6.080000pt;}
.ws7_c00177{word-spacing:-5.248000pt;}
.ws5_c00177{word-spacing:-2.624000pt;}
.ws8_c00177{word-spacing:-2.133333pt;}
.ws4_c00177{word-spacing:-0.768000pt;}
.ws2_c00177{word-spacing:0.000000pt;}
._0_c00177{margin-left:-426.966400pt;}
._3_c00177{margin-left:-8.640000pt;}
._7_c00177{margin-left:-5.440000pt;}
._1_c00177{margin-left:-3.733333pt;}
._6_c00177{margin-left:-2.666667pt;}
._2_c00177{margin-left:-1.280000pt;}
._4_c00177{width:2.133333pt;}
._5_c00177{width:6.720000pt;}
.fs1_c00177{font-size:37.333333pt;}
.fs0_c00177{font-size:53.333333pt;}
.fs3_c00177{font-size:64.000000pt;}
.fs4_c00177{font-size:106.666667pt;}
.fs2_c00177{font-size:320.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y1_c00177{bottom:36.666667pt;}
.yf_c00177{bottom:350.466400pt;}
.ye_c00177{bottom:369.138400pt;}
.yd_c00177{bottom:387.810400pt;}
.yc_c00177{bottom:430.482400pt;}
.yb_c00177{bottom:449.154400pt;}
.ya_c00177{bottom:467.826400pt;}
.y9_c00177{bottom:510.498400pt;}
.y8_c00177{bottom:529.170400pt;}
.y7_c00177{bottom:547.842400pt;}
.y6_c00177{bottom:590.514400pt;}
.y5_c00177{bottom:609.186400pt;}
.y4_c00177{bottom:627.858400pt;}
.y3_c00177{bottom:669.186400pt;}
.y14_c00177{bottom:787.853067pt;}
.y13_c00177{bottom:814.519733pt;}
.y12_c00177{bottom:841.186400pt;}
.y11_c00177{bottom:867.853067pt;}
.y10_c00177{bottom:894.519733pt;}
.y2_c00177{bottom:972.023733pt;}
.h2_c00177{height:48.000000pt;}
.h5_c00177{height:57.600000pt;}
.h4_c00177{height:59.072000pt;}
.h6_c00177{height:99.733333pt;}
.h3_c00177{height:288.000000pt;}
.h0_c00177{height:1122.520000pt;}
.h1_c00177{height:1122.666667pt;}
.w0_c00177{width:793.701333pt;}
.w1_c00177{width:794.000000pt;}
.x0_c00177{left:0.000000pt;}
.x2_c00177{left:72.258000pt;}
.x3_c00177{left:73.238800pt;}
.x5_c00177{left:99.811067pt;}
.x4_c00177{left:113.238800pt;}
.x1_c00177{left:702.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00178;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.161000;font-style: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);}
.m1_c00178{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls5_c00178{letter-spacing:-0.540000px;}
.ls4_c00178{letter-spacing:0.000000px;}
.ls0_c00178{letter-spacing:0.720000px;}
.ls1_c00178{letter-spacing:0.840000px;}
.ls3_c00178{letter-spacing:1.500000px;}
.ls2_c00178{letter-spacing:1.650000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00178{word-spacing:-21.060000px;}
.ws3_c00178{word-spacing:-17.640000px;}
.ws2_c00178{word-spacing:-12.960000px;}
.ws4_c00178{word-spacing:-11.700000px;}
.ws0_c00178{word-spacing:-10.200000px;}
.ws7_c00178{word-spacing:-6.480000px;}
.ws14_c00178{word-spacing:-3.960000px;}
.ws16_c00178{word-spacing:-2.304000px;}
.ws17_c00178{word-spacing:-1.500000px;}
.ws6_c00178{word-spacing:-0.840000px;}
.wsb_c00178{word-spacing:-0.216000px;}
.ws5_c00178{word-spacing:0.000000px;}
.wsf_c00178{word-spacing:1.584000px;}
.ws8_c00178{word-spacing:3.312000px;}
.ws15_c00178{word-spacing:4.104000px;}
.ws10_c00178{word-spacing:4.536000px;}
.wsa_c00178{word-spacing:5.760000px;}
.wsd_c00178{word-spacing:6.336000px;}
.ws9_c00178{word-spacing:6.480000px;}
.ws11_c00178{word-spacing:6.768000px;}
.wse_c00178{word-spacing:7.632000px;}
.ws12_c00178{word-spacing:9.000000px;}
.wsc_c00178{word-spacing:16.128000px;}
.ws13_c00178{word-spacing:21.312000px;}
._0_c00178{margin-left:-480.337200px;}
._8_c00178{margin-left:-5.481600px;}
._1_c00178{margin-left:-4.200000px;}
._4_c00178{margin-left:-2.256000px;}
._2_c00178{margin-left:-1.171200px;}
._3_c00178{width:1.029600px;}
._5_c00178{width:2.671200px;}
._7_c00178{width:4.862400px;}
._6_c00178{width:6.566400px;}
.fc3_c00178{color:rgb(32,32,32);}
.fc2_c00178{color:rgb(233,83,14);}
.fc1_c00178{color:rgb(232,86,17);}
.fc4_c00178{color:rgb(157,157,156);}
.fc0_c00178{color:rgb(60,60,59);}
.fs1_c00178{font-size:42.000000px;}
.fs0_c00178{font-size:60.000000px;}
.fs5_c00178{font-size:66.000000px;}
.fs4_c00178{font-size:72.000000px;}
.fs3_c00178{font-size:84.000000px;}
.fs2_c00178{font-size:108.000000px;}
.y0_c00178{bottom:0.000000px;}
.y1_c00178{bottom:41.250000px;}
.y18_c00178{bottom:76.304700px;}
.y17_c00178{bottom:106.310700px;}
.y16_c00178{bottom:136.316700px;}
.y15_c00178{bottom:166.322700px;}
.y14_c00178{bottom:196.328700px;}
.y13_c00178{bottom:226.334700px;}
.y12_c00178{bottom:286.334700px;}
.y11_c00178{bottom:376.316700px;}
.y10_c00178{bottom:406.322700px;}
.yf_c00178{bottom:436.328700px;}
.ye_c00178{bottom:466.334700px;}
.yd_c00178{bottom:526.334700px;}
.yc_c00178{bottom:616.286700px;}
.yb_c00178{bottom:646.292700px;}
.ya_c00178{bottom:676.298700px;}
.y1e_c00178{bottom:705.947850px;}
.y9_c00178{bottom:706.304700px;}
.y1d_c00178{bottom:735.947850px;}
.y8_c00178{bottom:736.310700px;}
.y1c_c00178{bottom:765.947850px;}
.y7_c00178{bottom:766.316700px;}
.y1b_c00178{bottom:795.947850px;}
.y6_c00178{bottom:796.322700px;}
.y1a_c00178{bottom:825.947850px;}
.y5_c00178{bottom:826.328700px;}
.y19_c00178{bottom:855.947850px;}
.y4_c00178{bottom:856.334700px;}
.y3_c00178{bottom:916.334700px;}
.y2_c00178{bottom:1006.334700px;}
.h6_c00178{height:50.292000px;}
.h2_c00178{height:54.000000px;}
.h5_c00178{height:64.800000px;}
.h4_c00178{height:78.540000px;}
.h3_c00178{height:100.980000px;}
.h0_c00178{height:1262.835000px;}
.h1_c00178{height:1263.000000px;}
.w0_c00178{width:892.914000px;}
.w1_c00178{width:893.250000px;}
.x0_c00178{left:0.000000px;}
.x2_c00178{left:82.500000px;}
.x3_c00178{left:90.000000px;}
.x4_c00178{left:106.500000px;}
.x5_c00178{left:675.611100px;}
.x1_c00178{left:790.313850px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls5_c00178{letter-spacing:-0.480000pt;}
.ls4_c00178{letter-spacing:0.000000pt;}
.ls0_c00178{letter-spacing:0.640000pt;}
.ls1_c00178{letter-spacing:0.746667pt;}
.ls3_c00178{letter-spacing:1.333333pt;}
.ls2_c00178{letter-spacing:1.466667pt;}
.ws1_c00178{word-spacing:-18.720000pt;}
.ws3_c00178{word-spacing:-15.680000pt;}
.ws2_c00178{word-spacing:-11.520000pt;}
.ws4_c00178{word-spacing:-10.400000pt;}
.ws0_c00178{word-spacing:-9.066667pt;}
.ws7_c00178{word-spacing:-5.760000pt;}
.ws14_c00178{word-spacing:-3.520000pt;}
.ws16_c00178{word-spacing:-2.048000pt;}
.ws17_c00178{word-spacing:-1.333333pt;}
.ws6_c00178{word-spacing:-0.746667pt;}
.wsb_c00178{word-spacing:-0.192000pt;}
.ws5_c00178{word-spacing:0.000000pt;}
.wsf_c00178{word-spacing:1.408000pt;}
.ws8_c00178{word-spacing:2.944000pt;}
.ws15_c00178{word-spacing:3.648000pt;}
.ws10_c00178{word-spacing:4.032000pt;}
.wsa_c00178{word-spacing:5.120000pt;}
.wsd_c00178{word-spacing:5.632000pt;}
.ws9_c00178{word-spacing:5.760000pt;}
.ws11_c00178{word-spacing:6.016000pt;}
.wse_c00178{word-spacing:6.784000pt;}
.ws12_c00178{word-spacing:8.000000pt;}
.wsc_c00178{word-spacing:14.336000pt;}
.ws13_c00178{word-spacing:18.944000pt;}
._0_c00178{margin-left:-426.966400pt;}
._8_c00178{margin-left:-4.872533pt;}
._1_c00178{margin-left:-3.733333pt;}
._4_c00178{margin-left:-2.005333pt;}
._2_c00178{margin-left:-1.041067pt;}
._3_c00178{width:0.915200pt;}
._5_c00178{width:2.374400pt;}
._7_c00178{width:4.322133pt;}
._6_c00178{width:5.836800pt;}
.fs1_c00178{font-size:37.333333pt;}
.fs0_c00178{font-size:53.333333pt;}
.fs5_c00178{font-size:58.666667pt;}
.fs4_c00178{font-size:64.000000pt;}
.fs3_c00178{font-size:74.666667pt;}
.fs2_c00178{font-size:96.000000pt;}
.y0_c00178{bottom:0.000000pt;}
.y1_c00178{bottom:36.666667pt;}
.y18_c00178{bottom:67.826400pt;}
.y17_c00178{bottom:94.498400pt;}
.y16_c00178{bottom:121.170400pt;}
.y15_c00178{bottom:147.842400pt;}
.y14_c00178{bottom:174.514400pt;}
.y13_c00178{bottom:201.186400pt;}
.y12_c00178{bottom:254.519733pt;}
.y11_c00178{bottom:334.503733pt;}
.y10_c00178{bottom:361.175733pt;}
.yf_c00178{bottom:387.847733pt;}
.ye_c00178{bottom:414.519733pt;}
.yd_c00178{bottom:467.853067pt;}
.yc_c00178{bottom:547.810400pt;}
.yb_c00178{bottom:574.482400pt;}
.ya_c00178{bottom:601.154400pt;}
.y1e_c00178{bottom:627.509200pt;}
.y9_c00178{bottom:627.826400pt;}
.y1d_c00178{bottom:654.175867pt;}
.y8_c00178{bottom:654.498400pt;}
.y1c_c00178{bottom:680.842533pt;}
.y7_c00178{bottom:681.170400pt;}
.y1b_c00178{bottom:707.509200pt;}
.y6_c00178{bottom:707.842400pt;}
.y1a_c00178{bottom:734.175867pt;}
.y5_c00178{bottom:734.514400pt;}
.y19_c00178{bottom:760.842533pt;}
.y4_c00178{bottom:761.186400pt;}
.y3_c00178{bottom:814.519733pt;}
.y2_c00178{bottom:894.519733pt;}
.h6_c00178{height:44.704000pt;}
.h2_c00178{height:48.000000pt;}
.h5_c00178{height:57.600000pt;}
.h4_c00178{height:69.813333pt;}
.h3_c00178{height:89.760000pt;}
.h0_c00178{height:1122.520000pt;}
.h1_c00178{height:1122.666667pt;}
.w0_c00178{width:793.701333pt;}
.w1_c00178{width:794.000000pt;}
.x0_c00178{left:0.000000pt;}
.x2_c00178{left:73.333333pt;}
.x3_c00178{left:80.000000pt;}
.x4_c00178{left:94.666667pt;}
.x5_c00178{left:600.543200pt;}
.x1_c00178{left:702.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.199000;font-style: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);}
.m1_c00179{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls1_c00179{letter-spacing:0.000000px;}
.ls0_c00179{letter-spacing:0.720000px;}
.ls2_c00179{letter-spacing:0.840000px;}
.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;}
}
.wse_c00179{word-spacing:-11.160000px;}
.ws0_c00179{word-spacing:-10.200000px;}
.ws5_c00179{word-spacing:-1.368000px;}
.ws2_c00179{word-spacing:-0.840000px;}
.ws1_c00179{word-spacing:0.000000px;}
.wsb_c00179{word-spacing:3.744000px;}
.ws9_c00179{word-spacing:4.320000px;}
.ws6_c00179{word-spacing:4.752000px;}
.wsa_c00179{word-spacing:6.336000px;}
.ws4_c00179{word-spacing:6.480000px;}
.wsd_c00179{word-spacing:8.136000px;}
.ws7_c00179{word-spacing:8.280000px;}
.ws8_c00179{word-spacing:9.288000px;}
.wsc_c00179{word-spacing:10.800000px;}
.ws3_c00179{word-spacing:11.592000px;}
._0_c00179{margin-left:-480.337200px;}
._4_c00179{margin-left:-6.552000px;}
._5_c00179{margin-left:-5.551200px;}
._1_c00179{margin-left:-4.200000px;}
._2_c00179{margin-left:-1.432800px;}
._3_c00179{width:4.276800px;}
._6_c00179{width:11.160000px;}
.fc2_c00179{color:rgb(32,32,32);}
.fc1_c00179{color:rgb(232,86,17);}
.fc0_c00179{color:rgb(60,60,59);}
.fs1_c00179{font-size:42.000000px;}
.fs0_c00179{font-size:60.000000px;}
.fs3_c00179{font-size:72.000000px;}
.fs2_c00179{font-size:84.000000px;}
.y0_c00179{bottom:0.000000px;}
.y1_c00179{bottom:41.250000px;}
.y10_c00179{bottom:466.292700px;}
.yf_c00179{bottom:496.298700px;}
.ye_c00179{bottom:526.304700px;}
.yd_c00179{bottom:556.310700px;}
.yc_c00179{bottom:586.316700px;}
.yb_c00179{bottom:616.322700px;}
.ya_c00179{bottom:646.328700px;}
.y9_c00179{bottom:676.334700px;}
.y8_c00179{bottom:736.334700px;}
.y7_c00179{bottom:826.310700px;}
.y6_c00179{bottom:856.316700px;}
.y5_c00179{bottom:886.322700px;}
.y4_c00179{bottom:916.328700px;}
.y3_c00179{bottom:946.334700px;}
.y2_c00179{bottom:1006.334700px;}
.h2_c00179{height:54.000000px;}
.h4_c00179{height:64.800000px;}
.h3_c00179{height:78.540000px;}
.h0_c00179{height:1262.835000px;}
.h1_c00179{height:1263.000000px;}
.w0_c00179{width:892.914000px;}
.w1_c00179{width:893.250000px;}
.x0_c00179{left:0.000000px;}
.x2_c00179{left:90.000000px;}
.x3_c00179{left:106.500000px;}
.x1_c00179{left:788.303850px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls1_c00179{letter-spacing:0.000000pt;}
.ls0_c00179{letter-spacing:0.640000pt;}
.ls2_c00179{letter-spacing:0.746667pt;}
.wse_c00179{word-spacing:-9.920000pt;}
.ws0_c00179{word-spacing:-9.066667pt;}
.ws5_c00179{word-spacing:-1.216000pt;}
.ws2_c00179{word-spacing:-0.746667pt;}
.ws1_c00179{word-spacing:0.000000pt;}
.wsb_c00179{word-spacing:3.328000pt;}
.ws9_c00179{word-spacing:3.840000pt;}
.ws6_c00179{word-spacing:4.224000pt;}
.wsa_c00179{word-spacing:5.632000pt;}
.ws4_c00179{word-spacing:5.760000pt;}
.wsd_c00179{word-spacing:7.232000pt;}
.ws7_c00179{word-spacing:7.360000pt;}
.ws8_c00179{word-spacing:8.256000pt;}
.wsc_c00179{word-spacing:9.600000pt;}
.ws3_c00179{word-spacing:10.304000pt;}
._0_c00179{margin-left:-426.966400pt;}
._4_c00179{margin-left:-5.824000pt;}
._5_c00179{margin-left:-4.934400pt;}
._1_c00179{margin-left:-3.733333pt;}
._2_c00179{margin-left:-1.273600pt;}
._3_c00179{width:3.801600pt;}
._6_c00179{width:9.920000pt;}
.fs1_c00179{font-size:37.333333pt;}
.fs0_c00179{font-size:53.333333pt;}
.fs3_c00179{font-size:64.000000pt;}
.fs2_c00179{font-size:74.666667pt;}
.y0_c00179{bottom:0.000000pt;}
.y1_c00179{bottom:36.666667pt;}
.y10_c00179{bottom:414.482400pt;}
.yf_c00179{bottom:441.154400pt;}
.ye_c00179{bottom:467.826400pt;}
.yd_c00179{bottom:494.498400pt;}
.yc_c00179{bottom:521.170400pt;}
.yb_c00179{bottom:547.842400pt;}
.ya_c00179{bottom:574.514400pt;}
.y9_c00179{bottom:601.186400pt;}
.y8_c00179{bottom:654.519733pt;}
.y7_c00179{bottom:734.498400pt;}
.y6_c00179{bottom:761.170400pt;}
.y5_c00179{bottom:787.842400pt;}
.y4_c00179{bottom:814.514400pt;}
.y3_c00179{bottom:841.186400pt;}
.y2_c00179{bottom:894.519733pt;}
.h2_c00179{height:48.000000pt;}
.h4_c00179{height:57.600000pt;}
.h3_c00179{height:69.813333pt;}
.h0_c00179{height:1122.520000pt;}
.h1_c00179{height:1122.666667pt;}
.w0_c00179{width:793.701333pt;}
.w1_c00179{width:794.000000pt;}
.x0_c00179{left:0.000000pt;}
.x2_c00179{left:80.000000pt;}
.x3_c00179{left:94.666667pt;}
.x1_c00179{left:700.714533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00180;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.161000;font-style: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);}
.m1_c00180{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls5_c00180{letter-spacing:-0.324000px;}
.ls4_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:0.720000px;}
.ls1_c00180{letter-spacing:0.840000px;}
.ls3_c00180{letter-spacing:1.500000px;}
.ls2_c00180{letter-spacing:1.650000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00180{word-spacing:-21.276000px;}
.ws2_c00180{word-spacing:-17.640000px;}
.ws3_c00180{word-spacing:-14.850000px;}
.ws0_c00180{word-spacing:-10.200000px;}
.ws7_c00180{word-spacing:-3.096000px;}
.wsd_c00180{word-spacing:-2.664000px;}
.ws15_c00180{word-spacing:-1.500000px;}
.ws5_c00180{word-spacing:-0.840000px;}
.ws16_c00180{word-spacing:-0.060000px;}
.ws4_c00180{word-spacing:0.000000px;}
.wsf_c00180{word-spacing:0.072000px;}
.wsb_c00180{word-spacing:0.936000px;}
.wse_c00180{word-spacing:2.376000px;}
.wsc_c00180{word-spacing:3.096000px;}
.ws8_c00180{word-spacing:5.328000px;}
.ws10_c00180{word-spacing:5.472000px;}
.ws14_c00180{word-spacing:6.192000px;}
.ws13_c00180{word-spacing:11.592000px;}
.ws11_c00180{word-spacing:12.240000px;}
.ws12_c00180{word-spacing:12.528000px;}
.wsa_c00180{word-spacing:14.472000px;}
.ws6_c00180{word-spacing:14.832000px;}
.ws9_c00180{word-spacing:17.352000px;}
._0_c00180{margin-left:-480.337800px;}
._1_c00180{margin-left:-4.200000px;}
._3_c00180{margin-left:-2.152800px;}
._2_c00180{margin-left:-1.134000px;}
._5_c00180{width:1.285200px;}
._4_c00180{width:2.296800px;}
.fc3_c00180{color:rgb(32,32,32);}
.fc2_c00180{color:rgb(233,83,14);}
.fc1_c00180{color:rgb(232,86,17);}
.fc4_c00180{color:rgb(157,157,156);}
.fc0_c00180{color:rgb(60,60,59);}
.fs1_c00180{font-size:42.000000px;}
.fs0_c00180{font-size:60.000000px;}
.fs5_c00180{font-size:66.000000px;}
.fs4_c00180{font-size:72.000000px;}
.fs3_c00180{font-size:84.000000px;}
.fs2_c00180{font-size:108.000000px;}
.y0_c00180{bottom:0.000000px;}
.y1_c00180{bottom:41.250000px;}
.y17_c00180{bottom:106.304700px;}
.y16_c00180{bottom:136.310700px;}
.y15_c00180{bottom:166.316700px;}
.y14_c00180{bottom:196.322700px;}
.y13_c00180{bottom:226.328700px;}
.y12_c00180{bottom:256.334700px;}
.y11_c00180{bottom:316.334700px;}
.y10_c00180{bottom:406.316700px;}
.yf_c00180{bottom:436.322700px;}
.ye_c00180{bottom:466.328700px;}
.yd_c00180{bottom:496.334700px;}
.yc_c00180{bottom:556.334700px;}
.yb_c00180{bottom:646.292700px;}
.ya_c00180{bottom:676.298700px;}
.y9_c00180{bottom:706.304700px;}
.y1c_c00180{bottom:735.947850px;}
.y8_c00180{bottom:736.310700px;}
.y1b_c00180{bottom:765.947850px;}
.y7_c00180{bottom:766.316700px;}
.y1a_c00180{bottom:795.947850px;}
.y6_c00180{bottom:796.322700px;}
.y19_c00180{bottom:825.947850px;}
.y5_c00180{bottom:826.328700px;}
.y18_c00180{bottom:855.947850px;}
.y4_c00180{bottom:856.334700px;}
.y3_c00180{bottom:916.334700px;}
.y2_c00180{bottom:1006.334700px;}
.h6_c00180{height:50.292000px;}
.h2_c00180{height:54.000000px;}
.h5_c00180{height:64.800000px;}
.h4_c00180{height:78.540000px;}
.h3_c00180{height:100.980000px;}
.h0_c00180{height:1262.835000px;}
.h1_c00180{height:1263.000000px;}
.w0_c00180{width:892.914000px;}
.w1_c00180{width:893.250000px;}
.x0_c00180{left:0.000000px;}
.x2_c00180{left:82.500000px;}
.x3_c00180{left:90.000000px;}
.x4_c00180{left:106.500000px;}
.x5_c00180{left:675.611100px;}
.x1_c00180{left:791.964000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls5_c00180{letter-spacing:-0.288000pt;}
.ls4_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:0.640000pt;}
.ls1_c00180{letter-spacing:0.746667pt;}
.ls3_c00180{letter-spacing:1.333333pt;}
.ls2_c00180{letter-spacing:1.466667pt;}
.ws1_c00180{word-spacing:-18.912000pt;}
.ws2_c00180{word-spacing:-15.680000pt;}
.ws3_c00180{word-spacing:-13.200000pt;}
.ws0_c00180{word-spacing:-9.066667pt;}
.ws7_c00180{word-spacing:-2.752000pt;}
.wsd_c00180{word-spacing:-2.368000pt;}
.ws15_c00180{word-spacing:-1.333333pt;}
.ws5_c00180{word-spacing:-0.746667pt;}
.ws16_c00180{word-spacing:-0.053333pt;}
.ws4_c00180{word-spacing:0.000000pt;}
.wsf_c00180{word-spacing:0.064000pt;}
.wsb_c00180{word-spacing:0.832000pt;}
.wse_c00180{word-spacing:2.112000pt;}
.wsc_c00180{word-spacing:2.752000pt;}
.ws8_c00180{word-spacing:4.736000pt;}
.ws10_c00180{word-spacing:4.864000pt;}
.ws14_c00180{word-spacing:5.504000pt;}
.ws13_c00180{word-spacing:10.304000pt;}
.ws11_c00180{word-spacing:10.880000pt;}
.ws12_c00180{word-spacing:11.136000pt;}
.wsa_c00180{word-spacing:12.864000pt;}
.ws6_c00180{word-spacing:13.184000pt;}
.ws9_c00180{word-spacing:15.424000pt;}
._0_c00180{margin-left:-426.966933pt;}
._1_c00180{margin-left:-3.733333pt;}
._3_c00180{margin-left:-1.913600pt;}
._2_c00180{margin-left:-1.008000pt;}
._5_c00180{width:1.142400pt;}
._4_c00180{width:2.041600pt;}
.fs1_c00180{font-size:37.333333pt;}
.fs0_c00180{font-size:53.333333pt;}
.fs5_c00180{font-size:58.666667pt;}
.fs4_c00180{font-size:64.000000pt;}
.fs3_c00180{font-size:74.666667pt;}
.fs2_c00180{font-size:96.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y1_c00180{bottom:36.666667pt;}
.y17_c00180{bottom:94.493067pt;}
.y16_c00180{bottom:121.165067pt;}
.y15_c00180{bottom:147.837067pt;}
.y14_c00180{bottom:174.509067pt;}
.y13_c00180{bottom:201.181067pt;}
.y12_c00180{bottom:227.853067pt;}
.y11_c00180{bottom:281.186400pt;}
.y10_c00180{bottom:361.170400pt;}
.yf_c00180{bottom:387.842400pt;}
.ye_c00180{bottom:414.514400pt;}
.yd_c00180{bottom:441.186400pt;}
.yc_c00180{bottom:494.519733pt;}
.yb_c00180{bottom:574.482400pt;}
.ya_c00180{bottom:601.154400pt;}
.y9_c00180{bottom:627.826400pt;}
.y1c_c00180{bottom:654.175867pt;}
.y8_c00180{bottom:654.498400pt;}
.y1b_c00180{bottom:680.842533pt;}
.y7_c00180{bottom:681.170400pt;}
.y1a_c00180{bottom:707.509200pt;}
.y6_c00180{bottom:707.842400pt;}
.y19_c00180{bottom:734.175867pt;}
.y5_c00180{bottom:734.514400pt;}
.y18_c00180{bottom:760.842533pt;}
.y4_c00180{bottom:761.186400pt;}
.y3_c00180{bottom:814.519733pt;}
.y2_c00180{bottom:894.519733pt;}
.h6_c00180{height:44.704000pt;}
.h2_c00180{height:48.000000pt;}
.h5_c00180{height:57.600000pt;}
.h4_c00180{height:69.813333pt;}
.h3_c00180{height:89.760000pt;}
.h0_c00180{height:1122.520000pt;}
.h1_c00180{height:1122.666667pt;}
.w0_c00180{width:793.701333pt;}
.w1_c00180{width:794.000000pt;}
.x0_c00180{left:0.000000pt;}
.x2_c00180{left:73.333333pt;}
.x3_c00180{left:80.000000pt;}
.x4_c00180{left:94.666667pt;}
.x5_c00180{left:600.543200pt;}
.x1_c00180{left:703.968000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73c7dea85163a337c1490c92.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.199000;font-style: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);}
.m1_c00181{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls1_c00181{letter-spacing:0.000000px;}
.ls0_c00181{letter-spacing:0.720000px;}
.ls2_c00181{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws4_c00181{word-spacing:-2.016000px;}
.wsc_c00181{word-spacing:-1.368000px;}
.ws2_c00181{word-spacing:-0.840000px;}
.wsd_c00181{word-spacing:-0.720000px;}
.ws6_c00181{word-spacing:-0.360000px;}
.ws1_c00181{word-spacing:0.000000px;}
.ws8_c00181{word-spacing:1.008000px;}
.ws5_c00181{word-spacing:2.592000px;}
.ws3_c00181{word-spacing:3.168000px;}
.ws9_c00181{word-spacing:5.400000px;}
.ws7_c00181{word-spacing:6.480000px;}
.wsb_c00181{word-spacing:7.992000px;}
.wsa_c00181{word-spacing:31.752000px;}
._0_c00181{margin-left:-480.337200px;}
._1_c00181{margin-left:-4.200000px;}
._3_c00181{margin-left:-3.016800px;}
._2_c00181{margin-left:-1.440000px;}
.fc2_c00181{color:rgb(32,32,32);}
.fc1_c00181{color:rgb(232,86,17);}
.fc0_c00181{color:rgb(60,60,59);}
.fs1_c00181{font-size:42.000000px;}
.fs0_c00181{font-size:60.000000px;}
.fs3_c00181{font-size:72.000000px;}
.fs2_c00181{font-size:84.000000px;}
.y0_c00181{bottom:0.000000px;}
.y1_c00181{bottom:41.250000px;}
.yf_c00181{bottom:496.298700px;}
.ye_c00181{bottom:526.304700px;}
.yd_c00181{bottom:556.310700px;}
.yc_c00181{bottom:586.316700px;}
.yb_c00181{bottom:616.322700px;}
.ya_c00181{bottom:646.328700px;}
.y9_c00181{bottom:676.334700px;}
.y8_c00181{bottom:736.334700px;}
.y7_c00181{bottom:826.310700px;}
.y6_c00181{bottom:856.316700px;}
.y5_c00181{bottom:886.322700px;}
.y4_c00181{bottom:916.328700px;}
.y3_c00181{bottom:946.334700px;}
.y2_c00181{bottom:1006.334700px;}
.h2_c00181{height:54.000000px;}
.h4_c00181{height:64.800000px;}
.h3_c00181{height:78.540000px;}
.h0_c00181{height:1262.835000px;}
.h1_c00181{height:1263.000000px;}
.w0_c00181{width:892.914000px;}
.w1_c00181{width:893.250000px;}
.x0_c00181{left:0.000000px;}
.x2_c00181{left:90.000000px;}
.x3_c00181{left:106.500000px;}
.x1_c00181{left:789.488850px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls1_c00181{letter-spacing:0.000000pt;}
.ls0_c00181{letter-spacing:0.640000pt;}
.ls2_c00181{letter-spacing:0.746667pt;}
.ws0_c00181{word-spacing:-9.066667pt;}
.ws4_c00181{word-spacing:-1.792000pt;}
.wsc_c00181{word-spacing:-1.216000pt;}
.ws2_c00181{word-spacing:-0.746667pt;}
.wsd_c00181{word-spacing:-0.640000pt;}
.ws6_c00181{word-spacing:-0.320000pt;}
.ws1_c00181{word-spacing:0.000000pt;}
.ws8_c00181{word-spacing:0.896000pt;}
.ws5_c00181{word-spacing:2.304000pt;}
.ws3_c00181{word-spacing:2.816000pt;}
.ws9_c00181{word-spacing:4.800000pt;}
.ws7_c00181{word-spacing:5.760000pt;}
.wsb_c00181{word-spacing:7.104000pt;}
.wsa_c00181{word-spacing:28.224000pt;}
._0_c00181{margin-left:-426.966400pt;}
._1_c00181{margin-left:-3.733333pt;}
._3_c00181{margin-left:-2.681600pt;}
._2_c00181{margin-left:-1.280000pt;}
.fs1_c00181{font-size:37.333333pt;}
.fs0_c00181{font-size:53.333333pt;}
.fs3_c00181{font-size:64.000000pt;}
.fs2_c00181{font-size:74.666667pt;}
.y0_c00181{bottom:0.000000pt;}
.y1_c00181{bottom:36.666667pt;}
.yf_c00181{bottom:441.154400pt;}
.ye_c00181{bottom:467.826400pt;}
.yd_c00181{bottom:494.498400pt;}
.yc_c00181{bottom:521.170400pt;}
.yb_c00181{bottom:547.842400pt;}
.ya_c00181{bottom:574.514400pt;}
.y9_c00181{bottom:601.186400pt;}
.y8_c00181{bottom:654.519733pt;}
.y7_c00181{bottom:734.498400pt;}
.y6_c00181{bottom:761.170400pt;}
.y5_c00181{bottom:787.842400pt;}
.y4_c00181{bottom:814.514400pt;}
.y3_c00181{bottom:841.186400pt;}
.y2_c00181{bottom:894.519733pt;}
.h2_c00181{height:48.000000pt;}
.h4_c00181{height:57.600000pt;}
.h3_c00181{height:69.813333pt;}
.h0_c00181{height:1122.520000pt;}
.h1_c00181{height:1122.666667pt;}
.w0_c00181{width:793.701333pt;}
.w1_c00181{width:794.000000pt;}
.x0_c00181{left:0.000000pt;}
.x2_c00181{left:80.000000pt;}
.x3_c00181{left:94.666667pt;}
.x1_c00181{left:701.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00182;src:url('chunks/assets/font_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00182;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00182;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00182;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:1.155000;font-style: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);}
.m1_c00182{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.ls2_c00182{letter-spacing:0.000000px;}
.ls0_c00182{letter-spacing:0.864000px;}
.ls1_c00182{letter-spacing:1.200000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00182{word-spacing:-13.104000px;}
.ws0_c00182{word-spacing:-10.200000px;}
.ws8_c00182{word-spacing:-9.240000px;}
.ws5_c00182{word-spacing:-5.904000px;}
.ws4_c00182{word-spacing:-3.528000px;}
.ws6_c00182{word-spacing:-3.240000px;}
.ws7_c00182{word-spacing:-2.400000px;}
.ws3_c00182{word-spacing:-1.440000px;}
.ws2_c00182{word-spacing:0.000000px;}
._0_c00182{margin-left:-480.337800px;}
._8_c00182{margin-left:-10.920000px;}
._7_c00182{margin-left:-9.000000px;}
._2_c00182{margin-left:-6.480000px;}
._1_c00182{margin-left:-4.200000px;}
._5_c00182{margin-left:-2.880000px;}
._3_c00182{margin-left:-1.440000px;}
._4_c00182{width:1.440000px;}
._6_c00182{width:3.240000px;}
._9_c00182{width:9.240000px;}
.fc3_c00182{color:rgb(255,255,255);}
.fc2_c00182{color:rgb(233,83,14);}
.fc1_c00182{color:rgb(232,86,17);}
.fc0_c00182{color:rgb(60,60,59);}
.fs1_c00182{font-size:42.000000px;}
.fs0_c00182{font-size:60.000000px;}
.fs3_c00182{font-size:72.000000px;}
.fs4_c00182{font-size:120.000000px;}
.fs2_c00182{font-size:360.000000px;}
.y0_c00182{bottom:0.000000px;}
.y1_c00182{bottom:41.250000px;}
.y10_c00182{bottom:364.268700px;}
.yf_c00182{bottom:385.274700px;}
.ye_c00182{bottom:406.280700px;}
.yd_c00182{bottom:463.286700px;}
.yc_c00182{bottom:484.292700px;}
.yb_c00182{bottom:505.298700px;}
.ya_c00182{bottom:526.304700px;}
.y9_c00182{bottom:574.310700px;}
.y8_c00182{bottom:595.316700px;}
.y7_c00182{bottom:616.322700px;}
.y6_c00182{bottom:664.328700px;}
.y5_c00182{bottom:685.334700px;}
.y4_c00182{bottom:706.340700px;}
.y3_c00182{bottom:752.834700px;}
.y14_c00182{bottom:916.334700px;}
.y13_c00182{bottom:946.334700px;}
.y12_c00182{bottom:976.334700px;}
.y11_c00182{bottom:1006.334700px;}
.y2_c00182{bottom:1093.526700px;}
.h2_c00182{height:54.000000px;}
.h5_c00182{height:64.800000px;}
.h4_c00182{height:66.456000px;}
.h6_c00182{height:112.200000px;}
.h3_c00182{height:324.000000px;}
.h0_c00182{height:1262.835000px;}
.h1_c00182{height:1263.000000px;}
.w0_c00182{width:892.914000px;}
.w1_c00182{width:893.250000px;}
.x0_c00182{left:0.000000px;}
.x2_c00182{left:81.290250px;}
.x3_c00182{left:82.393650px;}
.x5_c00182{left:112.287450px;}
.x4_c00182{left:127.393650px;}
.x1_c00182{left:789.339000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls2_c00182{letter-spacing:0.000000pt;}
.ls0_c00182{letter-spacing:0.768000pt;}
.ls1_c00182{letter-spacing:1.066667pt;}
.ws1_c00182{word-spacing:-11.648000pt;}
.ws0_c00182{word-spacing:-9.066667pt;}
.ws8_c00182{word-spacing:-8.213333pt;}
.ws5_c00182{word-spacing:-5.248000pt;}
.ws4_c00182{word-spacing:-3.136000pt;}
.ws6_c00182{word-spacing:-2.880000pt;}
.ws7_c00182{word-spacing:-2.133333pt;}
.ws3_c00182{word-spacing:-1.280000pt;}
.ws2_c00182{word-spacing:0.000000pt;}
._0_c00182{margin-left:-426.966933pt;}
._8_c00182{margin-left:-9.706667pt;}
._7_c00182{margin-left:-8.000000pt;}
._2_c00182{margin-left:-5.760000pt;}
._1_c00182{margin-left:-3.733333pt;}
._5_c00182{margin-left:-2.560000pt;}
._3_c00182{margin-left:-1.280000pt;}
._4_c00182{width:1.280000pt;}
._6_c00182{width:2.880000pt;}
._9_c00182{width:8.213333pt;}
.fs1_c00182{font-size:37.333333pt;}
.fs0_c00182{font-size:53.333333pt;}
.fs3_c00182{font-size:64.000000pt;}
.fs4_c00182{font-size:106.666667pt;}
.fs2_c00182{font-size:320.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y1_c00182{bottom:36.666667pt;}
.y10_c00182{bottom:323.794400pt;}
.yf_c00182{bottom:342.466400pt;}
.ye_c00182{bottom:361.138400pt;}
.yd_c00182{bottom:411.810400pt;}
.yc_c00182{bottom:430.482400pt;}
.yb_c00182{bottom:449.154400pt;}
.ya_c00182{bottom:467.826400pt;}
.y9_c00182{bottom:510.498400pt;}
.y8_c00182{bottom:529.170400pt;}
.y7_c00182{bottom:547.842400pt;}
.y6_c00182{bottom:590.514400pt;}
.y5_c00182{bottom:609.186400pt;}
.y4_c00182{bottom:627.858400pt;}
.y3_c00182{bottom:669.186400pt;}
.y14_c00182{bottom:814.519733pt;}
.y13_c00182{bottom:841.186400pt;}
.y12_c00182{bottom:867.853067pt;}
.y11_c00182{bottom:894.519733pt;}
.y2_c00182{bottom:972.023733pt;}
.h2_c00182{height:48.000000pt;}
.h5_c00182{height:57.600000pt;}
.h4_c00182{height:59.072000pt;}
.h6_c00182{height:99.733333pt;}
.h3_c00182{height:288.000000pt;}
.h0_c00182{height:1122.520000pt;}
.h1_c00182{height:1122.666667pt;}
.w0_c00182{width:793.701333pt;}
.w1_c00182{width:794.000000pt;}
.x0_c00182{left:0.000000pt;}
.x2_c00182{left:72.258000pt;}
.x3_c00182{left:73.238800pt;}
.x5_c00182{left:99.811067pt;}
.x4_c00182{left:113.238800pt;}
.x1_c00182{left:701.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00183;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00183;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00183;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.024000;font-style: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);}
.m1_c00183{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls5_c00183{letter-spacing:-0.540000px;}
.ls4_c00183{letter-spacing:0.000000px;}
.ls0_c00183{letter-spacing:0.720000px;}
.ls1_c00183{letter-spacing:0.840000px;}
.ls3_c00183{letter-spacing:1.500000px;}
.ls2_c00183{letter-spacing:1.650000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00183{word-spacing:-21.060000px;}
.ws2_c00183{word-spacing:-17.640000px;}
.ws3_c00183{word-spacing:-12.960000px;}
.ws4_c00183{word-spacing:-11.700000px;}
.ws0_c00183{word-spacing:-10.200000px;}
.ws16_c00183{word-spacing:-1.500000px;}
.ws15_c00183{word-spacing:-1.008000px;}
.ws6_c00183{word-spacing:-0.840000px;}
.wse_c00183{word-spacing:-0.720000px;}
.ws5_c00183{word-spacing:0.000000px;}
.wsd_c00183{word-spacing:1.512000px;}
.wsc_c00183{word-spacing:2.016000px;}
.ws13_c00183{word-spacing:5.256000px;}
.ws11_c00183{word-spacing:5.688000px;}
.wsb_c00183{word-spacing:7.200000px;}
.wsf_c00183{word-spacing:8.928000px;}
.ws9_c00183{word-spacing:9.072000px;}
.ws14_c00183{word-spacing:10.584000px;}
.ws7_c00183{word-spacing:11.952000px;}
.ws8_c00183{word-spacing:14.112000px;}
.ws12_c00183{word-spacing:14.184000px;}
.wsa_c00183{word-spacing:15.768000px;}
.ws10_c00183{word-spacing:16.992000px;}
._0_c00183{margin-left:-480.337200px;}
._3_c00183{margin-left:-5.990400px;}
._1_c00183{margin-left:-4.200000px;}
._2_c00183{margin-left:-1.440000px;}
._5_c00183{width:1.008000px;}
._6_c00183{width:2.289600px;}
._4_c00183{width:4.874400px;}
._7_c00183{width:19.382400px;}
.fc3_c00183{color:rgb(32,32,32);}
.fc2_c00183{color:rgb(233,83,14);}
.fc1_c00183{color:rgb(232,86,17);}
.fc4_c00183{color:rgb(157,157,156);}
.fc0_c00183{color:rgb(60,60,59);}
.fs1_c00183{font-size:42.000000px;}
.fs0_c00183{font-size:60.000000px;}
.fs5_c00183{font-size:66.000000px;}
.fs4_c00183{font-size:72.000000px;}
.fs3_c00183{font-size:84.000000px;}
.fs2_c00183{font-size:108.000000px;}
.y0_c00183{bottom:0.000000px;}
.y1_c00183{bottom:41.250000px;}
.y16_c00183{bottom:136.292700px;}
.y15_c00183{bottom:166.298700px;}
.y14_c00183{bottom:196.304700px;}
.y13_c00183{bottom:226.310700px;}
.y12_c00183{bottom:256.316700px;}
.y11_c00183{bottom:286.322700px;}
.y10_c00183{bottom:316.328700px;}
.yf_c00183{bottom:346.334700px;}
.ye_c00183{bottom:406.334700px;}
.yd_c00183{bottom:496.328700px;}
.yc_c00183{bottom:526.334700px;}
.yb_c00183{bottom:586.334700px;}
.y1d_c00183{bottom:675.947850px;}
.ya_c00183{bottom:676.298700px;}
.y1c_c00183{bottom:705.947850px;}
.y9_c00183{bottom:706.304700px;}
.y1b_c00183{bottom:735.947850px;}
.y8_c00183{bottom:736.310700px;}
.y1a_c00183{bottom:765.947850px;}
.y7_c00183{bottom:766.316700px;}
.y19_c00183{bottom:795.947850px;}
.y6_c00183{bottom:796.322700px;}
.y18_c00183{bottom:825.947850px;}
.y5_c00183{bottom:826.328700px;}
.y17_c00183{bottom:855.947850px;}
.y4_c00183{bottom:856.334700px;}
.y3_c00183{bottom:916.334700px;}
.y2_c00183{bottom:1006.334700px;}
.h6_c00183{height:50.292000px;}
.h2_c00183{height:54.000000px;}
.h5_c00183{height:64.800000px;}
.h4_c00183{height:78.540000px;}
.h3_c00183{height:100.980000px;}
.h0_c00183{height:1262.835000px;}
.h1_c00183{height:1263.000000px;}
.w0_c00183{width:892.914000px;}
.w1_c00183{width:893.250000px;}
.x0_c00183{left:0.000000px;}
.x2_c00183{left:82.500000px;}
.x3_c00183{left:90.000000px;}
.x4_c00183{left:106.500000px;}
.x5_c00183{left:675.611100px;}
.x1_c00183{left:788.363850px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls5_c00183{letter-spacing:-0.480000pt;}
.ls4_c00183{letter-spacing:0.000000pt;}
.ls0_c00183{letter-spacing:0.640000pt;}
.ls1_c00183{letter-spacing:0.746667pt;}
.ls3_c00183{letter-spacing:1.333333pt;}
.ls2_c00183{letter-spacing:1.466667pt;}
.ws1_c00183{word-spacing:-18.720000pt;}
.ws2_c00183{word-spacing:-15.680000pt;}
.ws3_c00183{word-spacing:-11.520000pt;}
.ws4_c00183{word-spacing:-10.400000pt;}
.ws0_c00183{word-spacing:-9.066667pt;}
.ws16_c00183{word-spacing:-1.333333pt;}
.ws15_c00183{word-spacing:-0.896000pt;}
.ws6_c00183{word-spacing:-0.746667pt;}
.wse_c00183{word-spacing:-0.640000pt;}
.ws5_c00183{word-spacing:0.000000pt;}
.wsd_c00183{word-spacing:1.344000pt;}
.wsc_c00183{word-spacing:1.792000pt;}
.ws13_c00183{word-spacing:4.672000pt;}
.ws11_c00183{word-spacing:5.056000pt;}
.wsb_c00183{word-spacing:6.400000pt;}
.wsf_c00183{word-spacing:7.936000pt;}
.ws9_c00183{word-spacing:8.064000pt;}
.ws14_c00183{word-spacing:9.408000pt;}
.ws7_c00183{word-spacing:10.624000pt;}
.ws8_c00183{word-spacing:12.544000pt;}
.ws12_c00183{word-spacing:12.608000pt;}
.wsa_c00183{word-spacing:14.016000pt;}
.ws10_c00183{word-spacing:15.104000pt;}
._0_c00183{margin-left:-426.966400pt;}
._3_c00183{margin-left:-5.324800pt;}
._1_c00183{margin-left:-3.733333pt;}
._2_c00183{margin-left:-1.280000pt;}
._5_c00183{width:0.896000pt;}
._6_c00183{width:2.035200pt;}
._4_c00183{width:4.332800pt;}
._7_c00183{width:17.228800pt;}
.fs1_c00183{font-size:37.333333pt;}
.fs0_c00183{font-size:53.333333pt;}
.fs5_c00183{font-size:58.666667pt;}
.fs4_c00183{font-size:64.000000pt;}
.fs3_c00183{font-size:74.666667pt;}
.fs2_c00183{font-size:96.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y1_c00183{bottom:36.666667pt;}
.y16_c00183{bottom:121.149067pt;}
.y15_c00183{bottom:147.821067pt;}
.y14_c00183{bottom:174.493067pt;}
.y13_c00183{bottom:201.165067pt;}
.y12_c00183{bottom:227.837067pt;}
.y11_c00183{bottom:254.509067pt;}
.y10_c00183{bottom:281.181067pt;}
.yf_c00183{bottom:307.853067pt;}
.ye_c00183{bottom:361.186400pt;}
.yd_c00183{bottom:441.181067pt;}
.yc_c00183{bottom:467.853067pt;}
.yb_c00183{bottom:521.186400pt;}
.y1d_c00183{bottom:600.842533pt;}
.ya_c00183{bottom:601.154400pt;}
.y1c_c00183{bottom:627.509200pt;}
.y9_c00183{bottom:627.826400pt;}
.y1b_c00183{bottom:654.175867pt;}
.y8_c00183{bottom:654.498400pt;}
.y1a_c00183{bottom:680.842533pt;}
.y7_c00183{bottom:681.170400pt;}
.y19_c00183{bottom:707.509200pt;}
.y6_c00183{bottom:707.842400pt;}
.y18_c00183{bottom:734.175867pt;}
.y5_c00183{bottom:734.514400pt;}
.y17_c00183{bottom:760.842533pt;}
.y4_c00183{bottom:761.186400pt;}
.y3_c00183{bottom:814.519733pt;}
.y2_c00183{bottom:894.519733pt;}
.h6_c00183{height:44.704000pt;}
.h2_c00183{height:48.000000pt;}
.h5_c00183{height:57.600000pt;}
.h4_c00183{height:69.813333pt;}
.h3_c00183{height:89.760000pt;}
.h0_c00183{height:1122.520000pt;}
.h1_c00183{height:1122.666667pt;}
.w0_c00183{width:793.701333pt;}
.w1_c00183{width:794.000000pt;}
.x0_c00183{left:0.000000pt;}
.x2_c00183{left:73.333333pt;}
.x3_c00183{left:80.000000pt;}
.x4_c00183{left:94.666667pt;}
.x5_c00183{left:600.543200pt;}
.x1_c00183{left:700.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00184;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.161000;font-style: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);}
.m1_c00184{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls2_c00184{letter-spacing:0.000000px;}
.ls1_c00184{letter-spacing:0.720000px;}
.ls3_c00184{letter-spacing:0.840000px;}
.ls0_c00184{letter-spacing:2.952000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00184{word-spacing:-10.200000px;}
.ws5_c00184{word-spacing:-8.352000px;}
.wsa_c00184{word-spacing:-4.248000px;}
.ws4_c00184{word-spacing:-2.736000px;}
.ws2_c00184{word-spacing:-0.840000px;}
.ws1_c00184{word-spacing:0.000000px;}
.ws9_c00184{word-spacing:1.512000px;}
.ws3_c00184{word-spacing:1.872000px;}
.wsb_c00184{word-spacing:2.088000px;}
.ws7_c00184{word-spacing:2.520000px;}
.ws8_c00184{word-spacing:4.176000px;}
.ws6_c00184{word-spacing:5.472000px;}
._0_c00184{margin-left:-480.337200px;}
._4_c00184{margin-left:-6.271200px;}
._3_c00184{margin-left:-5.248800px;}
._1_c00184{margin-left:-4.200000px;}
._2_c00184{margin-left:-1.432800px;}
.fc2_c00184{color:rgb(32,32,32);}
.fc1_c00184{color:rgb(232,86,17);}
.fc0_c00184{color:rgb(60,60,59);}
.fs1_c00184{font-size:42.000000px;}
.fs0_c00184{font-size:60.000000px;}
.fs3_c00184{font-size:72.000000px;}
.fs2_c00184{font-size:84.000000px;}
.y0_c00184{bottom:0.000000px;}
.y1_c00184{bottom:41.250000px;}
.yd_c00184{bottom:556.316700px;}
.yc_c00184{bottom:586.322700px;}
.yb_c00184{bottom:616.328700px;}
.ya_c00184{bottom:646.334700px;}
.y9_c00184{bottom:706.334700px;}
.y8_c00184{bottom:796.304700px;}
.y7_c00184{bottom:826.310700px;}
.y6_c00184{bottom:856.316700px;}
.y5_c00184{bottom:886.322700px;}
.y4_c00184{bottom:916.328700px;}
.y3_c00184{bottom:946.334700px;}
.y2_c00184{bottom:1006.334700px;}
.h2_c00184{height:54.000000px;}
.h5_c00184{height:64.800000px;}
.h4_c00184{height:67.320000px;}
.h3_c00184{height:78.540000px;}
.h0_c00184{height:1262.835000px;}
.h1_c00184{height:1263.000000px;}
.w0_c00184{width:892.914000px;}
.w1_c00184{width:893.250000px;}
.x0_c00184{left:0.000000px;}
.x2_c00184{left:90.000000px;}
.x3_c00184{left:106.500000px;}
.x1_c00184{left:789.413850px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls2_c00184{letter-spacing:0.000000pt;}
.ls1_c00184{letter-spacing:0.640000pt;}
.ls3_c00184{letter-spacing:0.746667pt;}
.ls0_c00184{letter-spacing:2.624000pt;}
.ws0_c00184{word-spacing:-9.066667pt;}
.ws5_c00184{word-spacing:-7.424000pt;}
.wsa_c00184{word-spacing:-3.776000pt;}
.ws4_c00184{word-spacing:-2.432000pt;}
.ws2_c00184{word-spacing:-0.746667pt;}
.ws1_c00184{word-spacing:0.000000pt;}
.ws9_c00184{word-spacing:1.344000pt;}
.ws3_c00184{word-spacing:1.664000pt;}
.wsb_c00184{word-spacing:1.856000pt;}
.ws7_c00184{word-spacing:2.240000pt;}
.ws8_c00184{word-spacing:3.712000pt;}
.ws6_c00184{word-spacing:4.864000pt;}
._0_c00184{margin-left:-426.966400pt;}
._4_c00184{margin-left:-5.574400pt;}
._3_c00184{margin-left:-4.665600pt;}
._1_c00184{margin-left:-3.733333pt;}
._2_c00184{margin-left:-1.273600pt;}
.fs1_c00184{font-size:37.333333pt;}
.fs0_c00184{font-size:53.333333pt;}
.fs3_c00184{font-size:64.000000pt;}
.fs2_c00184{font-size:74.666667pt;}
.y0_c00184{bottom:0.000000pt;}
.y1_c00184{bottom:36.666667pt;}
.yd_c00184{bottom:494.503733pt;}
.yc_c00184{bottom:521.175733pt;}
.yb_c00184{bottom:547.847733pt;}
.ya_c00184{bottom:574.519733pt;}
.y9_c00184{bottom:627.853067pt;}
.y8_c00184{bottom:707.826400pt;}
.y7_c00184{bottom:734.498400pt;}
.y6_c00184{bottom:761.170400pt;}
.y5_c00184{bottom:787.842400pt;}
.y4_c00184{bottom:814.514400pt;}
.y3_c00184{bottom:841.186400pt;}
.y2_c00184{bottom:894.519733pt;}
.h2_c00184{height:48.000000pt;}
.h5_c00184{height:57.600000pt;}
.h4_c00184{height:59.840000pt;}
.h3_c00184{height:69.813333pt;}
.h0_c00184{height:1122.520000pt;}
.h1_c00184{height:1122.666667pt;}
.w0_c00184{width:793.701333pt;}
.w1_c00184{width:794.000000pt;}
.x0_c00184{left:0.000000pt;}
.x2_c00184{left:80.000000pt;}
.x3_c00184{left:94.666667pt;}
.x1_c00184{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09b0d261b275ce16e922129a.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:1.161000;font-style: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);}
.m1_c00185{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls5_c00185{letter-spacing:-0.324000px;}
.ls4_c00185{letter-spacing:0.000000px;}
.ls0_c00185{letter-spacing:0.720000px;}
.ls1_c00185{letter-spacing:0.840000px;}
.ls3_c00185{letter-spacing:1.500000px;}
.ls2_c00185{letter-spacing:1.650000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00185{word-spacing:-21.276000px;}
.ws2_c00185{word-spacing:-14.850000px;}
.ws3_c00185{word-spacing:-11.700000px;}
.ws0_c00185{word-spacing:-10.200000px;}
.ws13_c00185{word-spacing:-1.500000px;}
.ws5_c00185{word-spacing:-0.840000px;}
.ws4_c00185{word-spacing:0.000000px;}
.wsb_c00185{word-spacing:1.152000px;}
.ws12_c00185{word-spacing:3.024000px;}
.ws6_c00185{word-spacing:3.312000px;}
.ws10_c00185{word-spacing:4.320000px;}
.wsa_c00185{word-spacing:6.912000px;}
.ws8_c00185{word-spacing:7.056000px;}
.ws7_c00185{word-spacing:7.128000px;}
.ws11_c00185{word-spacing:7.920000px;}
.wse_c00185{word-spacing:8.280000px;}
.ws9_c00185{word-spacing:10.368000px;}
.wsd_c00185{word-spacing:15.264000px;}
.wsf_c00185{word-spacing:19.800000px;}
.wsc_c00185{word-spacing:20.016000px;}
._0_c00185{margin-left:-480.337200px;}
._5_c00185{margin-left:-5.788800px;}
._1_c00185{margin-left:-4.200000px;}
._4_c00185{margin-left:-2.145600px;}
._2_c00185{margin-left:-1.134000px;}
._3_c00185{width:1.605600px;}
.fc3_c00185{color:rgb(32,32,32);}
.fc2_c00185{color:rgb(233,83,14);}
.fc1_c00185{color:rgb(232,86,17);}
.fc4_c00185{color:rgb(157,157,156);}
.fc0_c00185{color:rgb(60,60,59);}
.fs1_c00185{font-size:42.000000px;}
.fs0_c00185{font-size:60.000000px;}
.fs5_c00185{font-size:66.000000px;}
.fs4_c00185{font-size:72.000000px;}
.fs3_c00185{font-size:84.000000px;}
.fs2_c00185{font-size:108.000000px;}
.y0_c00185{bottom:0.000000px;}
.y1_c00185{bottom:41.250000px;}
.y14_c00185{bottom:286.286700px;}
.y13_c00185{bottom:316.292700px;}
.y12_c00185{bottom:346.298700px;}
.y11_c00185{bottom:376.304700px;}
.y10_c00185{bottom:406.310700px;}
.yf_c00185{bottom:436.316700px;}
.ye_c00185{bottom:466.322700px;}
.yd_c00185{bottom:496.328700px;}
.yc_c00185{bottom:526.334700px;}
.yb_c00185{bottom:586.334700px;}
.ya_c00185{bottom:676.298700px;}
.y1a_c00185{bottom:705.947850px;}
.y9_c00185{bottom:706.304700px;}
.y19_c00185{bottom:735.947850px;}
.y8_c00185{bottom:736.310700px;}
.y18_c00185{bottom:765.947850px;}
.y7_c00185{bottom:766.316700px;}
.y17_c00185{bottom:795.947850px;}
.y6_c00185{bottom:796.322700px;}
.y16_c00185{bottom:825.947850px;}
.y5_c00185{bottom:826.328700px;}
.y15_c00185{bottom:855.947850px;}
.y4_c00185{bottom:856.334700px;}
.y3_c00185{bottom:916.334700px;}
.y2_c00185{bottom:1006.334700px;}
.h6_c00185{height:50.292000px;}
.h2_c00185{height:54.000000px;}
.h5_c00185{height:64.800000px;}
.h4_c00185{height:78.540000px;}
.h3_c00185{height:100.980000px;}
.h0_c00185{height:1262.835000px;}
.h1_c00185{height:1263.000000px;}
.w0_c00185{width:892.914000px;}
.w1_c00185{width:893.250000px;}
.x0_c00185{left:0.000000px;}
.x2_c00185{left:82.500000px;}
.x3_c00185{left:90.000000px;}
.x4_c00185{left:106.500000px;}
.x5_c00185{left:675.611100px;}
.x1_c00185{left:788.288850px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls5_c00185{letter-spacing:-0.288000pt;}
.ls4_c00185{letter-spacing:0.000000pt;}
.ls0_c00185{letter-spacing:0.640000pt;}
.ls1_c00185{letter-spacing:0.746667pt;}
.ls3_c00185{letter-spacing:1.333333pt;}
.ls2_c00185{letter-spacing:1.466667pt;}
.ws1_c00185{word-spacing:-18.912000pt;}
.ws2_c00185{word-spacing:-13.200000pt;}
.ws3_c00185{word-spacing:-10.400000pt;}
.ws0_c00185{word-spacing:-9.066667pt;}
.ws13_c00185{word-spacing:-1.333333pt;}
.ws5_c00185{word-spacing:-0.746667pt;}
.ws4_c00185{word-spacing:0.000000pt;}
.wsb_c00185{word-spacing:1.024000pt;}
.ws12_c00185{word-spacing:2.688000pt;}
.ws6_c00185{word-spacing:2.944000pt;}
.ws10_c00185{word-spacing:3.840000pt;}
.wsa_c00185{word-spacing:6.144000pt;}
.ws8_c00185{word-spacing:6.272000pt;}
.ws7_c00185{word-spacing:6.336000pt;}
.ws11_c00185{word-spacing:7.040000pt;}
.wse_c00185{word-spacing:7.360000pt;}
.ws9_c00185{word-spacing:9.216000pt;}
.wsd_c00185{word-spacing:13.568000pt;}
.wsf_c00185{word-spacing:17.600000pt;}
.wsc_c00185{word-spacing:17.792000pt;}
._0_c00185{margin-left:-426.966400pt;}
._5_c00185{margin-left:-5.145600pt;}
._1_c00185{margin-left:-3.733333pt;}
._4_c00185{margin-left:-1.907200pt;}
._2_c00185{margin-left:-1.008000pt;}
._3_c00185{width:1.427200pt;}
.fs1_c00185{font-size:37.333333pt;}
.fs0_c00185{font-size:53.333333pt;}
.fs5_c00185{font-size:58.666667pt;}
.fs4_c00185{font-size:64.000000pt;}
.fs3_c00185{font-size:74.666667pt;}
.fs2_c00185{font-size:96.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y1_c00185{bottom:36.666667pt;}
.y14_c00185{bottom:254.477067pt;}
.y13_c00185{bottom:281.149067pt;}
.y12_c00185{bottom:307.821067pt;}
.y11_c00185{bottom:334.493067pt;}
.y10_c00185{bottom:361.165067pt;}
.yf_c00185{bottom:387.837067pt;}
.ye_c00185{bottom:414.509067pt;}
.yd_c00185{bottom:441.181067pt;}
.yc_c00185{bottom:467.853067pt;}
.yb_c00185{bottom:521.186400pt;}
.ya_c00185{bottom:601.154400pt;}
.y1a_c00185{bottom:627.509200pt;}
.y9_c00185{bottom:627.826400pt;}
.y19_c00185{bottom:654.175867pt;}
.y8_c00185{bottom:654.498400pt;}
.y18_c00185{bottom:680.842533pt;}
.y7_c00185{bottom:681.170400pt;}
.y17_c00185{bottom:707.509200pt;}
.y6_c00185{bottom:707.842400pt;}
.y16_c00185{bottom:734.175867pt;}
.y5_c00185{bottom:734.514400pt;}
.y15_c00185{bottom:760.842533pt;}
.y4_c00185{bottom:761.186400pt;}
.y3_c00185{bottom:814.519733pt;}
.y2_c00185{bottom:894.519733pt;}
.h6_c00185{height:44.704000pt;}
.h2_c00185{height:48.000000pt;}
.h5_c00185{height:57.600000pt;}
.h4_c00185{height:69.813333pt;}
.h3_c00185{height:89.760000pt;}
.h0_c00185{height:1122.520000pt;}
.h1_c00185{height:1122.666667pt;}
.w0_c00185{width:793.701333pt;}
.w1_c00185{width:794.000000pt;}
.x0_c00185{left:0.000000pt;}
.x2_c00185{left:73.333333pt;}
.x3_c00185{left:80.000000pt;}
.x4_c00185{left:94.666667pt;}
.x5_c00185{left:600.543200pt;}
.x1_c00185{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ecdf2cb50c27cac506dec03.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.199000;font-style: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);}
.m1_c00186{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls1_c00186{letter-spacing:0.000000px;}
.ls0_c00186{letter-spacing:0.720000px;}
.ls2_c00186{letter-spacing:0.840000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00186{word-spacing:-10.200000px;}
.ws9_c00186{word-spacing:-2.952000px;}
.ws2_c00186{word-spacing:-0.840000px;}
.ws6_c00186{word-spacing:-0.144000px;}
.ws1_c00186{word-spacing:0.000000px;}
.ws8_c00186{word-spacing:3.312000px;}
.ws7_c00186{word-spacing:3.744000px;}
.ws3_c00186{word-spacing:4.032000px;}
.ws4_c00186{word-spacing:11.736000px;}
.ws5_c00186{word-spacing:21.744000px;}
._0_c00186{margin-left:-480.337200px;}
._5_c00186{margin-left:-7.552800px;}
._1_c00186{margin-left:-4.200000px;}
._2_c00186{margin-left:-2.188800px;}
._4_c00186{margin-left:-1.137600px;}
._6_c00186{width:1.094400px;}
._3_c00186{width:2.304000px;}
._7_c00186{width:3.564000px;}
.fc2_c00186{color:rgb(32,32,32);}
.fc1_c00186{color:rgb(232,86,17);}
.fc0_c00186{color:rgb(60,60,59);}
.fs1_c00186{font-size:42.000000px;}
.fs0_c00186{font-size:60.000000px;}
.fs3_c00186{font-size:72.000000px;}
.fs2_c00186{font-size:84.000000px;}
.y0_c00186{bottom:0.000000px;}
.y1_c00186{bottom:41.250000px;}
.yc_c00186{bottom:586.322700px;}
.yb_c00186{bottom:616.328700px;}
.ya_c00186{bottom:646.334700px;}
.y9_c00186{bottom:706.334700px;}
.y8_c00186{bottom:796.304700px;}
.y7_c00186{bottom:826.310700px;}
.y6_c00186{bottom:856.316700px;}
.y5_c00186{bottom:886.322700px;}
.y4_c00186{bottom:916.328700px;}
.y3_c00186{bottom:946.334700px;}
.y2_c00186{bottom:1006.334700px;}
.h2_c00186{height:54.000000px;}
.h4_c00186{height:64.800000px;}
.h3_c00186{height:78.540000px;}
.h0_c00186{height:1262.835000px;}
.h1_c00186{height:1263.000000px;}
.w0_c00186{width:892.914000px;}
.w1_c00186{width:893.250000px;}
.x0_c00186{left:0.000000px;}
.x2_c00186{left:90.000000px;}
.x3_c00186{left:106.500000px;}
.x1_c00186{left:790.388850px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls1_c00186{letter-spacing:0.000000pt;}
.ls0_c00186{letter-spacing:0.640000pt;}
.ls2_c00186{letter-spacing:0.746667pt;}
.ws0_c00186{word-spacing:-9.066667pt;}
.ws9_c00186{word-spacing:-2.624000pt;}
.ws2_c00186{word-spacing:-0.746667pt;}
.ws6_c00186{word-spacing:-0.128000pt;}
.ws1_c00186{word-spacing:0.000000pt;}
.ws8_c00186{word-spacing:2.944000pt;}
.ws7_c00186{word-spacing:3.328000pt;}
.ws3_c00186{word-spacing:3.584000pt;}
.ws4_c00186{word-spacing:10.432000pt;}
.ws5_c00186{word-spacing:19.328000pt;}
._0_c00186{margin-left:-426.966400pt;}
._5_c00186{margin-left:-6.713600pt;}
._1_c00186{margin-left:-3.733333pt;}
._2_c00186{margin-left:-1.945600pt;}
._4_c00186{margin-left:-1.011200pt;}
._6_c00186{width:0.972800pt;}
._3_c00186{width:2.048000pt;}
._7_c00186{width:3.168000pt;}
.fs1_c00186{font-size:37.333333pt;}
.fs0_c00186{font-size:53.333333pt;}
.fs3_c00186{font-size:64.000000pt;}
.fs2_c00186{font-size:74.666667pt;}
.y0_c00186{bottom:0.000000pt;}
.y1_c00186{bottom:36.666667pt;}
.yc_c00186{bottom:521.175733pt;}
.yb_c00186{bottom:547.847733pt;}
.ya_c00186{bottom:574.519733pt;}
.y9_c00186{bottom:627.853067pt;}
.y8_c00186{bottom:707.826400pt;}
.y7_c00186{bottom:734.498400pt;}
.y6_c00186{bottom:761.170400pt;}
.y5_c00186{bottom:787.842400pt;}
.y4_c00186{bottom:814.514400pt;}
.y3_c00186{bottom:841.186400pt;}
.y2_c00186{bottom:894.519733pt;}
.h2_c00186{height:48.000000pt;}
.h4_c00186{height:57.600000pt;}
.h3_c00186{height:69.813333pt;}
.h0_c00186{height:1122.520000pt;}
.h1_c00186{height:1122.666667pt;}
.w0_c00186{width:793.701333pt;}
.w1_c00186{width:794.000000pt;}
.x0_c00186{left:0.000000pt;}
.x2_c00186{left:80.000000pt;}
.x3_c00186{left:94.666667pt;}
.x1_c00186{left:702.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00187;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00187;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00187;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00187;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:1.155000;font-style: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);}
.m1_c00187{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls2_c00187{letter-spacing:0.000000px;}
.ls0_c00187{letter-spacing:0.864000px;}
.ls1_c00187{letter-spacing:1.200000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00187{word-spacing:-13.104000px;}
.ws0_c00187{word-spacing:-10.200000px;}
.wsb_c00187{word-spacing:-9.240000px;}
.wsa_c00187{word-spacing:-4.752000px;}
.ws6_c00187{word-spacing:-4.320000px;}
.ws7_c00187{word-spacing:-3.888000px;}
.ws5_c00187{word-spacing:-2.808000px;}
.ws8_c00187{word-spacing:-2.304000px;}
.ws3_c00187{word-spacing:-2.160000px;}
.ws9_c00187{word-spacing:-1.728000px;}
.ws4_c00187{word-spacing:-0.864000px;}
.ws2_c00187{word-spacing:0.000000px;}
._0_c00187{margin-left:-480.337200px;}
._5_c00187{margin-left:-15.336000px;}
._8_c00187{margin-left:-13.104000px;}
._a_c00187{margin-left:-10.800000px;}
._b_c00187{margin-left:-8.712000px;}
._2_c00187{margin-left:-6.480000px;}
._1_c00187{margin-left:-4.200000px;}
._7_c00187{margin-left:-2.592000px;}
._4_c00187{margin-left:-1.440000px;}
._6_c00187{width:1.080000px;}
._3_c00187{width:2.160000px;}
._9_c00187{width:4.752000px;}
._c_c00187{width:9.432000px;}
.fc3_c00187{color:rgb(255,255,255);}
.fc2_c00187{color:rgb(233,83,14);}
.fc1_c00187{color:rgb(232,86,17);}
.fc0_c00187{color:rgb(60,60,59);}
.fs1_c00187{font-size:42.000000px;}
.fs0_c00187{font-size:60.000000px;}
.fs3_c00187{font-size:72.000000px;}
.fs4_c00187{font-size:120.000000px;}
.fs2_c00187{font-size:360.000000px;}
.y0_c00187{bottom:0.000000px;}
.y1_c00187{bottom:41.250000px;}
.y1b_c00187{bottom:199.244700px;}
.y1a_c00187{bottom:220.250700px;}
.y19_c00187{bottom:241.256700px;}
.y18_c00187{bottom:262.262700px;}
.y17_c00187{bottom:304.256700px;}
.y16_c00187{bottom:325.262700px;}
.y15_c00187{bottom:346.268700px;}
.y14_c00187{bottom:367.274700px;}
.y13_c00187{bottom:388.280700px;}
.y12_c00187{bottom:430.274700px;}
.y11_c00187{bottom:451.280700px;}
.y10_c00187{bottom:472.286700px;}
.yf_c00187{bottom:493.292700px;}
.ye_c00187{bottom:514.298700px;}
.yd_c00187{bottom:556.292700px;}
.yc_c00187{bottom:577.298700px;}
.yb_c00187{bottom:598.304700px;}
.ya_c00187{bottom:619.310700px;}
.y9_c00187{bottom:640.316700px;}
.y8_c00187{bottom:682.310700px;}
.y7_c00187{bottom:703.316700px;}
.y6_c00187{bottom:724.322700px;}
.y5_c00187{bottom:745.328700px;}
.y4_c00187{bottom:766.334700px;}
.y3_c00187{bottom:806.834700px;}
.y1e_c00187{bottom:946.334700px;}
.y1d_c00187{bottom:976.334700px;}
.y1c_c00187{bottom:1006.334700px;}
.y2_c00187{bottom:1093.526700px;}
.h2_c00187{height:54.000000px;}
.h5_c00187{height:64.800000px;}
.h4_c00187{height:66.456000px;}
.h6_c00187{height:112.200000px;}
.h3_c00187{height:324.000000px;}
.h0_c00187{height:1262.835000px;}
.h1_c00187{height:1263.000000px;}
.w0_c00187{width:892.914000px;}
.w1_c00187{width:893.250000px;}
.x0_c00187{left:0.000000px;}
.x2_c00187{left:81.290250px;}
.x3_c00187{left:82.393650px;}
.x5_c00187{left:112.287450px;}
.x4_c00187{left:127.393650px;}
.x1_c00187{left:788.363850px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls2_c00187{letter-spacing:0.000000pt;}
.ls0_c00187{letter-spacing:0.768000pt;}
.ls1_c00187{letter-spacing:1.066667pt;}
.ws1_c00187{word-spacing:-11.648000pt;}
.ws0_c00187{word-spacing:-9.066667pt;}
.wsb_c00187{word-spacing:-8.213333pt;}
.wsa_c00187{word-spacing:-4.224000pt;}
.ws6_c00187{word-spacing:-3.840000pt;}
.ws7_c00187{word-spacing:-3.456000pt;}
.ws5_c00187{word-spacing:-2.496000pt;}
.ws8_c00187{word-spacing:-2.048000pt;}
.ws3_c00187{word-spacing:-1.920000pt;}
.ws9_c00187{word-spacing:-1.536000pt;}
.ws4_c00187{word-spacing:-0.768000pt;}
.ws2_c00187{word-spacing:0.000000pt;}
._0_c00187{margin-left:-426.966400pt;}
._5_c00187{margin-left:-13.632000pt;}
._8_c00187{margin-left:-11.648000pt;}
._a_c00187{margin-left:-9.600000pt;}
._b_c00187{margin-left:-7.744000pt;}
._2_c00187{margin-left:-5.760000pt;}
._1_c00187{margin-left:-3.733333pt;}
._7_c00187{margin-left:-2.304000pt;}
._4_c00187{margin-left:-1.280000pt;}
._6_c00187{width:0.960000pt;}
._3_c00187{width:1.920000pt;}
._9_c00187{width:4.224000pt;}
._c_c00187{width:8.384000pt;}
.fs1_c00187{font-size:37.333333pt;}
.fs0_c00187{font-size:53.333333pt;}
.fs3_c00187{font-size:64.000000pt;}
.fs4_c00187{font-size:106.666667pt;}
.fs2_c00187{font-size:320.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y1_c00187{bottom:36.666667pt;}
.y1b_c00187{bottom:177.106400pt;}
.y1a_c00187{bottom:195.778400pt;}
.y19_c00187{bottom:214.450400pt;}
.y18_c00187{bottom:233.122400pt;}
.y17_c00187{bottom:270.450400pt;}
.y16_c00187{bottom:289.122400pt;}
.y15_c00187{bottom:307.794400pt;}
.y14_c00187{bottom:326.466400pt;}
.y13_c00187{bottom:345.138400pt;}
.y12_c00187{bottom:382.466400pt;}
.y11_c00187{bottom:401.138400pt;}
.y10_c00187{bottom:419.810400pt;}
.yf_c00187{bottom:438.482400pt;}
.ye_c00187{bottom:457.154400pt;}
.yd_c00187{bottom:494.482400pt;}
.yc_c00187{bottom:513.154400pt;}
.yb_c00187{bottom:531.826400pt;}
.ya_c00187{bottom:550.498400pt;}
.y9_c00187{bottom:569.170400pt;}
.y8_c00187{bottom:606.498400pt;}
.y7_c00187{bottom:625.170400pt;}
.y6_c00187{bottom:643.842400pt;}
.y5_c00187{bottom:662.514400pt;}
.y4_c00187{bottom:681.186400pt;}
.y3_c00187{bottom:717.186400pt;}
.y1e_c00187{bottom:841.186400pt;}
.y1d_c00187{bottom:867.853067pt;}
.y1c_c00187{bottom:894.519733pt;}
.y2_c00187{bottom:972.023733pt;}
.h2_c00187{height:48.000000pt;}
.h5_c00187{height:57.600000pt;}
.h4_c00187{height:59.072000pt;}
.h6_c00187{height:99.733333pt;}
.h3_c00187{height:288.000000pt;}
.h0_c00187{height:1122.520000pt;}
.h1_c00187{height:1122.666667pt;}
.w0_c00187{width:793.701333pt;}
.w1_c00187{width:794.000000pt;}
.x0_c00187{left:0.000000pt;}
.x2_c00187{left:72.258000pt;}
.x3_c00187{left:73.238800pt;}
.x5_c00187{left:99.811067pt;}
.x4_c00187{left:113.238800pt;}
.x1_c00187{left:700.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00188;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00188;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.161000;font-style: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);}
.m1_c00188{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls4_c00188{letter-spacing:-0.540000px;}
.ls3_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:0.720000px;}
.ls2_c00188{letter-spacing:1.500000px;}
.ls1_c00188{letter-spacing:1.650000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00188{word-spacing:-21.060000px;}
.ws0_c00188{word-spacing:-10.200000px;}
.ws5_c00188{word-spacing:-5.256000px;}
.ws14_c00188{word-spacing:-4.248000px;}
.wsf_c00188{word-spacing:-4.032000px;}
.ws8_c00188{word-spacing:-3.384000px;}
.ws13_c00188{word-spacing:-2.952000px;}
.ws1b_c00188{word-spacing:-1.500000px;}
.wsc_c00188{word-spacing:-1.296000px;}
.ws16_c00188{word-spacing:-0.360000px;}
.ws2_c00188{word-spacing:0.000000px;}
.ws6_c00188{word-spacing:0.936000px;}
.ws3_c00188{word-spacing:1.224000px;}
.wsd_c00188{word-spacing:1.800000px;}
.ws17_c00188{word-spacing:1.944000px;}
.ws7_c00188{word-spacing:2.808000px;}
.ws18_c00188{word-spacing:3.240000px;}
.ws10_c00188{word-spacing:3.312000px;}
.wse_c00188{word-spacing:3.600000px;}
.ws4_c00188{word-spacing:5.760000px;}
.ws9_c00188{word-spacing:6.264000px;}
.ws1a_c00188{word-spacing:6.480000px;}
.ws19_c00188{word-spacing:6.840000px;}
.ws15_c00188{word-spacing:10.008000px;}
.ws11_c00188{word-spacing:10.224000px;}
.ws12_c00188{word-spacing:12.744000px;}
.wsa_c00188{word-spacing:15.696000px;}
.wsb_c00188{word-spacing:21.168000px;}
._0_c00188{margin-left:-480.337200px;}
._3_c00188{margin-left:-6.991200px;}
._4_c00188{margin-left:-5.911200px;}
._1_c00188{margin-left:-4.200000px;}
._2_c00188{margin-left:-1.440000px;}
._6_c00188{width:4.651200px;}
._5_c00188{width:6.372000px;}
._7_c00188{width:10.389600px;}
.fc3_c00188{color:rgb(32,32,32);}
.fc2_c00188{color:rgb(233,83,14);}
.fc1_c00188{color:rgb(232,86,17);}
.fc4_c00188{color:rgb(157,157,156);}
.fc0_c00188{color:rgb(60,60,59);}
.fs1_c00188{font-size:42.000000px;}
.fs0_c00188{font-size:60.000000px;}
.fs4_c00188{font-size:66.000000px;}
.fs3_c00188{font-size:72.000000px;}
.fs2_c00188{font-size:108.000000px;}
.y0_c00188{bottom:0.000000px;}
.y1_c00188{bottom:41.250000px;}
.y1c_c00188{bottom:196.184700px;}
.y1b_c00188{bottom:226.190700px;}
.y1a_c00188{bottom:256.196700px;}
.y19_c00188{bottom:286.202700px;}
.y18_c00188{bottom:316.208700px;}
.y17_c00188{bottom:346.214700px;}
.y16_c00188{bottom:376.220700px;}
.y15_c00188{bottom:406.226700px;}
.y14_c00188{bottom:436.232700px;}
.y13_c00188{bottom:466.238700px;}
.y12_c00188{bottom:496.244700px;}
.y11_c00188{bottom:526.250700px;}
.y10_c00188{bottom:556.256700px;}
.yf_c00188{bottom:586.262700px;}
.ye_c00188{bottom:616.268700px;}
.yd_c00188{bottom:646.274700px;}
.yc_c00188{bottom:676.280700px;}
.yb_c00188{bottom:706.286700px;}
.ya_c00188{bottom:736.292700px;}
.y9_c00188{bottom:766.298700px;}
.y22_c00188{bottom:795.956700px;}
.y8_c00188{bottom:796.304700px;}
.y21_c00188{bottom:825.956700px;}
.y7_c00188{bottom:826.310700px;}
.y20_c00188{bottom:855.956700px;}
.y6_c00188{bottom:856.316700px;}
.y1f_c00188{bottom:885.956700px;}
.y5_c00188{bottom:886.322700px;}
.y1e_c00188{bottom:915.956700px;}
.y4_c00188{bottom:916.328700px;}
.y1d_c00188{bottom:945.956700px;}
.y3_c00188{bottom:946.334700px;}
.y2_c00188{bottom:1006.334700px;}
.h5_c00188{height:50.292000px;}
.h2_c00188{height:54.000000px;}
.h4_c00188{height:64.800000px;}
.h3_c00188{height:100.980000px;}
.h0_c00188{height:1262.835000px;}
.h1_c00188{height:1263.000000px;}
.w0_c00188{width:892.914000px;}
.w1_c00188{width:893.250000px;}
.x0_c00188{left:0.000000px;}
.x2_c00188{left:82.500000px;}
.x3_c00188{left:106.500000px;}
.x4_c00188{left:675.611100px;}
.x1_c00188{left:788.288850px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls4_c00188{letter-spacing:-0.480000pt;}
.ls3_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:0.640000pt;}
.ls2_c00188{letter-spacing:1.333333pt;}
.ls1_c00188{letter-spacing:1.466667pt;}
.ws1_c00188{word-spacing:-18.720000pt;}
.ws0_c00188{word-spacing:-9.066667pt;}
.ws5_c00188{word-spacing:-4.672000pt;}
.ws14_c00188{word-spacing:-3.776000pt;}
.wsf_c00188{word-spacing:-3.584000pt;}
.ws8_c00188{word-spacing:-3.008000pt;}
.ws13_c00188{word-spacing:-2.624000pt;}
.ws1b_c00188{word-spacing:-1.333333pt;}
.wsc_c00188{word-spacing:-1.152000pt;}
.ws16_c00188{word-spacing:-0.320000pt;}
.ws2_c00188{word-spacing:0.000000pt;}
.ws6_c00188{word-spacing:0.832000pt;}
.ws3_c00188{word-spacing:1.088000pt;}
.wsd_c00188{word-spacing:1.600000pt;}
.ws17_c00188{word-spacing:1.728000pt;}
.ws7_c00188{word-spacing:2.496000pt;}
.ws18_c00188{word-spacing:2.880000pt;}
.ws10_c00188{word-spacing:2.944000pt;}
.wse_c00188{word-spacing:3.200000pt;}
.ws4_c00188{word-spacing:5.120000pt;}
.ws9_c00188{word-spacing:5.568000pt;}
.ws1a_c00188{word-spacing:5.760000pt;}
.ws19_c00188{word-spacing:6.080000pt;}
.ws15_c00188{word-spacing:8.896000pt;}
.ws11_c00188{word-spacing:9.088000pt;}
.ws12_c00188{word-spacing:11.328000pt;}
.wsa_c00188{word-spacing:13.952000pt;}
.wsb_c00188{word-spacing:18.816000pt;}
._0_c00188{margin-left:-426.966400pt;}
._3_c00188{margin-left:-6.214400pt;}
._4_c00188{margin-left:-5.254400pt;}
._1_c00188{margin-left:-3.733333pt;}
._2_c00188{margin-left:-1.280000pt;}
._6_c00188{width:4.134400pt;}
._5_c00188{width:5.664000pt;}
._7_c00188{width:9.235200pt;}
.fs1_c00188{font-size:37.333333pt;}
.fs0_c00188{font-size:53.333333pt;}
.fs4_c00188{font-size:58.666667pt;}
.fs3_c00188{font-size:64.000000pt;}
.fs2_c00188{font-size:96.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y1_c00188{bottom:36.666667pt;}
.y1c_c00188{bottom:174.386400pt;}
.y1b_c00188{bottom:201.058400pt;}
.y1a_c00188{bottom:227.730400pt;}
.y19_c00188{bottom:254.402400pt;}
.y18_c00188{bottom:281.074400pt;}
.y17_c00188{bottom:307.746400pt;}
.y16_c00188{bottom:334.418400pt;}
.y15_c00188{bottom:361.090400pt;}
.y14_c00188{bottom:387.762400pt;}
.y13_c00188{bottom:414.434400pt;}
.y12_c00188{bottom:441.106400pt;}
.y11_c00188{bottom:467.778400pt;}
.y10_c00188{bottom:494.450400pt;}
.yf_c00188{bottom:521.122400pt;}
.ye_c00188{bottom:547.794400pt;}
.yd_c00188{bottom:574.466400pt;}
.yc_c00188{bottom:601.138400pt;}
.yb_c00188{bottom:627.810400pt;}
.ya_c00188{bottom:654.482400pt;}
.y9_c00188{bottom:681.154400pt;}
.y22_c00188{bottom:707.517067pt;}
.y8_c00188{bottom:707.826400pt;}
.y21_c00188{bottom:734.183733pt;}
.y7_c00188{bottom:734.498400pt;}
.y20_c00188{bottom:760.850400pt;}
.y6_c00188{bottom:761.170400pt;}
.y1f_c00188{bottom:787.517067pt;}
.y5_c00188{bottom:787.842400pt;}
.y1e_c00188{bottom:814.183733pt;}
.y4_c00188{bottom:814.514400pt;}
.y1d_c00188{bottom:840.850400pt;}
.y3_c00188{bottom:841.186400pt;}
.y2_c00188{bottom:894.519733pt;}
.h5_c00188{height:44.704000pt;}
.h2_c00188{height:48.000000pt;}
.h4_c00188{height:57.600000pt;}
.h3_c00188{height:89.760000pt;}
.h0_c00188{height:1122.520000pt;}
.h1_c00188{height:1122.666667pt;}
.w0_c00188{width:793.701333pt;}
.w1_c00188{width:794.000000pt;}
.x0_c00188{left:0.000000pt;}
.x2_c00188{left:73.333333pt;}
.x3_c00188{left:94.666667pt;}
.x4_c00188{left:600.543200pt;}
.x1_c00188{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f0146705d46c3af5096eb9.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.161000;font-style: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);}
.m1_c00189{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls4_c00189{letter-spacing:-0.324000px;}
.ls3_c00189{letter-spacing:0.000000px;}
.ls0_c00189{letter-spacing:0.720000px;}
.ls2_c00189{letter-spacing:1.500000px;}
.ls1_c00189{letter-spacing:1.650000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00189{word-spacing:-21.276000px;}
.ws2_c00189{word-spacing:-14.850000px;}
.ws0_c00189{word-spacing:-10.200000px;}
.ws14_c00189{word-spacing:-3.024000px;}
.wse_c00189{word-spacing:-2.736000px;}
.ws4_c00189{word-spacing:-2.520000px;}
.wsc_c00189{word-spacing:-1.656000px;}
.ws1a_c00189{word-spacing:-1.500000px;}
.ws18_c00189{word-spacing:-1.368000px;}
.wsa_c00189{word-spacing:-1.296000px;}
.ws3_c00189{word-spacing:0.000000px;}
.ws19_c00189{word-spacing:0.576000px;}
.ws7_c00189{word-spacing:1.008000px;}
.wsd_c00189{word-spacing:1.224000px;}
.wsf_c00189{word-spacing:2.016000px;}
.ws16_c00189{word-spacing:2.520000px;}
.ws17_c00189{word-spacing:3.888000px;}
.wsb_c00189{word-spacing:4.392000px;}
.ws9_c00189{word-spacing:6.264000px;}
.ws6_c00189{word-spacing:6.912000px;}
.ws13_c00189{word-spacing:7.344000px;}
.ws15_c00189{word-spacing:7.416000px;}
.ws5_c00189{word-spacing:7.632000px;}
.ws11_c00189{word-spacing:10.152000px;}
.ws8_c00189{word-spacing:10.440000px;}
.ws12_c00189{word-spacing:18.144000px;}
.ws10_c00189{word-spacing:20.376000px;}
._0_c00189{margin-left:-480.337200px;}
._7_c00189{margin-left:-7.365600px;}
._3_c00189{margin-left:-5.667600px;}
._1_c00189{margin-left:-4.200000px;}
._4_c00189{margin-left:-2.252400px;}
._2_c00189{margin-left:-1.134000px;}
._9_c00189{width:1.014000px;}
._5_c00189{width:2.037600px;}
._6_c00189{width:3.564000px;}
._8_c00189{width:4.960800px;}
.fc3_c00189{color:rgb(32,32,32);}
.fc2_c00189{color:rgb(233,83,14);}
.fc1_c00189{color:rgb(232,86,17);}
.fc4_c00189{color:rgb(157,157,156);}
.fc0_c00189{color:rgb(60,60,59);}
.fs1_c00189{font-size:42.000000px;}
.fs0_c00189{font-size:60.000000px;}
.fs4_c00189{font-size:66.000000px;}
.fs3_c00189{font-size:72.000000px;}
.fs2_c00189{font-size:108.000000px;}
.y0_c00189{bottom:0.000000px;}
.y1_c00189{bottom:41.250000px;}
.y19_c00189{bottom:286.202700px;}
.y18_c00189{bottom:316.208700px;}
.y17_c00189{bottom:346.214700px;}
.y16_c00189{bottom:376.220700px;}
.y15_c00189{bottom:406.226700px;}
.y14_c00189{bottom:436.232700px;}
.y13_c00189{bottom:466.238700px;}
.y12_c00189{bottom:496.244700px;}
.y11_c00189{bottom:526.250700px;}
.y10_c00189{bottom:556.256700px;}
.yf_c00189{bottom:586.262700px;}
.ye_c00189{bottom:616.268700px;}
.yd_c00189{bottom:646.274700px;}
.yc_c00189{bottom:676.280700px;}
.yb_c00189{bottom:706.286700px;}
.ya_c00189{bottom:736.292700px;}
.y9_c00189{bottom:766.298700px;}
.y8_c00189{bottom:796.304700px;}
.y7_c00189{bottom:826.310700px;}
.y1e_c00189{bottom:826.334700px;}
.y6_c00189{bottom:856.316700px;}
.y1d_c00189{bottom:856.334700px;}
.y5_c00189{bottom:886.322700px;}
.y1c_c00189{bottom:886.334700px;}
.y4_c00189{bottom:916.328700px;}
.y1b_c00189{bottom:916.334700px;}
.y3_c00189{bottom:946.334700px;}
.y1a_c00189{bottom:947.019600px;}
.y2_c00189{bottom:1006.334700px;}
.h5_c00189{height:50.292000px;}
.h2_c00189{height:54.000000px;}
.h4_c00189{height:64.800000px;}
.h3_c00189{height:100.980000px;}
.h0_c00189{height:1262.835000px;}
.h1_c00189{height:1263.000000px;}
.w0_c00189{width:892.914000px;}
.w1_c00189{width:893.250000px;}
.x0_c00189{left:0.000000px;}
.x2_c00189{left:82.500000px;}
.x3_c00189{left:106.500000px;}
.x4_c00189{left:675.611100px;}
.x1_c00189{left:788.228850px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls4_c00189{letter-spacing:-0.288000pt;}
.ls3_c00189{letter-spacing:0.000000pt;}
.ls0_c00189{letter-spacing:0.640000pt;}
.ls2_c00189{letter-spacing:1.333333pt;}
.ls1_c00189{letter-spacing:1.466667pt;}
.ws1_c00189{word-spacing:-18.912000pt;}
.ws2_c00189{word-spacing:-13.200000pt;}
.ws0_c00189{word-spacing:-9.066667pt;}
.ws14_c00189{word-spacing:-2.688000pt;}
.wse_c00189{word-spacing:-2.432000pt;}
.ws4_c00189{word-spacing:-2.240000pt;}
.wsc_c00189{word-spacing:-1.472000pt;}
.ws1a_c00189{word-spacing:-1.333333pt;}
.ws18_c00189{word-spacing:-1.216000pt;}
.wsa_c00189{word-spacing:-1.152000pt;}
.ws3_c00189{word-spacing:0.000000pt;}
.ws19_c00189{word-spacing:0.512000pt;}
.ws7_c00189{word-spacing:0.896000pt;}
.wsd_c00189{word-spacing:1.088000pt;}
.wsf_c00189{word-spacing:1.792000pt;}
.ws16_c00189{word-spacing:2.240000pt;}
.ws17_c00189{word-spacing:3.456000pt;}
.wsb_c00189{word-spacing:3.904000pt;}
.ws9_c00189{word-spacing:5.568000pt;}
.ws6_c00189{word-spacing:6.144000pt;}
.ws13_c00189{word-spacing:6.528000pt;}
.ws15_c00189{word-spacing:6.592000pt;}
.ws5_c00189{word-spacing:6.784000pt;}
.ws11_c00189{word-spacing:9.024000pt;}
.ws8_c00189{word-spacing:9.280000pt;}
.ws12_c00189{word-spacing:16.128000pt;}
.ws10_c00189{word-spacing:18.112000pt;}
._0_c00189{margin-left:-426.966400pt;}
._7_c00189{margin-left:-6.547200pt;}
._3_c00189{margin-left:-5.037867pt;}
._1_c00189{margin-left:-3.733333pt;}
._4_c00189{margin-left:-2.002133pt;}
._2_c00189{margin-left:-1.008000pt;}
._9_c00189{width:0.901333pt;}
._5_c00189{width:1.811200pt;}
._6_c00189{width:3.168000pt;}
._8_c00189{width:4.409600pt;}
.fs1_c00189{font-size:37.333333pt;}
.fs0_c00189{font-size:53.333333pt;}
.fs4_c00189{font-size:58.666667pt;}
.fs3_c00189{font-size:64.000000pt;}
.fs2_c00189{font-size:96.000000pt;}
.y0_c00189{bottom:0.000000pt;}
.y1_c00189{bottom:36.666667pt;}
.y19_c00189{bottom:254.402400pt;}
.y18_c00189{bottom:281.074400pt;}
.y17_c00189{bottom:307.746400pt;}
.y16_c00189{bottom:334.418400pt;}
.y15_c00189{bottom:361.090400pt;}
.y14_c00189{bottom:387.762400pt;}
.y13_c00189{bottom:414.434400pt;}
.y12_c00189{bottom:441.106400pt;}
.y11_c00189{bottom:467.778400pt;}
.y10_c00189{bottom:494.450400pt;}
.yf_c00189{bottom:521.122400pt;}
.ye_c00189{bottom:547.794400pt;}
.yd_c00189{bottom:574.466400pt;}
.yc_c00189{bottom:601.138400pt;}
.yb_c00189{bottom:627.810400pt;}
.ya_c00189{bottom:654.482400pt;}
.y9_c00189{bottom:681.154400pt;}
.y8_c00189{bottom:707.826400pt;}
.y7_c00189{bottom:734.498400pt;}
.y1e_c00189{bottom:734.519733pt;}
.y6_c00189{bottom:761.170400pt;}
.y1d_c00189{bottom:761.186400pt;}
.y5_c00189{bottom:787.842400pt;}
.y1c_c00189{bottom:787.853067pt;}
.y4_c00189{bottom:814.514400pt;}
.y1b_c00189{bottom:814.519733pt;}
.y3_c00189{bottom:841.186400pt;}
.y1a_c00189{bottom:841.795200pt;}
.y2_c00189{bottom:894.519733pt;}
.h5_c00189{height:44.704000pt;}
.h2_c00189{height:48.000000pt;}
.h4_c00189{height:57.600000pt;}
.h3_c00189{height:89.760000pt;}
.h0_c00189{height:1122.520000pt;}
.h1_c00189{height:1122.666667pt;}
.w0_c00189{width:793.701333pt;}
.w1_c00189{width:794.000000pt;}
.x0_c00189{left:0.000000pt;}
.x2_c00189{left:73.333333pt;}
.x3_c00189{left:94.666667pt;}
.x4_c00189{left:600.543200pt;}
.x1_c00189{left:700.647867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00190;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:1.155000;font-style: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);}
.m1_c00190{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls3_c00190{letter-spacing:-0.288000px;}
.ls2_c00190{letter-spacing:0.000000px;}
.ls0_c00190{letter-spacing:0.864000px;}
.ls1_c00190{letter-spacing:1.200000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00190{word-spacing:-13.104000px;}
.ws2_c00190{word-spacing:-11.952000px;}
.ws0_c00190{word-spacing:-10.200000px;}
.ws6_c00190{word-spacing:-8.880000px;}
.ws5_c00190{word-spacing:-5.400000px;}
.ws4_c00190{word-spacing:-1.440000px;}
.ws3_c00190{word-spacing:0.000000px;}
._0_c00190{margin-left:-480.337200px;}
._4_c00190{margin-left:-8.784000px;}
._2_c00190{margin-left:-6.480000px;}
._1_c00190{margin-left:-4.200000px;}
._7_c00190{margin-left:-3.120000px;}
._3_c00190{margin-left:-1.440000px;}
._6_c00190{width:1.152000px;}
._5_c00190{width:5.400000px;}
._8_c00190{width:8.880000px;}
.fc3_c00190{color:rgb(255,255,255);}
.fc2_c00190{color:rgb(233,83,14);}
.fc1_c00190{color:rgb(232,86,17);}
.fc0_c00190{color:rgb(60,60,59);}
.fs1_c00190{font-size:42.000000px;}
.fs0_c00190{font-size:60.000000px;}
.fs3_c00190{font-size:72.000000px;}
.fs4_c00190{font-size:120.000000px;}
.fs2_c00190{font-size:360.000000px;}
.y0_c00190{bottom:0.000000px;}
.y1_c00190{bottom:41.250000px;}
.y9_c00190{bottom:574.310700px;}
.y8_c00190{bottom:595.316700px;}
.y7_c00190{bottom:616.322700px;}
.y6_c00190{bottom:664.328700px;}
.y5_c00190{bottom:685.334700px;}
.y4_c00190{bottom:706.340700px;}
.y3_c00190{bottom:752.834700px;}
.yd_c00190{bottom:916.334700px;}
.yc_c00190{bottom:946.334700px;}
.yb_c00190{bottom:976.334700px;}
.ya_c00190{bottom:1006.334700px;}
.y2_c00190{bottom:1093.526700px;}
.h2_c00190{height:54.000000px;}
.h5_c00190{height:64.800000px;}
.h4_c00190{height:66.456000px;}
.h6_c00190{height:112.200000px;}
.h3_c00190{height:324.000000px;}
.h0_c00190{height:1262.835000px;}
.h1_c00190{height:1263.000000px;}
.w0_c00190{width:892.914000px;}
.w1_c00190{width:893.250000px;}
.x0_c00190{left:0.000000px;}
.x2_c00190{left:81.290250px;}
.x3_c00190{left:82.393650px;}
.x5_c00190{left:112.287450px;}
.x4_c00190{left:127.393650px;}
.x1_c00190{left:791.888850px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls3_c00190{letter-spacing:-0.256000pt;}
.ls2_c00190{letter-spacing:0.000000pt;}
.ls0_c00190{letter-spacing:0.768000pt;}
.ls1_c00190{letter-spacing:1.066667pt;}
.ws1_c00190{word-spacing:-11.648000pt;}
.ws2_c00190{word-spacing:-10.624000pt;}
.ws0_c00190{word-spacing:-9.066667pt;}
.ws6_c00190{word-spacing:-7.893333pt;}
.ws5_c00190{word-spacing:-4.800000pt;}
.ws4_c00190{word-spacing:-1.280000pt;}
.ws3_c00190{word-spacing:0.000000pt;}
._0_c00190{margin-left:-426.966400pt;}
._4_c00190{margin-left:-7.808000pt;}
._2_c00190{margin-left:-5.760000pt;}
._1_c00190{margin-left:-3.733333pt;}
._7_c00190{margin-left:-2.773333pt;}
._3_c00190{margin-left:-1.280000pt;}
._6_c00190{width:1.024000pt;}
._5_c00190{width:4.800000pt;}
._8_c00190{width:7.893333pt;}
.fs1_c00190{font-size:37.333333pt;}
.fs0_c00190{font-size:53.333333pt;}
.fs3_c00190{font-size:64.000000pt;}
.fs4_c00190{font-size:106.666667pt;}
.fs2_c00190{font-size:320.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.y1_c00190{bottom:36.666667pt;}
.y9_c00190{bottom:510.498400pt;}
.y8_c00190{bottom:529.170400pt;}
.y7_c00190{bottom:547.842400pt;}
.y6_c00190{bottom:590.514400pt;}
.y5_c00190{bottom:609.186400pt;}
.y4_c00190{bottom:627.858400pt;}
.y3_c00190{bottom:669.186400pt;}
.yd_c00190{bottom:814.519733pt;}
.yc_c00190{bottom:841.186400pt;}
.yb_c00190{bottom:867.853067pt;}
.ya_c00190{bottom:894.519733pt;}
.y2_c00190{bottom:972.023733pt;}
.h2_c00190{height:48.000000pt;}
.h5_c00190{height:57.600000pt;}
.h4_c00190{height:59.072000pt;}
.h6_c00190{height:99.733333pt;}
.h3_c00190{height:288.000000pt;}
.h0_c00190{height:1122.520000pt;}
.h1_c00190{height:1122.666667pt;}
.w0_c00190{width:793.701333pt;}
.w1_c00190{width:794.000000pt;}
.x0_c00190{left:0.000000pt;}
.x2_c00190{left:72.258000pt;}
.x3_c00190{left:73.238800pt;}
.x5_c00190{left:99.811067pt;}
.x4_c00190{left:113.238800pt;}
.x1_c00190{left:703.901200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls5_c00191{letter-spacing:-0.540000px;}
.ls4_c00191{letter-spacing:0.000000px;}
.ls0_c00191{letter-spacing:0.720000px;}
.ls1_c00191{letter-spacing:0.840000px;}
.ls3_c00191{letter-spacing:1.500000px;}
.ls2_c00191{letter-spacing:1.650000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00191{word-spacing:-21.060000px;}
.ws2_c00191{word-spacing:-17.640000px;}
.ws0_c00191{word-spacing:-10.200000px;}
.wse_c00191{word-spacing:-1.500000px;}
.ws4_c00191{word-spacing:-0.840000px;}
.ws3_c00191{word-spacing:0.000000px;}
.wsd_c00191{word-spacing:0.936000px;}
.ws6_c00191{word-spacing:2.376000px;}
.ws8_c00191{word-spacing:4.968000px;}
.ws9_c00191{word-spacing:6.048000px;}
.ws5_c00191{word-spacing:7.560000px;}
.wsc_c00191{word-spacing:7.632000px;}
.ws7_c00191{word-spacing:8.352000px;}
.wsb_c00191{word-spacing:15.264000px;}
.wsa_c00191{word-spacing:27.792000px;}
._0_c00191{margin-left:-480.337200px;}
._3_c00191{margin-left:-6.480000px;}
._1_c00191{margin-left:-4.200000px;}
._2_c00191{margin-left:-2.145600px;}
._4_c00191{margin-left:-1.108800px;}
.fc3_c00191{color:rgb(32,32,32);}
.fc2_c00191{color:rgb(233,83,14);}
.fc1_c00191{color:rgb(232,86,17);}
.fc4_c00191{color:rgb(157,157,156);}
.fc0_c00191{color:rgb(60,60,59);}
.fs1_c00191{font-size:42.000000px;}
.fs0_c00191{font-size:60.000000px;}
.fs5_c00191{font-size:66.000000px;}
.fs4_c00191{font-size:72.000000px;}
.fs3_c00191{font-size:84.000000px;}
.fs2_c00191{font-size:108.000000px;}
.y0_c00191{bottom:0.000000px;}
.y1_c00191{bottom:41.250000px;}
.yf_c00191{bottom:436.322700px;}
.ye_c00191{bottom:466.328700px;}
.yd_c00191{bottom:496.334700px;}
.yc_c00191{bottom:556.334700px;}
.yb_c00191{bottom:646.292700px;}
.ya_c00191{bottom:676.298700px;}
.y9_c00191{bottom:706.304700px;}
.y8_c00191{bottom:736.310700px;}
.y13_c00191{bottom:765.947850px;}
.y7_c00191{bottom:766.316700px;}
.y12_c00191{bottom:795.947850px;}
.y6_c00191{bottom:796.322700px;}
.y11_c00191{bottom:825.947850px;}
.y5_c00191{bottom:826.328700px;}
.y10_c00191{bottom:855.947850px;}
.y4_c00191{bottom:856.334700px;}
.y3_c00191{bottom:916.334700px;}
.y2_c00191{bottom:1006.334700px;}
.h6_c00191{height:50.292000px;}
.h2_c00191{height:54.000000px;}
.h5_c00191{height:64.800000px;}
.h4_c00191{height:78.540000px;}
.h3_c00191{height:100.980000px;}
.h0_c00191{height:1262.835000px;}
.h1_c00191{height:1263.000000px;}
.w0_c00191{width:892.914000px;}
.w1_c00191{width:893.250000px;}
.x0_c00191{left:0.000000px;}
.x2_c00191{left:82.500000px;}
.x3_c00191{left:90.000000px;}
.x4_c00191{left:106.500000px;}
.x5_c00191{left:675.611100px;}
.x1_c00191{left:789.413850px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls5_c00191{letter-spacing:-0.480000pt;}
.ls4_c00191{letter-spacing:0.000000pt;}
.ls0_c00191{letter-spacing:0.640000pt;}
.ls1_c00191{letter-spacing:0.746667pt;}
.ls3_c00191{letter-spacing:1.333333pt;}
.ls2_c00191{letter-spacing:1.466667pt;}
.ws1_c00191{word-spacing:-18.720000pt;}
.ws2_c00191{word-spacing:-15.680000pt;}
.ws0_c00191{word-spacing:-9.066667pt;}
.wse_c00191{word-spacing:-1.333333pt;}
.ws4_c00191{word-spacing:-0.746667pt;}
.ws3_c00191{word-spacing:0.000000pt;}
.wsd_c00191{word-spacing:0.832000pt;}
.ws6_c00191{word-spacing:2.112000pt;}
.ws8_c00191{word-spacing:4.416000pt;}
.ws9_c00191{word-spacing:5.376000pt;}
.ws5_c00191{word-spacing:6.720000pt;}
.wsc_c00191{word-spacing:6.784000pt;}
.ws7_c00191{word-spacing:7.424000pt;}
.wsb_c00191{word-spacing:13.568000pt;}
.wsa_c00191{word-spacing:24.704000pt;}
._0_c00191{margin-left:-426.966400pt;}
._3_c00191{margin-left:-5.760000pt;}
._1_c00191{margin-left:-3.733333pt;}
._2_c00191{margin-left:-1.907200pt;}
._4_c00191{margin-left:-0.985600pt;}
.fs1_c00191{font-size:37.333333pt;}
.fs0_c00191{font-size:53.333333pt;}
.fs5_c00191{font-size:58.666667pt;}
.fs4_c00191{font-size:64.000000pt;}
.fs3_c00191{font-size:74.666667pt;}
.fs2_c00191{font-size:96.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y1_c00191{bottom:36.666667pt;}
.yf_c00191{bottom:387.842400pt;}
.ye_c00191{bottom:414.514400pt;}
.yd_c00191{bottom:441.186400pt;}
.yc_c00191{bottom:494.519733pt;}
.yb_c00191{bottom:574.482400pt;}
.ya_c00191{bottom:601.154400pt;}
.y9_c00191{bottom:627.826400pt;}
.y8_c00191{bottom:654.498400pt;}
.y13_c00191{bottom:680.842533pt;}
.y7_c00191{bottom:681.170400pt;}
.y12_c00191{bottom:707.509200pt;}
.y6_c00191{bottom:707.842400pt;}
.y11_c00191{bottom:734.175867pt;}
.y5_c00191{bottom:734.514400pt;}
.y10_c00191{bottom:760.842533pt;}
.y4_c00191{bottom:761.186400pt;}
.y3_c00191{bottom:814.519733pt;}
.y2_c00191{bottom:894.519733pt;}
.h6_c00191{height:44.704000pt;}
.h2_c00191{height:48.000000pt;}
.h5_c00191{height:57.600000pt;}
.h4_c00191{height:69.813333pt;}
.h3_c00191{height:89.760000pt;}
.h0_c00191{height:1122.520000pt;}
.h1_c00191{height:1122.666667pt;}
.w0_c00191{width:793.701333pt;}
.w1_c00191{width:794.000000pt;}
.x0_c00191{left:0.000000pt;}
.x2_c00191{left:73.333333pt;}
.x3_c00191{left:80.000000pt;}
.x4_c00191{left:94.666667pt;}
.x5_c00191{left:600.543200pt;}
.x1_c00191{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00192;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.161000;font-style: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);}
.m1_c00192{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls1_c00192{letter-spacing:0.000000px;}
.ls0_c00192{letter-spacing:0.720000px;}
.ls2_c00192{letter-spacing:0.840000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00192{word-spacing:-10.200000px;}
.ws5_c00192{word-spacing:-5.616000px;}
.ws2_c00192{word-spacing:-0.840000px;}
.wsd_c00192{word-spacing:-0.720000px;}
.ws1_c00192{word-spacing:0.000000px;}
.ws14_c00192{word-spacing:0.072000px;}
.ws13_c00192{word-spacing:1.440000px;}
.wse_c00192{word-spacing:1.944000px;}
.ws9_c00192{word-spacing:2.592000px;}
.ws4_c00192{word-spacing:3.240000px;}
.ws7_c00192{word-spacing:3.672000px;}
.ws10_c00192{word-spacing:4.536000px;}
.ws8_c00192{word-spacing:5.688000px;}
.ws11_c00192{word-spacing:6.408000px;}
.wsa_c00192{word-spacing:6.480000px;}
.wsc_c00192{word-spacing:6.696000px;}
.ws6_c00192{word-spacing:7.848000px;}
.ws3_c00192{word-spacing:13.464000px;}
.wsb_c00192{word-spacing:14.256000px;}
.wsf_c00192{word-spacing:18.000000px;}
.ws12_c00192{word-spacing:19.080000px;}
._0_c00192{margin-left:-480.337200px;}
._8_c00192{margin-left:-13.773600px;}
._7_c00192{margin-left:-9.684000px;}
._3_c00192{margin-left:-6.960000px;}
._4_c00192{margin-left:-5.904000px;}
._1_c00192{margin-left:-4.200000px;}
._5_c00192{margin-left:-2.469600px;}
._2_c00192{margin-left:-1.432800px;}
._6_c00192{width:6.343200px;}
.fc2_c00192{color:rgb(32,32,32);}
.fc1_c00192{color:rgb(232,86,17);}
.fc0_c00192{color:rgb(60,60,59);}
.fs1_c00192{font-size:42.000000px;}
.fs0_c00192{font-size:60.000000px;}
.fs3_c00192{font-size:72.000000px;}
.fs2_c00192{font-size:84.000000px;}
.y0_c00192{bottom:0.000000px;}
.y1_c00192{bottom:41.250000px;}
.y18_c00192{bottom:136.322700px;}
.y17_c00192{bottom:166.328700px;}
.y16_c00192{bottom:196.334700px;}
.y15_c00192{bottom:256.334700px;}
.y14_c00192{bottom:346.304700px;}
.y13_c00192{bottom:376.310700px;}
.y12_c00192{bottom:406.316700px;}
.y11_c00192{bottom:436.322700px;}
.y10_c00192{bottom:466.328700px;}
.yf_c00192{bottom:496.334700px;}
.ye_c00192{bottom:556.334700px;}
.yd_c00192{bottom:646.274700px;}
.yc_c00192{bottom:676.280700px;}
.yb_c00192{bottom:706.286700px;}
.ya_c00192{bottom:736.292700px;}
.y9_c00192{bottom:766.298700px;}
.y8_c00192{bottom:796.304700px;}
.y7_c00192{bottom:826.310700px;}
.y6_c00192{bottom:856.316700px;}
.y5_c00192{bottom:886.322700px;}
.y4_c00192{bottom:916.328700px;}
.y3_c00192{bottom:946.334700px;}
.y2_c00192{bottom:1006.334700px;}
.h2_c00192{height:54.000000px;}
.h4_c00192{height:64.800000px;}
.h3_c00192{height:78.540000px;}
.h0_c00192{height:1262.835000px;}
.h1_c00192{height:1263.000000px;}
.w0_c00192{width:892.914000px;}
.w1_c00192{width:893.250000px;}
.x0_c00192{left:0.000000px;}
.x2_c00192{left:90.000000px;}
.x3_c00192{left:106.500000px;}
.x1_c00192{left:789.263850px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls1_c00192{letter-spacing:0.000000pt;}
.ls0_c00192{letter-spacing:0.640000pt;}
.ls2_c00192{letter-spacing:0.746667pt;}
.ws0_c00192{word-spacing:-9.066667pt;}
.ws5_c00192{word-spacing:-4.992000pt;}
.ws2_c00192{word-spacing:-0.746667pt;}
.wsd_c00192{word-spacing:-0.640000pt;}
.ws1_c00192{word-spacing:0.000000pt;}
.ws14_c00192{word-spacing:0.064000pt;}
.ws13_c00192{word-spacing:1.280000pt;}
.wse_c00192{word-spacing:1.728000pt;}
.ws9_c00192{word-spacing:2.304000pt;}
.ws4_c00192{word-spacing:2.880000pt;}
.ws7_c00192{word-spacing:3.264000pt;}
.ws10_c00192{word-spacing:4.032000pt;}
.ws8_c00192{word-spacing:5.056000pt;}
.ws11_c00192{word-spacing:5.696000pt;}
.wsa_c00192{word-spacing:5.760000pt;}
.wsc_c00192{word-spacing:5.952000pt;}
.ws6_c00192{word-spacing:6.976000pt;}
.ws3_c00192{word-spacing:11.968000pt;}
.wsb_c00192{word-spacing:12.672000pt;}
.wsf_c00192{word-spacing:16.000000pt;}
.ws12_c00192{word-spacing:16.960000pt;}
._0_c00192{margin-left:-426.966400pt;}
._8_c00192{margin-left:-12.243200pt;}
._7_c00192{margin-left:-8.608000pt;}
._3_c00192{margin-left:-6.186667pt;}
._4_c00192{margin-left:-5.248000pt;}
._1_c00192{margin-left:-3.733333pt;}
._5_c00192{margin-left:-2.195200pt;}
._2_c00192{margin-left:-1.273600pt;}
._6_c00192{width:5.638400pt;}
.fs1_c00192{font-size:37.333333pt;}
.fs0_c00192{font-size:53.333333pt;}
.fs3_c00192{font-size:64.000000pt;}
.fs2_c00192{font-size:74.666667pt;}
.y0_c00192{bottom:0.000000pt;}
.y1_c00192{bottom:36.666667pt;}
.y18_c00192{bottom:121.175733pt;}
.y17_c00192{bottom:147.847733pt;}
.y16_c00192{bottom:174.519733pt;}
.y15_c00192{bottom:227.853067pt;}
.y14_c00192{bottom:307.826400pt;}
.y13_c00192{bottom:334.498400pt;}
.y12_c00192{bottom:361.170400pt;}
.y11_c00192{bottom:387.842400pt;}
.y10_c00192{bottom:414.514400pt;}
.yf_c00192{bottom:441.186400pt;}
.ye_c00192{bottom:494.519733pt;}
.yd_c00192{bottom:574.466400pt;}
.yc_c00192{bottom:601.138400pt;}
.yb_c00192{bottom:627.810400pt;}
.ya_c00192{bottom:654.482400pt;}
.y9_c00192{bottom:681.154400pt;}
.y8_c00192{bottom:707.826400pt;}
.y7_c00192{bottom:734.498400pt;}
.y6_c00192{bottom:761.170400pt;}
.y5_c00192{bottom:787.842400pt;}
.y4_c00192{bottom:814.514400pt;}
.y3_c00192{bottom:841.186400pt;}
.y2_c00192{bottom:894.519733pt;}
.h2_c00192{height:48.000000pt;}
.h4_c00192{height:57.600000pt;}
.h3_c00192{height:69.813333pt;}
.h0_c00192{height:1122.520000pt;}
.h1_c00192{height:1122.666667pt;}
.w0_c00192{width:793.701333pt;}
.w1_c00192{width:794.000000pt;}
.x0_c00192{left:0.000000pt;}
.x2_c00192{left:80.000000pt;}
.x3_c00192{left:94.666667pt;}
.x1_c00192{left:701.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00193;src:url('chunks/assets/font_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00193;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:1.161000;font-style: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);}
.m1_c00193{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls5_c00193{letter-spacing:-0.324000px;}
.ls4_c00193{letter-spacing:0.000000px;}
.ls0_c00193{letter-spacing:0.720000px;}
.ls1_c00193{letter-spacing:0.840000px;}
.ls3_c00193{letter-spacing:1.500000px;}
.ls2_c00193{letter-spacing:1.650000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00193{word-spacing:-21.276000px;}
.ws2_c00193{word-spacing:-14.850000px;}
.ws0_c00193{word-spacing:-10.200000px;}
.wsf_c00193{word-spacing:-1.500000px;}
.ws4_c00193{word-spacing:-0.840000px;}
.wsc_c00193{word-spacing:-0.720000px;}
.ws3_c00193{word-spacing:0.000000px;}
.wsb_c00193{word-spacing:0.144000px;}
.wsd_c00193{word-spacing:1.080000px;}
.ws5_c00193{word-spacing:1.152000px;}
.ws7_c00193{word-spacing:2.160000px;}
.ws8_c00193{word-spacing:4.896000px;}
.ws9_c00193{word-spacing:5.328000px;}
.ws6_c00193{word-spacing:6.336000px;}
.wse_c00193{word-spacing:16.488000px;}
.wsa_c00193{word-spacing:29.160000px;}
._0_c00193{margin-left:-480.337200px;}
._1_c00193{margin-left:-4.200000px;}
._3_c00193{margin-left:-2.473200px;}
._2_c00193{margin-left:-1.134000px;}
.fc3_c00193{color:rgb(32,32,32);}
.fc2_c00193{color:rgb(233,83,14);}
.fc1_c00193{color:rgb(232,86,17);}
.fc4_c00193{color:rgb(157,157,156);}
.fc0_c00193{color:rgb(60,60,59);}
.fs1_c00193{font-size:42.000000px;}
.fs0_c00193{font-size:60.000000px;}
.fs5_c00193{font-size:66.000000px;}
.fs4_c00193{font-size:72.000000px;}
.fs3_c00193{font-size:84.000000px;}
.fs2_c00193{font-size:108.000000px;}
.y0_c00193{bottom:0.000000px;}
.y1_c00193{bottom:41.250000px;}
.yf_c00193{bottom:436.322700px;}
.ye_c00193{bottom:466.328700px;}
.yd_c00193{bottom:496.334700px;}
.yc_c00193{bottom:556.334700px;}
.yb_c00193{bottom:646.292700px;}
.ya_c00193{bottom:676.298700px;}
.y9_c00193{bottom:706.304700px;}
.y8_c00193{bottom:736.310700px;}
.y13_c00193{bottom:765.947850px;}
.y7_c00193{bottom:766.316700px;}
.y12_c00193{bottom:795.947850px;}
.y6_c00193{bottom:796.322700px;}
.y11_c00193{bottom:825.947850px;}
.y5_c00193{bottom:826.328700px;}
.y10_c00193{bottom:855.947850px;}
.y4_c00193{bottom:856.334700px;}
.y3_c00193{bottom:916.334700px;}
.y2_c00193{bottom:1006.334700px;}
.h6_c00193{height:50.292000px;}
.h2_c00193{height:54.000000px;}
.h5_c00193{height:64.800000px;}
.h4_c00193{height:78.540000px;}
.h3_c00193{height:100.980000px;}
.h0_c00193{height:1262.835000px;}
.h1_c00193{height:1263.000000px;}
.w0_c00193{width:892.914000px;}
.w1_c00193{width:893.250000px;}
.x0_c00193{left:0.000000px;}
.x2_c00193{left:82.500000px;}
.x3_c00193{left:90.000000px;}
.x4_c00193{left:106.500000px;}
.x5_c00193{left:675.611100px;}
.x1_c00193{left:788.288850px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls5_c00193{letter-spacing:-0.288000pt;}
.ls4_c00193{letter-spacing:0.000000pt;}
.ls0_c00193{letter-spacing:0.640000pt;}
.ls1_c00193{letter-spacing:0.746667pt;}
.ls3_c00193{letter-spacing:1.333333pt;}
.ls2_c00193{letter-spacing:1.466667pt;}
.ws1_c00193{word-spacing:-18.912000pt;}
.ws2_c00193{word-spacing:-13.200000pt;}
.ws0_c00193{word-spacing:-9.066667pt;}
.wsf_c00193{word-spacing:-1.333333pt;}
.ws4_c00193{word-spacing:-0.746667pt;}
.wsc_c00193{word-spacing:-0.640000pt;}
.ws3_c00193{word-spacing:0.000000pt;}
.wsb_c00193{word-spacing:0.128000pt;}
.wsd_c00193{word-spacing:0.960000pt;}
.ws5_c00193{word-spacing:1.024000pt;}
.ws7_c00193{word-spacing:1.920000pt;}
.ws8_c00193{word-spacing:4.352000pt;}
.ws9_c00193{word-spacing:4.736000pt;}
.ws6_c00193{word-spacing:5.632000pt;}
.wse_c00193{word-spacing:14.656000pt;}
.wsa_c00193{word-spacing:25.920000pt;}
._0_c00193{margin-left:-426.966400pt;}
._1_c00193{margin-left:-3.733333pt;}
._3_c00193{margin-left:-2.198400pt;}
._2_c00193{margin-left:-1.008000pt;}
.fs1_c00193{font-size:37.333333pt;}
.fs0_c00193{font-size:53.333333pt;}
.fs5_c00193{font-size:58.666667pt;}
.fs4_c00193{font-size:64.000000pt;}
.fs3_c00193{font-size:74.666667pt;}
.fs2_c00193{font-size:96.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y1_c00193{bottom:36.666667pt;}
.yf_c00193{bottom:387.842400pt;}
.ye_c00193{bottom:414.514400pt;}
.yd_c00193{bottom:441.186400pt;}
.yc_c00193{bottom:494.519733pt;}
.yb_c00193{bottom:574.482400pt;}
.ya_c00193{bottom:601.154400pt;}
.y9_c00193{bottom:627.826400pt;}
.y8_c00193{bottom:654.498400pt;}
.y13_c00193{bottom:680.842533pt;}
.y7_c00193{bottom:681.170400pt;}
.y12_c00193{bottom:707.509200pt;}
.y6_c00193{bottom:707.842400pt;}
.y11_c00193{bottom:734.175867pt;}
.y5_c00193{bottom:734.514400pt;}
.y10_c00193{bottom:760.842533pt;}
.y4_c00193{bottom:761.186400pt;}
.y3_c00193{bottom:814.519733pt;}
.y2_c00193{bottom:894.519733pt;}
.h6_c00193{height:44.704000pt;}
.h2_c00193{height:48.000000pt;}
.h5_c00193{height:57.600000pt;}
.h4_c00193{height:69.813333pt;}
.h3_c00193{height:89.760000pt;}
.h0_c00193{height:1122.520000pt;}
.h1_c00193{height:1122.666667pt;}
.w0_c00193{width:793.701333pt;}
.w1_c00193{width:794.000000pt;}
.x0_c00193{left:0.000000pt;}
.x2_c00193{left:73.333333pt;}
.x3_c00193{left:80.000000pt;}
.x4_c00193{left:94.666667pt;}
.x5_c00193{left:600.543200pt;}
.x1_c00193{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0bca0fce60dc5627d3e443b.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.199000;font-style: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);}
.m1_c00194{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls2_c00194{letter-spacing:0.000000px;}
.ls1_c00194{letter-spacing:0.720000px;}
.ls0_c00194{letter-spacing:0.840000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00194{word-spacing:-17.640000px;}
.ws0_c00194{word-spacing:-10.200000px;}
.ws11_c00194{word-spacing:-5.400000px;}
.ws13_c00194{word-spacing:-5.040000px;}
.ws12_c00194{word-spacing:-1.296000px;}
.wsc_c00194{word-spacing:-1.152000px;}
.wsd_c00194{word-spacing:-0.840000px;}
.ws2_c00194{word-spacing:0.000000px;}
.ws4_c00194{word-spacing:2.520000px;}
.ws10_c00194{word-spacing:2.592000px;}
.ws14_c00194{word-spacing:2.736000px;}
.ws7_c00194{word-spacing:2.880000px;}
.ws5_c00194{word-spacing:4.176000px;}
.wsf_c00194{word-spacing:4.248000px;}
.ws9_c00194{word-spacing:5.760000px;}
.ws3_c00194{word-spacing:5.832000px;}
.wse_c00194{word-spacing:8.784000px;}
.wsa_c00194{word-spacing:9.144000px;}
.ws8_c00194{word-spacing:9.936000px;}
.ws6_c00194{word-spacing:10.368000px;}
.wsb_c00194{word-spacing:16.200000px;}
._0_c00194{margin-left:-480.336600px;}
._5_c00194{margin-left:-7.740000px;}
._2_c00194{margin-left:-6.720000px;}
._6_c00194{margin-left:-5.292000px;}
._1_c00194{margin-left:-4.200000px;}
._4_c00194{margin-left:-2.412000px;}
._3_c00194{margin-left:-1.332000px;}
._7_c00194{width:1.432800px;}
.fc2_c00194{color:rgb(32,32,32);}
.fc1_c00194{color:rgb(232,86,17);}
.fc0_c00194{color:rgb(60,60,59);}
.fs1_c00194{font-size:42.000000px;}
.fs0_c00194{font-size:60.000000px;}
.fs3_c00194{font-size:72.000000px;}
.fs2_c00194{font-size:84.000000px;}
.y0_c00194{bottom:0.000000px;}
.y1_c00194{bottom:41.250000px;}
.y18_c00194{bottom:136.322700px;}
.y17_c00194{bottom:166.328700px;}
.y16_c00194{bottom:196.334700px;}
.y15_c00194{bottom:256.334700px;}
.y14_c00194{bottom:346.304700px;}
.y13_c00194{bottom:376.310700px;}
.y12_c00194{bottom:406.316700px;}
.y11_c00194{bottom:436.322700px;}
.y10_c00194{bottom:466.328700px;}
.yf_c00194{bottom:496.334700px;}
.ye_c00194{bottom:556.334700px;}
.yd_c00194{bottom:646.274700px;}
.yc_c00194{bottom:676.280700px;}
.yb_c00194{bottom:706.286700px;}
.ya_c00194{bottom:736.292700px;}
.y9_c00194{bottom:766.298700px;}
.y8_c00194{bottom:796.304700px;}
.y7_c00194{bottom:826.310700px;}
.y6_c00194{bottom:856.316700px;}
.y5_c00194{bottom:886.322700px;}
.y4_c00194{bottom:916.328700px;}
.y3_c00194{bottom:946.334700px;}
.y2_c00194{bottom:1006.334700px;}
.h2_c00194{height:54.000000px;}
.h4_c00194{height:64.800000px;}
.h3_c00194{height:78.540000px;}
.h0_c00194{height:1262.835000px;}
.h1_c00194{height:1263.000000px;}
.w0_c00194{width:892.914000px;}
.w1_c00194{width:893.250000px;}
.x0_c00194{left:0.000000px;}
.x2_c00194{left:90.000000px;}
.x3_c00194{left:106.500000px;}
.x1_c00194{left:789.338700px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls2_c00194{letter-spacing:0.000000pt;}
.ls1_c00194{letter-spacing:0.640000pt;}
.ls0_c00194{letter-spacing:0.746667pt;}
.ws1_c00194{word-spacing:-15.680000pt;}
.ws0_c00194{word-spacing:-9.066667pt;}
.ws11_c00194{word-spacing:-4.800000pt;}
.ws13_c00194{word-spacing:-4.480000pt;}
.ws12_c00194{word-spacing:-1.152000pt;}
.wsc_c00194{word-spacing:-1.024000pt;}
.wsd_c00194{word-spacing:-0.746667pt;}
.ws2_c00194{word-spacing:0.000000pt;}
.ws4_c00194{word-spacing:2.240000pt;}
.ws10_c00194{word-spacing:2.304000pt;}
.ws14_c00194{word-spacing:2.432000pt;}
.ws7_c00194{word-spacing:2.560000pt;}
.ws5_c00194{word-spacing:3.712000pt;}
.wsf_c00194{word-spacing:3.776000pt;}
.ws9_c00194{word-spacing:5.120000pt;}
.ws3_c00194{word-spacing:5.184000pt;}
.wse_c00194{word-spacing:7.808000pt;}
.wsa_c00194{word-spacing:8.128000pt;}
.ws8_c00194{word-spacing:8.832000pt;}
.ws6_c00194{word-spacing:9.216000pt;}
.wsb_c00194{word-spacing:14.400000pt;}
._0_c00194{margin-left:-426.965867pt;}
._5_c00194{margin-left:-6.880000pt;}
._2_c00194{margin-left:-5.973333pt;}
._6_c00194{margin-left:-4.704000pt;}
._1_c00194{margin-left:-3.733333pt;}
._4_c00194{margin-left:-2.144000pt;}
._3_c00194{margin-left:-1.184000pt;}
._7_c00194{width:1.273600pt;}
.fs1_c00194{font-size:37.333333pt;}
.fs0_c00194{font-size:53.333333pt;}
.fs3_c00194{font-size:64.000000pt;}
.fs2_c00194{font-size:74.666667pt;}
.y0_c00194{bottom:0.000000pt;}
.y1_c00194{bottom:36.666667pt;}
.y18_c00194{bottom:121.175733pt;}
.y17_c00194{bottom:147.847733pt;}
.y16_c00194{bottom:174.519733pt;}
.y15_c00194{bottom:227.853067pt;}
.y14_c00194{bottom:307.826400pt;}
.y13_c00194{bottom:334.498400pt;}
.y12_c00194{bottom:361.170400pt;}
.y11_c00194{bottom:387.842400pt;}
.y10_c00194{bottom:414.514400pt;}
.yf_c00194{bottom:441.186400pt;}
.ye_c00194{bottom:494.519733pt;}
.yd_c00194{bottom:574.466400pt;}
.yc_c00194{bottom:601.138400pt;}
.yb_c00194{bottom:627.810400pt;}
.ya_c00194{bottom:654.482400pt;}
.y9_c00194{bottom:681.154400pt;}
.y8_c00194{bottom:707.826400pt;}
.y7_c00194{bottom:734.498400pt;}
.y6_c00194{bottom:761.170400pt;}
.y5_c00194{bottom:787.842400pt;}
.y4_c00194{bottom:814.514400pt;}
.y3_c00194{bottom:841.186400pt;}
.y2_c00194{bottom:894.519733pt;}
.h2_c00194{height:48.000000pt;}
.h4_c00194{height:57.600000pt;}
.h3_c00194{height:69.813333pt;}
.h0_c00194{height:1122.520000pt;}
.h1_c00194{height:1122.666667pt;}
.w0_c00194{width:793.701333pt;}
.w1_c00194{width:794.000000pt;}
.x0_c00194{left:0.000000pt;}
.x2_c00194{left:80.000000pt;}
.x3_c00194{left:94.666667pt;}
.x1_c00194{left:701.634400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00195;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00195;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00195;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;line-height:1.155000;font-style: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);}
.m1_c00195{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls3_c00195{letter-spacing:-0.840000px;}
.ls2_c00195{letter-spacing:0.000000px;}
.ls0_c00195{letter-spacing:0.864000px;}
.ls1_c00195{letter-spacing:1.200000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00195{word-spacing:-13.104000px;}
.ws0_c00195{word-spacing:-10.200000px;}
.ws4_c00195{word-spacing:-4.560000px;}
.ws3_c00195{word-spacing:-0.864000px;}
.ws2_c00195{word-spacing:0.000000px;}
.ws5_c00195{word-spacing:2.040000px;}
._0_c00195{margin-left:-480.336600px;}
._7_c00195{margin-left:-15.600000px;}
._6_c00195{margin-left:-11.400000px;}
._2_c00195{margin-left:-6.600000px;}
._1_c00195{margin-left:-4.200000px;}
._4_c00195{margin-left:-2.592000px;}
._3_c00195{margin-left:-1.440000px;}
._5_c00195{width:1.800000px;}
._8_c00195{width:5.160000px;}
.fc3_c00195{color:rgb(255,255,255);}
.fc2_c00195{color:rgb(233,83,14);}
.fc1_c00195{color:rgb(232,86,17);}
.fc0_c00195{color:rgb(60,60,59);}
.fs1_c00195{font-size:42.000000px;}
.fs0_c00195{font-size:60.000000px;}
.fs3_c00195{font-size:72.000000px;}
.fs4_c00195{font-size:120.000000px;}
.fs2_c00195{font-size:360.000000px;}
.y0_c00195{bottom:0.000000px;}
.y1_c00195{bottom:41.250000px;}
.y9_c00195{bottom:574.310700px;}
.y8_c00195{bottom:595.316700px;}
.y7_c00195{bottom:616.322700px;}
.y6_c00195{bottom:664.328700px;}
.y5_c00195{bottom:685.334700px;}
.y4_c00195{bottom:706.340700px;}
.y3_c00195{bottom:752.834700px;}
.yc_c00195{bottom:946.334700px;}
.yb_c00195{bottom:976.334700px;}
.ya_c00195{bottom:1006.334700px;}
.y2_c00195{bottom:1093.526700px;}
.h2_c00195{height:54.000000px;}
.h5_c00195{height:64.800000px;}
.h4_c00195{height:66.456000px;}
.h6_c00195{height:112.200000px;}
.h3_c00195{height:324.000000px;}
.h0_c00195{height:1262.835000px;}
.h1_c00195{height:1263.000000px;}
.w0_c00195{width:892.914000px;}
.w1_c00195{width:893.250000px;}
.x0_c00195{left:0.000000px;}
.x2_c00195{left:81.290250px;}
.x3_c00195{left:82.393650px;}
.x5_c00195{left:112.287450px;}
.x4_c00195{left:127.393650px;}
.x1_c00195{left:788.213700px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls3_c00195{letter-spacing:-0.746667pt;}
.ls2_c00195{letter-spacing:0.000000pt;}
.ls0_c00195{letter-spacing:0.768000pt;}
.ls1_c00195{letter-spacing:1.066667pt;}
.ws1_c00195{word-spacing:-11.648000pt;}
.ws0_c00195{word-spacing:-9.066667pt;}
.ws4_c00195{word-spacing:-4.053333pt;}
.ws3_c00195{word-spacing:-0.768000pt;}
.ws2_c00195{word-spacing:0.000000pt;}
.ws5_c00195{word-spacing:1.813333pt;}
._0_c00195{margin-left:-426.965867pt;}
._7_c00195{margin-left:-13.866667pt;}
._6_c00195{margin-left:-10.133333pt;}
._2_c00195{margin-left:-5.866667pt;}
._1_c00195{margin-left:-3.733333pt;}
._4_c00195{margin-left:-2.304000pt;}
._3_c00195{margin-left:-1.280000pt;}
._5_c00195{width:1.600000pt;}
._8_c00195{width:4.586667pt;}
.fs1_c00195{font-size:37.333333pt;}
.fs0_c00195{font-size:53.333333pt;}
.fs3_c00195{font-size:64.000000pt;}
.fs4_c00195{font-size:106.666667pt;}
.fs2_c00195{font-size:320.000000pt;}
.y0_c00195{bottom:0.000000pt;}
.y1_c00195{bottom:36.666667pt;}
.y9_c00195{bottom:510.498400pt;}
.y8_c00195{bottom:529.170400pt;}
.y7_c00195{bottom:547.842400pt;}
.y6_c00195{bottom:590.514400pt;}
.y5_c00195{bottom:609.186400pt;}
.y4_c00195{bottom:627.858400pt;}
.y3_c00195{bottom:669.186400pt;}
.yc_c00195{bottom:841.186400pt;}
.yb_c00195{bottom:867.853067pt;}
.ya_c00195{bottom:894.519733pt;}
.y2_c00195{bottom:972.023733pt;}
.h2_c00195{height:48.000000pt;}
.h5_c00195{height:57.600000pt;}
.h4_c00195{height:59.072000pt;}
.h6_c00195{height:99.733333pt;}
.h3_c00195{height:288.000000pt;}
.h0_c00195{height:1122.520000pt;}
.h1_c00195{height:1122.666667pt;}
.w0_c00195{width:793.701333pt;}
.w1_c00195{width:794.000000pt;}
.x0_c00195{left:0.000000pt;}
.x2_c00195{left:72.258000pt;}
.x3_c00195{left:73.238800pt;}
.x5_c00195{left:99.811067pt;}
.x4_c00195{left:113.238800pt;}
.x1_c00195{left:700.634400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00196;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.161000;font-style: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);}
.m1_c00196{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls5_c00196{letter-spacing:-0.540000px;}
.ls4_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:0.720000px;}
.ls1_c00196{letter-spacing:0.840000px;}
.ls3_c00196{letter-spacing:1.500000px;}
.ls2_c00196{letter-spacing:1.650000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00196{word-spacing:-21.060000px;}
.ws2_c00196{word-spacing:-17.640000px;}
.ws0_c00196{word-spacing:-10.200000px;}
.wsc_c00196{word-spacing:-1.584000px;}
.ws13_c00196{word-spacing:-1.500000px;}
.wsb_c00196{word-spacing:-1.296000px;}
.ws4_c00196{word-spacing:-0.840000px;}
.ws8_c00196{word-spacing:-0.504000px;}
.wsd_c00196{word-spacing:-0.072000px;}
.ws3_c00196{word-spacing:0.000000px;}
.ws6_c00196{word-spacing:0.216000px;}
.ws7_c00196{word-spacing:0.432000px;}
.ws5_c00196{word-spacing:1.584000px;}
.wse_c00196{word-spacing:3.456000px;}
.wsa_c00196{word-spacing:5.184000px;}
.ws10_c00196{word-spacing:5.616000px;}
.ws9_c00196{word-spacing:7.488000px;}
.ws11_c00196{word-spacing:9.648000px;}
.ws12_c00196{word-spacing:10.944000px;}
.wsf_c00196{word-spacing:23.976000px;}
._0_c00196{margin-left:-480.337200px;}
._4_c00196{margin-left:-10.591200px;}
._5_c00196{margin-left:-9.360000px;}
._3_c00196{margin-left:-5.968800px;}
._1_c00196{margin-left:-4.200000px;}
._2_c00196{margin-left:-1.692000px;}
.fc3_c00196{color:rgb(32,32,32);}
.fc2_c00196{color:rgb(233,83,14);}
.fc1_c00196{color:rgb(232,86,17);}
.fc4_c00196{color:rgb(157,157,156);}
.fc0_c00196{color:rgb(60,60,59);}
.fs1_c00196{font-size:42.000000px;}
.fs0_c00196{font-size:60.000000px;}
.fs5_c00196{font-size:66.000000px;}
.fs4_c00196{font-size:72.000000px;}
.fs3_c00196{font-size:84.000000px;}
.fs2_c00196{font-size:108.000000px;}
.y0_c00196{bottom:0.000000px;}
.y1_c00196{bottom:41.250000px;}
.y14_c00196{bottom:286.322700px;}
.y13_c00196{bottom:316.328700px;}
.y12_c00196{bottom:346.334700px;}
.y11_c00196{bottom:406.334700px;}
.y10_c00196{bottom:496.262700px;}
.yf_c00196{bottom:526.268700px;}
.ye_c00196{bottom:556.274700px;}
.yd_c00196{bottom:586.280700px;}
.y1d_c00196{bottom:615.947850px;}
.yc_c00196{bottom:616.286700px;}
.y1c_c00196{bottom:645.947850px;}
.yb_c00196{bottom:646.292700px;}
.y1b_c00196{bottom:675.947850px;}
.ya_c00196{bottom:676.298700px;}
.y1a_c00196{bottom:705.947850px;}
.y9_c00196{bottom:706.304700px;}
.y19_c00196{bottom:735.947850px;}
.y8_c00196{bottom:736.310700px;}
.y18_c00196{bottom:765.947850px;}
.y7_c00196{bottom:766.316700px;}
.y17_c00196{bottom:795.947850px;}
.y6_c00196{bottom:796.322700px;}
.y16_c00196{bottom:825.947850px;}
.y5_c00196{bottom:826.328700px;}
.y15_c00196{bottom:855.947850px;}
.y4_c00196{bottom:856.334700px;}
.y3_c00196{bottom:916.334700px;}
.y2_c00196{bottom:1006.334700px;}
.h6_c00196{height:50.292000px;}
.h2_c00196{height:54.000000px;}
.h5_c00196{height:64.800000px;}
.h4_c00196{height:78.540000px;}
.h3_c00196{height:100.980000px;}
.h0_c00196{height:1262.835000px;}
.h1_c00196{height:1263.000000px;}
.w0_c00196{width:892.914000px;}
.w1_c00196{width:893.250000px;}
.x0_c00196{left:0.000000px;}
.x2_c00196{left:82.500000px;}
.x3_c00196{left:90.000000px;}
.x4_c00196{left:106.500000px;}
.x5_c00196{left:675.611100px;}
.x1_c00196{left:790.313850px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls5_c00196{letter-spacing:-0.480000pt;}
.ls4_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:0.640000pt;}
.ls1_c00196{letter-spacing:0.746667pt;}
.ls3_c00196{letter-spacing:1.333333pt;}
.ls2_c00196{letter-spacing:1.466667pt;}
.ws1_c00196{word-spacing:-18.720000pt;}
.ws2_c00196{word-spacing:-15.680000pt;}
.ws0_c00196{word-spacing:-9.066667pt;}
.wsc_c00196{word-spacing:-1.408000pt;}
.ws13_c00196{word-spacing:-1.333333pt;}
.wsb_c00196{word-spacing:-1.152000pt;}
.ws4_c00196{word-spacing:-0.746667pt;}
.ws8_c00196{word-spacing:-0.448000pt;}
.wsd_c00196{word-spacing:-0.064000pt;}
.ws3_c00196{word-spacing:0.000000pt;}
.ws6_c00196{word-spacing:0.192000pt;}
.ws7_c00196{word-spacing:0.384000pt;}
.ws5_c00196{word-spacing:1.408000pt;}
.wse_c00196{word-spacing:3.072000pt;}
.wsa_c00196{word-spacing:4.608000pt;}
.ws10_c00196{word-spacing:4.992000pt;}
.ws9_c00196{word-spacing:6.656000pt;}
.ws11_c00196{word-spacing:8.576000pt;}
.ws12_c00196{word-spacing:9.728000pt;}
.wsf_c00196{word-spacing:21.312000pt;}
._0_c00196{margin-left:-426.966400pt;}
._4_c00196{margin-left:-9.414400pt;}
._5_c00196{margin-left:-8.320000pt;}
._3_c00196{margin-left:-5.305600pt;}
._1_c00196{margin-left:-3.733333pt;}
._2_c00196{margin-left:-1.504000pt;}
.fs1_c00196{font-size:37.333333pt;}
.fs0_c00196{font-size:53.333333pt;}
.fs5_c00196{font-size:58.666667pt;}
.fs4_c00196{font-size:64.000000pt;}
.fs3_c00196{font-size:74.666667pt;}
.fs2_c00196{font-size:96.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y1_c00196{bottom:36.666667pt;}
.y14_c00196{bottom:254.509067pt;}
.y13_c00196{bottom:281.181067pt;}
.y12_c00196{bottom:307.853067pt;}
.y11_c00196{bottom:361.186400pt;}
.y10_c00196{bottom:441.122400pt;}
.yf_c00196{bottom:467.794400pt;}
.ye_c00196{bottom:494.466400pt;}
.yd_c00196{bottom:521.138400pt;}
.y1d_c00196{bottom:547.509200pt;}
.yc_c00196{bottom:547.810400pt;}
.y1c_c00196{bottom:574.175867pt;}
.yb_c00196{bottom:574.482400pt;}
.y1b_c00196{bottom:600.842533pt;}
.ya_c00196{bottom:601.154400pt;}
.y1a_c00196{bottom:627.509200pt;}
.y9_c00196{bottom:627.826400pt;}
.y19_c00196{bottom:654.175867pt;}
.y8_c00196{bottom:654.498400pt;}
.y18_c00196{bottom:680.842533pt;}
.y7_c00196{bottom:681.170400pt;}
.y17_c00196{bottom:707.509200pt;}
.y6_c00196{bottom:707.842400pt;}
.y16_c00196{bottom:734.175867pt;}
.y5_c00196{bottom:734.514400pt;}
.y15_c00196{bottom:760.842533pt;}
.y4_c00196{bottom:761.186400pt;}
.y3_c00196{bottom:814.519733pt;}
.y2_c00196{bottom:894.519733pt;}
.h6_c00196{height:44.704000pt;}
.h2_c00196{height:48.000000pt;}
.h5_c00196{height:57.600000pt;}
.h4_c00196{height:69.813333pt;}
.h3_c00196{height:89.760000pt;}
.h0_c00196{height:1122.520000pt;}
.h1_c00196{height:1122.666667pt;}
.w0_c00196{width:793.701333pt;}
.w1_c00196{width:794.000000pt;}
.x0_c00196{left:0.000000pt;}
.x2_c00196{left:73.333333pt;}
.x3_c00196{left:80.000000pt;}
.x4_c00196{left:94.666667pt;}
.x5_c00196{left:600.543200pt;}
.x1_c00196{left:702.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.199000;font-style: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);}
.m1_c00197{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls1_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:0.720000px;}
.ls2_c00197{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsc_c00197{word-spacing:-3.312000px;}
.wsd_c00197{word-spacing:-2.088000px;}
.ws4_c00197{word-spacing:-1.584000px;}
.ws2_c00197{word-spacing:-0.840000px;}
.ws1_c00197{word-spacing:0.000000px;}
.wsb_c00197{word-spacing:1.008000px;}
.ws3_c00197{word-spacing:1.296000px;}
.ws6_c00197{word-spacing:2.448000px;}
.ws8_c00197{word-spacing:3.744000px;}
.ws7_c00197{word-spacing:3.888000px;}
.ws5_c00197{word-spacing:4.104000px;}
.ws9_c00197{word-spacing:4.680000px;}
.wsa_c00197{word-spacing:16.704000px;}
._0_c00197{margin-left:-480.337200px;}
._3_c00197{margin-left:-6.960000px;}
._1_c00197{margin-left:-4.200000px;}
._2_c00197{margin-left:-1.440000px;}
.fc2_c00197{color:rgb(32,32,32);}
.fc1_c00197{color:rgb(232,86,17);}
.fc0_c00197{color:rgb(60,60,59);}
.fs1_c00197{font-size:42.000000px;}
.fs0_c00197{font-size:60.000000px;}
.fs3_c00197{font-size:72.000000px;}
.fs2_c00197{font-size:84.000000px;}
.y0_c00197{bottom:0.000000px;}
.y1_c00197{bottom:41.250000px;}
.y10_c00197{bottom:466.316700px;}
.yf_c00197{bottom:496.322700px;}
.ye_c00197{bottom:526.328700px;}
.yd_c00197{bottom:556.334700px;}
.yc_c00197{bottom:616.334700px;}
.yb_c00197{bottom:706.286700px;}
.ya_c00197{bottom:736.292700px;}
.y9_c00197{bottom:766.298700px;}
.y8_c00197{bottom:796.304700px;}
.y7_c00197{bottom:826.310700px;}
.y6_c00197{bottom:856.316700px;}
.y5_c00197{bottom:886.322700px;}
.y4_c00197{bottom:916.328700px;}
.y3_c00197{bottom:946.334700px;}
.y2_c00197{bottom:1006.334700px;}
.h2_c00197{height:54.000000px;}
.h4_c00197{height:64.800000px;}
.h3_c00197{height:78.540000px;}
.h0_c00197{height:1262.835000px;}
.h1_c00197{height:1263.000000px;}
.w0_c00197{width:892.914000px;}
.w1_c00197{width:893.250000px;}
.x0_c00197{left:0.000000px;}
.x2_c00197{left:90.000000px;}
.x3_c00197{left:106.500000px;}
.x1_c00197{left:788.288850px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls1_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:0.640000pt;}
.ls2_c00197{letter-spacing:0.746667pt;}
.ws0_c00197{word-spacing:-9.066667pt;}
.wsc_c00197{word-spacing:-2.944000pt;}
.wsd_c00197{word-spacing:-1.856000pt;}
.ws4_c00197{word-spacing:-1.408000pt;}
.ws2_c00197{word-spacing:-0.746667pt;}
.ws1_c00197{word-spacing:0.000000pt;}
.wsb_c00197{word-spacing:0.896000pt;}
.ws3_c00197{word-spacing:1.152000pt;}
.ws6_c00197{word-spacing:2.176000pt;}
.ws8_c00197{word-spacing:3.328000pt;}
.ws7_c00197{word-spacing:3.456000pt;}
.ws5_c00197{word-spacing:3.648000pt;}
.ws9_c00197{word-spacing:4.160000pt;}
.wsa_c00197{word-spacing:14.848000pt;}
._0_c00197{margin-left:-426.966400pt;}
._3_c00197{margin-left:-6.186667pt;}
._1_c00197{margin-left:-3.733333pt;}
._2_c00197{margin-left:-1.280000pt;}
.fs1_c00197{font-size:37.333333pt;}
.fs0_c00197{font-size:53.333333pt;}
.fs3_c00197{font-size:64.000000pt;}
.fs2_c00197{font-size:74.666667pt;}
.y0_c00197{bottom:0.000000pt;}
.y1_c00197{bottom:36.666667pt;}
.y10_c00197{bottom:414.503733pt;}
.yf_c00197{bottom:441.175733pt;}
.ye_c00197{bottom:467.847733pt;}
.yd_c00197{bottom:494.519733pt;}
.yc_c00197{bottom:547.853067pt;}
.yb_c00197{bottom:627.810400pt;}
.ya_c00197{bottom:654.482400pt;}
.y9_c00197{bottom:681.154400pt;}
.y8_c00197{bottom:707.826400pt;}
.y7_c00197{bottom:734.498400pt;}
.y6_c00197{bottom:761.170400pt;}
.y5_c00197{bottom:787.842400pt;}
.y4_c00197{bottom:814.514400pt;}
.y3_c00197{bottom:841.186400pt;}
.y2_c00197{bottom:894.519733pt;}
.h2_c00197{height:48.000000pt;}
.h4_c00197{height:57.600000pt;}
.h3_c00197{height:69.813333pt;}
.h0_c00197{height:1122.520000pt;}
.h1_c00197{height:1122.666667pt;}
.w0_c00197{width:793.701333pt;}
.w1_c00197{width:794.000000pt;}
.x0_c00197{left:0.000000pt;}
.x2_c00197{left:80.000000pt;}
.x3_c00197{left:94.666667pt;}
.x1_c00197{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54353bf4d35ff176b58704c8.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00198;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.161000;font-style: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);}
.m1_c00198{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls5_c00198{letter-spacing:-0.324000px;}
.ls4_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:0.720000px;}
.ls1_c00198{letter-spacing:0.840000px;}
.ls3_c00198{letter-spacing:1.500000px;}
.ls2_c00198{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00198{word-spacing:-21.276000px;}
.ws2_c00198{word-spacing:-17.640000px;}
.ws3_c00198{word-spacing:-14.850000px;}
.ws0_c00198{word-spacing:-10.200000px;}
.ws14_c00198{word-spacing:-2.520000px;}
.wsa_c00198{word-spacing:-1.656000px;}
.wsf_c00198{word-spacing:-1.152000px;}
.ws5_c00198{word-spacing:-0.840000px;}
.ws12_c00198{word-spacing:-0.720000px;}
.ws4_c00198{word-spacing:0.000000px;}
.ws8_c00198{word-spacing:0.720000px;}
.ws17_c00198{word-spacing:0.864000px;}
.ws16_c00198{word-spacing:1.152000px;}
.ws6_c00198{word-spacing:1.584000px;}
.wsb_c00198{word-spacing:2.952000px;}
.ws10_c00198{word-spacing:5.472000px;}
.wse_c00198{word-spacing:5.544000px;}
.wsc_c00198{word-spacing:6.552000px;}
.ws15_c00198{word-spacing:10.224000px;}
.ws9_c00198{word-spacing:11.088000px;}
.ws7_c00198{word-spacing:12.240000px;}
.wsd_c00198{word-spacing:15.120000px;}
.ws11_c00198{word-spacing:16.272000px;}
.ws13_c00198{word-spacing:27.864000px;}
._0_c00198{margin-left:-480.336600px;}
._6_c00198{margin-left:-9.360000px;}
._5_c00198{margin-left:-6.840000px;}
._1_c00198{margin-left:-4.200000px;}
._3_c00198{margin-left:-2.160000px;}
._2_c00198{margin-left:-1.134000px;}
._4_c00198{width:1.807200px;}
.fc3_c00198{color:rgb(32,32,32);}
.fc2_c00198{color:rgb(233,83,14);}
.fc1_c00198{color:rgb(232,86,17);}
.fc4_c00198{color:rgb(157,157,156);}
.fc0_c00198{color:rgb(60,60,59);}
.fs1_c00198{font-size:42.000000px;}
.fs0_c00198{font-size:60.000000px;}
.fs5_c00198{font-size:66.000000px;}
.fs4_c00198{font-size:72.000000px;}
.fs3_c00198{font-size:84.000000px;}
.fs2_c00198{font-size:108.000000px;}
.y0_c00198{bottom:0.000000px;}
.y1_c00198{bottom:41.250000px;}
.y18_c00198{bottom:166.304700px;}
.y17_c00198{bottom:196.310700px;}
.y16_c00198{bottom:226.316700px;}
.y15_c00198{bottom:256.322700px;}
.y14_c00198{bottom:286.328700px;}
.y13_c00198{bottom:316.334700px;}
.y12_c00198{bottom:376.334700px;}
.y11_c00198{bottom:466.256700px;}
.y10_c00198{bottom:496.262700px;}
.yf_c00198{bottom:526.268700px;}
.ye_c00198{bottom:556.274700px;}
.yd_c00198{bottom:586.280700px;}
.yc_c00198{bottom:616.286700px;}
.yb_c00198{bottom:646.292700px;}
.ya_c00198{bottom:676.298700px;}
.y1e_c00198{bottom:705.947850px;}
.y9_c00198{bottom:706.304700px;}
.y1d_c00198{bottom:735.947850px;}
.y8_c00198{bottom:736.310700px;}
.y1c_c00198{bottom:765.947850px;}
.y7_c00198{bottom:766.316700px;}
.y1b_c00198{bottom:795.947850px;}
.y6_c00198{bottom:796.322700px;}
.y1a_c00198{bottom:825.947850px;}
.y5_c00198{bottom:826.328700px;}
.y19_c00198{bottom:855.947850px;}
.y4_c00198{bottom:856.334700px;}
.y3_c00198{bottom:916.334700px;}
.y2_c00198{bottom:1006.334700px;}
.h6_c00198{height:50.292000px;}
.h2_c00198{height:54.000000px;}
.h5_c00198{height:64.800000px;}
.h4_c00198{height:78.540000px;}
.h3_c00198{height:100.980000px;}
.h0_c00198{height:1262.835000px;}
.h1_c00198{height:1263.000000px;}
.w0_c00198{width:892.914000px;}
.w1_c00198{width:893.250000px;}
.x0_c00198{left:0.000000px;}
.x2_c00198{left:82.500000px;}
.x3_c00198{left:90.000000px;}
.x4_c00198{left:106.500000px;}
.x5_c00198{left:675.611100px;}
.x1_c00198{left:788.213700px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls5_c00198{letter-spacing:-0.288000pt;}
.ls4_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:0.640000pt;}
.ls1_c00198{letter-spacing:0.746667pt;}
.ls3_c00198{letter-spacing:1.333333pt;}
.ls2_c00198{letter-spacing:1.466667pt;}
.ws1_c00198{word-spacing:-18.912000pt;}
.ws2_c00198{word-spacing:-15.680000pt;}
.ws3_c00198{word-spacing:-13.200000pt;}
.ws0_c00198{word-spacing:-9.066667pt;}
.ws14_c00198{word-spacing:-2.240000pt;}
.wsa_c00198{word-spacing:-1.472000pt;}
.wsf_c00198{word-spacing:-1.024000pt;}
.ws5_c00198{word-spacing:-0.746667pt;}
.ws12_c00198{word-spacing:-0.640000pt;}
.ws4_c00198{word-spacing:0.000000pt;}
.ws8_c00198{word-spacing:0.640000pt;}
.ws17_c00198{word-spacing:0.768000pt;}
.ws16_c00198{word-spacing:1.024000pt;}
.ws6_c00198{word-spacing:1.408000pt;}
.wsb_c00198{word-spacing:2.624000pt;}
.ws10_c00198{word-spacing:4.864000pt;}
.wse_c00198{word-spacing:4.928000pt;}
.wsc_c00198{word-spacing:5.824000pt;}
.ws15_c00198{word-spacing:9.088000pt;}
.ws9_c00198{word-spacing:9.856000pt;}
.ws7_c00198{word-spacing:10.880000pt;}
.wsd_c00198{word-spacing:13.440000pt;}
.ws11_c00198{word-spacing:14.464000pt;}
.ws13_c00198{word-spacing:24.768000pt;}
._0_c00198{margin-left:-426.965867pt;}
._6_c00198{margin-left:-8.320000pt;}
._5_c00198{margin-left:-6.080000pt;}
._1_c00198{margin-left:-3.733333pt;}
._3_c00198{margin-left:-1.920000pt;}
._2_c00198{margin-left:-1.008000pt;}
._4_c00198{width:1.606400pt;}
.fs1_c00198{font-size:37.333333pt;}
.fs0_c00198{font-size:53.333333pt;}
.fs5_c00198{font-size:58.666667pt;}
.fs4_c00198{font-size:64.000000pt;}
.fs3_c00198{font-size:74.666667pt;}
.fs2_c00198{font-size:96.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y1_c00198{bottom:36.666667pt;}
.y18_c00198{bottom:147.826400pt;}
.y17_c00198{bottom:174.498400pt;}
.y16_c00198{bottom:201.170400pt;}
.y15_c00198{bottom:227.842400pt;}
.y14_c00198{bottom:254.514400pt;}
.y13_c00198{bottom:281.186400pt;}
.y12_c00198{bottom:334.519733pt;}
.y11_c00198{bottom:414.450400pt;}
.y10_c00198{bottom:441.122400pt;}
.yf_c00198{bottom:467.794400pt;}
.ye_c00198{bottom:494.466400pt;}
.yd_c00198{bottom:521.138400pt;}
.yc_c00198{bottom:547.810400pt;}
.yb_c00198{bottom:574.482400pt;}
.ya_c00198{bottom:601.154400pt;}
.y1e_c00198{bottom:627.509200pt;}
.y9_c00198{bottom:627.826400pt;}
.y1d_c00198{bottom:654.175867pt;}
.y8_c00198{bottom:654.498400pt;}
.y1c_c00198{bottom:680.842533pt;}
.y7_c00198{bottom:681.170400pt;}
.y1b_c00198{bottom:707.509200pt;}
.y6_c00198{bottom:707.842400pt;}
.y1a_c00198{bottom:734.175867pt;}
.y5_c00198{bottom:734.514400pt;}
.y19_c00198{bottom:760.842533pt;}
.y4_c00198{bottom:761.186400pt;}
.y3_c00198{bottom:814.519733pt;}
.y2_c00198{bottom:894.519733pt;}
.h6_c00198{height:44.704000pt;}
.h2_c00198{height:48.000000pt;}
.h5_c00198{height:57.600000pt;}
.h4_c00198{height:69.813333pt;}
.h3_c00198{height:89.760000pt;}
.h0_c00198{height:1122.520000pt;}
.h1_c00198{height:1122.666667pt;}
.w0_c00198{width:793.701333pt;}
.w1_c00198{width:794.000000pt;}
.x0_c00198{left:0.000000pt;}
.x2_c00198{left:73.333333pt;}
.x3_c00198{left:80.000000pt;}
.x4_c00198{left:94.666667pt;}
.x5_c00198{left:600.543200pt;}
.x1_c00198{left:700.634400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d2b3a49cabb83f4fe7c44d3.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00199;src:url('chunks/assets/font_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.199000;font-style: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);}
.m1_c00199{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls1_c00199{letter-spacing:0.000000px;}
.ls0_c00199{letter-spacing:0.720000px;}
.ls2_c00199{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws4_c00199{word-spacing:-2.376000px;}
.wsd_c00199{word-spacing:-1.944000px;}
.ws2_c00199{word-spacing:-0.840000px;}
.wsf_c00199{word-spacing:-0.720000px;}
.ws7_c00199{word-spacing:-0.072000px;}
.ws1_c00199{word-spacing:0.000000px;}
.wsb_c00199{word-spacing:0.864000px;}
.ws14_c00199{word-spacing:1.296000px;}
.ws13_c00199{word-spacing:1.440000px;}
.ws6_c00199{word-spacing:3.096000px;}
.ws3_c00199{word-spacing:3.312000px;}
.wsa_c00199{word-spacing:3.816000px;}
.wse_c00199{word-spacing:5.688000px;}
.ws5_c00199{word-spacing:6.048000px;}
.ws8_c00199{word-spacing:6.624000px;}
.ws10_c00199{word-spacing:6.768000px;}
.ws11_c00199{word-spacing:7.560000px;}
.ws9_c00199{word-spacing:8.064000px;}
.wsc_c00199{word-spacing:10.080000px;}
.ws12_c00199{word-spacing:14.400000px;}
._0_c00199{margin-left:-480.337200px;}
._4_c00199{margin-left:-6.912000px;}
._3_c00199{margin-left:-5.760000px;}
._1_c00199{margin-left:-4.200000px;}
._2_c00199{margin-left:-1.440000px;}
.fc2_c00199{color:rgb(32,32,32);}
.fc1_c00199{color:rgb(232,86,17);}
.fc0_c00199{color:rgb(60,60,59);}
.fs1_c00199{font-size:42.000000px;}
.fs0_c00199{font-size:60.000000px;}
.fs3_c00199{font-size:72.000000px;}
.fs2_c00199{font-size:84.000000px;}
.y0_c00199{bottom:0.000000px;}
.y1_c00199{bottom:41.250000px;}
.y18_c00199{bottom:226.304700px;}
.y17_c00199{bottom:256.310700px;}
.y16_c00199{bottom:286.316700px;}
.y15_c00199{bottom:316.322700px;}
.y14_c00199{bottom:346.328700px;}
.y13_c00199{bottom:376.334700px;}
.y12_c00199{bottom:436.334700px;}
.y11_c00199{bottom:526.250700px;}
.y10_c00199{bottom:556.256700px;}
.yf_c00199{bottom:586.262700px;}
.ye_c00199{bottom:616.268700px;}
.yd_c00199{bottom:646.274700px;}
.yc_c00199{bottom:676.280700px;}
.yb_c00199{bottom:706.286700px;}
.ya_c00199{bottom:736.292700px;}
.y9_c00199{bottom:766.298700px;}
.y8_c00199{bottom:796.304700px;}
.y7_c00199{bottom:826.310700px;}
.y6_c00199{bottom:856.316700px;}
.y5_c00199{bottom:886.322700px;}
.y4_c00199{bottom:916.328700px;}
.y3_c00199{bottom:946.334700px;}
.y2_c00199{bottom:1006.334700px;}
.h2_c00199{height:54.000000px;}
.h4_c00199{height:64.800000px;}
.h5_c00199{height:67.320000px;}
.h3_c00199{height:78.540000px;}
.h0_c00199{height:1262.835000px;}
.h1_c00199{height:1263.000000px;}
.w0_c00199{width:892.914000px;}
.w1_c00199{width:893.250000px;}
.x0_c00199{left:0.000000px;}
.x2_c00199{left:90.000000px;}
.x3_c00199{left:106.500000px;}
.x1_c00199{left:785.768850px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls1_c00199{letter-spacing:0.000000pt;}
.ls0_c00199{letter-spacing:0.640000pt;}
.ls2_c00199{letter-spacing:0.746667pt;}
.ws0_c00199{word-spacing:-9.066667pt;}
.ws4_c00199{word-spacing:-2.112000pt;}
.wsd_c00199{word-spacing:-1.728000pt;}
.ws2_c00199{word-spacing:-0.746667pt;}
.wsf_c00199{word-spacing:-0.640000pt;}
.ws7_c00199{word-spacing:-0.064000pt;}
.ws1_c00199{word-spacing:0.000000pt;}
.wsb_c00199{word-spacing:0.768000pt;}
.ws14_c00199{word-spacing:1.152000pt;}
.ws13_c00199{word-spacing:1.280000pt;}
.ws6_c00199{word-spacing:2.752000pt;}
.ws3_c00199{word-spacing:2.944000pt;}
.wsa_c00199{word-spacing:3.392000pt;}
.wse_c00199{word-spacing:5.056000pt;}
.ws5_c00199{word-spacing:5.376000pt;}
.ws8_c00199{word-spacing:5.888000pt;}
.ws10_c00199{word-spacing:6.016000pt;}
.ws11_c00199{word-spacing:6.720000pt;}
.ws9_c00199{word-spacing:7.168000pt;}
.wsc_c00199{word-spacing:8.960000pt;}
.ws12_c00199{word-spacing:12.800000pt;}
._0_c00199{margin-left:-426.966400pt;}
._4_c00199{margin-left:-6.144000pt;}
._3_c00199{margin-left:-5.120000pt;}
._1_c00199{margin-left:-3.733333pt;}
._2_c00199{margin-left:-1.280000pt;}
.fs1_c00199{font-size:37.333333pt;}
.fs0_c00199{font-size:53.333333pt;}
.fs3_c00199{font-size:64.000000pt;}
.fs2_c00199{font-size:74.666667pt;}
.y0_c00199{bottom:0.000000pt;}
.y1_c00199{bottom:36.666667pt;}
.y18_c00199{bottom:201.159733pt;}
.y17_c00199{bottom:227.831733pt;}
.y16_c00199{bottom:254.503733pt;}
.y15_c00199{bottom:281.175733pt;}
.y14_c00199{bottom:307.847733pt;}
.y13_c00199{bottom:334.519733pt;}
.y12_c00199{bottom:387.853067pt;}
.y11_c00199{bottom:467.778400pt;}
.y10_c00199{bottom:494.450400pt;}
.yf_c00199{bottom:521.122400pt;}
.ye_c00199{bottom:547.794400pt;}
.yd_c00199{bottom:574.466400pt;}
.yc_c00199{bottom:601.138400pt;}
.yb_c00199{bottom:627.810400pt;}
.ya_c00199{bottom:654.482400pt;}
.y9_c00199{bottom:681.154400pt;}
.y8_c00199{bottom:707.826400pt;}
.y7_c00199{bottom:734.498400pt;}
.y6_c00199{bottom:761.170400pt;}
.y5_c00199{bottom:787.842400pt;}
.y4_c00199{bottom:814.514400pt;}
.y3_c00199{bottom:841.186400pt;}
.y2_c00199{bottom:894.519733pt;}
.h2_c00199{height:48.000000pt;}
.h4_c00199{height:57.600000pt;}
.h5_c00199{height:59.840000pt;}
.h3_c00199{height:69.813333pt;}
.h0_c00199{height:1122.520000pt;}
.h1_c00199{height:1122.666667pt;}
.w0_c00199{width:793.701333pt;}
.w1_c00199{width:794.000000pt;}
.x0_c00199{left:0.000000pt;}
.x2_c00199{left:80.000000pt;}
.x3_c00199{left:94.666667pt;}
.x1_c00199{left:698.461200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00200;src:url('chunks/assets/font_cd2d757d2082251c19f4c788.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00200;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00200;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;line-height:1.155000;font-style: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);}
.m1_c00200{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls2_c00200{letter-spacing:0.000000px;}
.ls0_c00200{letter-spacing:0.864000px;}
.ls1_c00200{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00200{word-spacing:-13.104000px;}
.ws0_c00200{word-spacing:-10.200000px;}
.ws6_c00200{word-spacing:-4.560000px;}
.ws5_c00200{word-spacing:-3.600000px;}
.ws3_c00200{word-spacing:-3.528000px;}
.ws4_c00200{word-spacing:-0.864000px;}
.ws2_c00200{word-spacing:0.000000px;}
._0_c00200{margin-left:-480.337200px;}
._6_c00200{margin-left:-11.352000px;}
._7_c00200{margin-left:-9.600000px;}
._4_c00200{margin-left:-7.848000px;}
._5_c00200{margin-left:-6.480000px;}
._1_c00200{margin-left:-4.200000px;}
._2_c00200{margin-left:-1.440000px;}
._3_c00200{width:3.528000px;}
._8_c00200{width:4.560000px;}
.fc3_c00200{color:rgb(255,255,255);}
.fc2_c00200{color:rgb(233,83,14);}
.fc1_c00200{color:rgb(232,86,17);}
.fc0_c00200{color:rgb(60,60,59);}
.fs1_c00200{font-size:42.000000px;}
.fs0_c00200{font-size:60.000000px;}
.fs3_c00200{font-size:72.000000px;}
.fs4_c00200{font-size:120.000000px;}
.fs2_c00200{font-size:360.000000px;}
.y0_c00200{bottom:0.000000px;}
.y1_c00200{bottom:41.250000px;}
.y9_c00200{bottom:574.328700px;}
.y8_c00200{bottom:595.334700px;}
.y7_c00200{bottom:616.340700px;}
.y6_c00200{bottom:663.734700px;}
.y5_c00200{bottom:685.334700px;}
.y4_c00200{bottom:706.340700px;}
.y3_c00200{bottom:752.834700px;}
.yd_c00200{bottom:916.334700px;}
.yc_c00200{bottom:946.334700px;}
.yb_c00200{bottom:976.334700px;}
.ya_c00200{bottom:1006.334700px;}
.y2_c00200{bottom:1093.526700px;}
.h2_c00200{height:54.000000px;}
.h5_c00200{height:64.800000px;}
.h4_c00200{height:66.456000px;}
.h6_c00200{height:112.200000px;}
.h3_c00200{height:324.000000px;}
.h0_c00200{height:1262.835000px;}
.h1_c00200{height:1263.000000px;}
.w0_c00200{width:892.914000px;}
.w1_c00200{width:893.250000px;}
.x0_c00200{left:0.000000px;}
.x2_c00200{left:81.290250px;}
.x3_c00200{left:82.393650px;}
.x5_c00200{left:112.287450px;}
.x4_c00200{left:127.393650px;}
.x1_c00200{left:789.428850px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls2_c00200{letter-spacing:0.000000pt;}
.ls0_c00200{letter-spacing:0.768000pt;}
.ls1_c00200{letter-spacing:1.066667pt;}
.ws1_c00200{word-spacing:-11.648000pt;}
.ws0_c00200{word-spacing:-9.066667pt;}
.ws6_c00200{word-spacing:-4.053333pt;}
.ws5_c00200{word-spacing:-3.200000pt;}
.ws3_c00200{word-spacing:-3.136000pt;}
.ws4_c00200{word-spacing:-0.768000pt;}
.ws2_c00200{word-spacing:0.000000pt;}
._0_c00200{margin-left:-426.966400pt;}
._6_c00200{margin-left:-10.090667pt;}
._7_c00200{margin-left:-8.533333pt;}
._4_c00200{margin-left:-6.976000pt;}
._5_c00200{margin-left:-5.760000pt;}
._1_c00200{margin-left:-3.733333pt;}
._2_c00200{margin-left:-1.280000pt;}
._3_c00200{width:3.136000pt;}
._8_c00200{width:4.053333pt;}
.fs1_c00200{font-size:37.333333pt;}
.fs0_c00200{font-size:53.333333pt;}
.fs3_c00200{font-size:64.000000pt;}
.fs4_c00200{font-size:106.666667pt;}
.fs2_c00200{font-size:320.000000pt;}
.y0_c00200{bottom:0.000000pt;}
.y1_c00200{bottom:36.666667pt;}
.y9_c00200{bottom:510.514400pt;}
.y8_c00200{bottom:529.186400pt;}
.y7_c00200{bottom:547.858400pt;}
.y6_c00200{bottom:589.986400pt;}
.y5_c00200{bottom:609.186400pt;}
.y4_c00200{bottom:627.858400pt;}
.y3_c00200{bottom:669.186400pt;}
.yd_c00200{bottom:814.519733pt;}
.yc_c00200{bottom:841.186400pt;}
.yb_c00200{bottom:867.853067pt;}
.ya_c00200{bottom:894.519733pt;}
.y2_c00200{bottom:972.023733pt;}
.h2_c00200{height:48.000000pt;}
.h5_c00200{height:57.600000pt;}
.h4_c00200{height:59.072000pt;}
.h6_c00200{height:99.733333pt;}
.h3_c00200{height:288.000000pt;}
.h0_c00200{height:1122.520000pt;}
.h1_c00200{height:1122.666667pt;}
.w0_c00200{width:793.701333pt;}
.w1_c00200{width:794.000000pt;}
.x0_c00200{left:0.000000pt;}
.x2_c00200{left:72.258000pt;}
.x3_c00200{left:73.238800pt;}
.x5_c00200{left:99.811067pt;}
.x4_c00200{left:113.238800pt;}
.x1_c00200{left:701.714533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9336a84ddb46a296126c8b8f.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00201;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00201;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.161000;font-style: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);}
.m1_c00201{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls5_c00201{letter-spacing:-0.540000px;}
.ls4_c00201{letter-spacing:0.000000px;}
.ls0_c00201{letter-spacing:0.720000px;}
.ls1_c00201{letter-spacing:0.840000px;}
.ls3_c00201{letter-spacing:1.500000px;}
.ls2_c00201{letter-spacing:1.650000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00201{word-spacing:-21.060000px;}
.ws2_c00201{word-spacing:-17.640000px;}
.ws3_c00201{word-spacing:-11.700000px;}
.ws0_c00201{word-spacing:-10.200000px;}
.ws11_c00201{word-spacing:-2.952000px;}
.ws14_c00201{word-spacing:-1.500000px;}
.wsc_c00201{word-spacing:-0.936000px;}
.ws5_c00201{word-spacing:-0.840000px;}
.wsa_c00201{word-spacing:-0.576000px;}
.ws4_c00201{word-spacing:0.000000px;}
.ws8_c00201{word-spacing:2.088000px;}
.ws9_c00201{word-spacing:2.592000px;}
.ws12_c00201{word-spacing:2.664000px;}
.ws6_c00201{word-spacing:3.456000px;}
.wsb_c00201{word-spacing:3.600000px;}
.wsd_c00201{word-spacing:6.192000px;}
.wsf_c00201{word-spacing:7.704000px;}
.ws7_c00201{word-spacing:8.280000px;}
.wse_c00201{word-spacing:10.008000px;}
.ws10_c00201{word-spacing:17.784000px;}
.ws13_c00201{word-spacing:18.720000px;}
._0_c00201{margin-left:-480.337200px;}
._5_c00201{margin-left:-7.200000px;}
._3_c00201{margin-left:-5.752800px;}
._1_c00201{margin-left:-4.200000px;}
._7_c00201{margin-left:-3.158400px;}
._2_c00201{margin-left:-2.152800px;}
._6_c00201{margin-left:-1.036800px;}
._4_c00201{width:1.087200px;}
.fc3_c00201{color:rgb(32,32,32);}
.fc2_c00201{color:rgb(233,83,14);}
.fc1_c00201{color:rgb(232,86,17);}
.fc4_c00201{color:rgb(157,157,156);}
.fc0_c00201{color:rgb(60,60,59);}
.fs1_c00201{font-size:42.000000px;}
.fs0_c00201{font-size:60.000000px;}
.fs5_c00201{font-size:66.000000px;}
.fs4_c00201{font-size:72.000000px;}
.fs3_c00201{font-size:84.000000px;}
.fs2_c00201{font-size:108.000000px;}
.y0_c00201{bottom:0.000000px;}
.y1_c00201{bottom:41.250000px;}
.y16_c00201{bottom:136.280700px;}
.y15_c00201{bottom:166.286700px;}
.y14_c00201{bottom:196.292700px;}
.y13_c00201{bottom:226.298700px;}
.y12_c00201{bottom:256.304700px;}
.y11_c00201{bottom:286.310700px;}
.y10_c00201{bottom:316.316700px;}
.yf_c00201{bottom:346.322700px;}
.ye_c00201{bottom:376.328700px;}
.yd_c00201{bottom:406.334700px;}
.yc_c00201{bottom:466.334700px;}
.yb_c00201{bottom:556.328700px;}
.ya_c00201{bottom:586.334700px;}
.y9_c00201{bottom:646.334700px;}
.y1c_c00201{bottom:705.947850px;}
.y1b_c00201{bottom:735.947850px;}
.y8_c00201{bottom:736.310700px;}
.y1a_c00201{bottom:765.947850px;}
.y7_c00201{bottom:766.316700px;}
.y19_c00201{bottom:795.947850px;}
.y6_c00201{bottom:796.322700px;}
.y18_c00201{bottom:825.947850px;}
.y5_c00201{bottom:826.328700px;}
.y17_c00201{bottom:855.947850px;}
.y4_c00201{bottom:856.334700px;}
.y3_c00201{bottom:916.334700px;}
.y2_c00201{bottom:1006.334700px;}
.h6_c00201{height:50.292000px;}
.h2_c00201{height:54.000000px;}
.h5_c00201{height:64.800000px;}
.h4_c00201{height:78.540000px;}
.h3_c00201{height:100.980000px;}
.h0_c00201{height:1262.835000px;}
.h1_c00201{height:1263.000000px;}
.w0_c00201{width:892.914000px;}
.w1_c00201{width:893.250000px;}
.x0_c00201{left:0.000000px;}
.x2_c00201{left:82.500000px;}
.x3_c00201{left:90.000000px;}
.x4_c00201{left:106.500000px;}
.x5_c00201{left:675.611100px;}
.x1_c00201{left:786.953850px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls5_c00201{letter-spacing:-0.480000pt;}
.ls4_c00201{letter-spacing:0.000000pt;}
.ls0_c00201{letter-spacing:0.640000pt;}
.ls1_c00201{letter-spacing:0.746667pt;}
.ls3_c00201{letter-spacing:1.333333pt;}
.ls2_c00201{letter-spacing:1.466667pt;}
.ws1_c00201{word-spacing:-18.720000pt;}
.ws2_c00201{word-spacing:-15.680000pt;}
.ws3_c00201{word-spacing:-10.400000pt;}
.ws0_c00201{word-spacing:-9.066667pt;}
.ws11_c00201{word-spacing:-2.624000pt;}
.ws14_c00201{word-spacing:-1.333333pt;}
.wsc_c00201{word-spacing:-0.832000pt;}
.ws5_c00201{word-spacing:-0.746667pt;}
.wsa_c00201{word-spacing:-0.512000pt;}
.ws4_c00201{word-spacing:0.000000pt;}
.ws8_c00201{word-spacing:1.856000pt;}
.ws9_c00201{word-spacing:2.304000pt;}
.ws12_c00201{word-spacing:2.368000pt;}
.ws6_c00201{word-spacing:3.072000pt;}
.wsb_c00201{word-spacing:3.200000pt;}
.wsd_c00201{word-spacing:5.504000pt;}
.wsf_c00201{word-spacing:6.848000pt;}
.ws7_c00201{word-spacing:7.360000pt;}
.wse_c00201{word-spacing:8.896000pt;}
.ws10_c00201{word-spacing:15.808000pt;}
.ws13_c00201{word-spacing:16.640000pt;}
._0_c00201{margin-left:-426.966400pt;}
._5_c00201{margin-left:-6.400000pt;}
._3_c00201{margin-left:-5.113600pt;}
._1_c00201{margin-left:-3.733333pt;}
._7_c00201{margin-left:-2.807467pt;}
._2_c00201{margin-left:-1.913600pt;}
._6_c00201{margin-left:-0.921600pt;}
._4_c00201{width:0.966400pt;}
.fs1_c00201{font-size:37.333333pt;}
.fs0_c00201{font-size:53.333333pt;}
.fs5_c00201{font-size:58.666667pt;}
.fs4_c00201{font-size:64.000000pt;}
.fs3_c00201{font-size:74.666667pt;}
.fs2_c00201{font-size:96.000000pt;}
.y0_c00201{bottom:0.000000pt;}
.y1_c00201{bottom:36.666667pt;}
.y16_c00201{bottom:121.138400pt;}
.y15_c00201{bottom:147.810400pt;}
.y14_c00201{bottom:174.482400pt;}
.y13_c00201{bottom:201.154400pt;}
.y12_c00201{bottom:227.826400pt;}
.y11_c00201{bottom:254.498400pt;}
.y10_c00201{bottom:281.170400pt;}
.yf_c00201{bottom:307.842400pt;}
.ye_c00201{bottom:334.514400pt;}
.yd_c00201{bottom:361.186400pt;}
.yc_c00201{bottom:414.519733pt;}
.yb_c00201{bottom:494.514400pt;}
.ya_c00201{bottom:521.186400pt;}
.y9_c00201{bottom:574.519733pt;}
.y1c_c00201{bottom:627.509200pt;}
.y1b_c00201{bottom:654.175867pt;}
.y8_c00201{bottom:654.498400pt;}
.y1a_c00201{bottom:680.842533pt;}
.y7_c00201{bottom:681.170400pt;}
.y19_c00201{bottom:707.509200pt;}
.y6_c00201{bottom:707.842400pt;}
.y18_c00201{bottom:734.175867pt;}
.y5_c00201{bottom:734.514400pt;}
.y17_c00201{bottom:760.842533pt;}
.y4_c00201{bottom:761.186400pt;}
.y3_c00201{bottom:814.519733pt;}
.y2_c00201{bottom:894.519733pt;}
.h6_c00201{height:44.704000pt;}
.h2_c00201{height:48.000000pt;}
.h5_c00201{height:57.600000pt;}
.h4_c00201{height:69.813333pt;}
.h3_c00201{height:89.760000pt;}
.h0_c00201{height:1122.520000pt;}
.h1_c00201{height:1122.666667pt;}
.w0_c00201{width:793.701333pt;}
.w1_c00201{width:794.000000pt;}
.x0_c00201{left:0.000000pt;}
.x2_c00201{left:73.333333pt;}
.x3_c00201{left:80.000000pt;}
.x4_c00201{left:94.666667pt;}
.x5_c00201{left:600.543200pt;}
.x1_c00201{left:699.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00202;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.199000;font-style: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);}
.m1_c00202{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls1_c00202{letter-spacing:0.000000px;}
.ls0_c00202{letter-spacing:0.720000px;}
.ls2_c00202{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00202{word-spacing:-0.840000px;}
.ws1_c00202{word-spacing:0.000000px;}
.wse_c00202{word-spacing:0.720000px;}
.ws6_c00202{word-spacing:1.080000px;}
.ws9_c00202{word-spacing:1.224000px;}
.ws7_c00202{word-spacing:2.232000px;}
.wsc_c00202{word-spacing:4.752000px;}
.wsd_c00202{word-spacing:5.832000px;}
.wsa_c00202{word-spacing:6.552000px;}
.ws8_c00202{word-spacing:7.200000px;}
.wsf_c00202{word-spacing:8.280000px;}
.ws5_c00202{word-spacing:8.352000px;}
.ws3_c00202{word-spacing:8.496000px;}
.wsb_c00202{word-spacing:8.784000px;}
.ws4_c00202{word-spacing:14.688000px;}
._0_c00202{margin-left:-480.337200px;}
._3_c00202{margin-left:-5.788800px;}
._1_c00202{margin-left:-4.200000px;}
._2_c00202{margin-left:-2.145600px;}
._4_c00202{margin-left:-1.051200px;}
.fc2_c00202{color:rgb(32,32,32);}
.fc1_c00202{color:rgb(232,86,17);}
.fc0_c00202{color:rgb(60,60,59);}
.fs1_c00202{font-size:42.000000px;}
.fs0_c00202{font-size:60.000000px;}
.fs3_c00202{font-size:72.000000px;}
.fs2_c00202{font-size:84.000000px;}
.y0_c00202{bottom:0.000000px;}
.y1_c00202{bottom:41.250000px;}
.y12_c00202{bottom:406.280700px;}
.y11_c00202{bottom:436.286700px;}
.y10_c00202{bottom:466.292700px;}
.yf_c00202{bottom:496.298700px;}
.ye_c00202{bottom:526.304700px;}
.yd_c00202{bottom:556.310700px;}
.yc_c00202{bottom:586.316700px;}
.yb_c00202{bottom:616.322700px;}
.ya_c00202{bottom:646.328700px;}
.y9_c00202{bottom:676.334700px;}
.y8_c00202{bottom:736.334700px;}
.y7_c00202{bottom:826.310700px;}
.y6_c00202{bottom:856.316700px;}
.y5_c00202{bottom:886.322700px;}
.y4_c00202{bottom:916.328700px;}
.y3_c00202{bottom:946.334700px;}
.y2_c00202{bottom:1006.334700px;}
.h2_c00202{height:54.000000px;}
.h4_c00202{height:64.800000px;}
.h3_c00202{height:78.540000px;}
.h0_c00202{height:1262.835000px;}
.h1_c00202{height:1263.000000px;}
.w0_c00202{width:892.914000px;}
.w1_c00202{width:893.250000px;}
.x0_c00202{left:0.000000px;}
.x2_c00202{left:90.000000px;}
.x3_c00202{left:106.500000px;}
.x1_c00202{left:786.803850px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls1_c00202{letter-spacing:0.000000pt;}
.ls0_c00202{letter-spacing:0.640000pt;}
.ls2_c00202{letter-spacing:0.746667pt;}
.ws0_c00202{word-spacing:-9.066667pt;}
.ws2_c00202{word-spacing:-0.746667pt;}
.ws1_c00202{word-spacing:0.000000pt;}
.wse_c00202{word-spacing:0.640000pt;}
.ws6_c00202{word-spacing:0.960000pt;}
.ws9_c00202{word-spacing:1.088000pt;}
.ws7_c00202{word-spacing:1.984000pt;}
.wsc_c00202{word-spacing:4.224000pt;}
.wsd_c00202{word-spacing:5.184000pt;}
.wsa_c00202{word-spacing:5.824000pt;}
.ws8_c00202{word-spacing:6.400000pt;}
.wsf_c00202{word-spacing:7.360000pt;}
.ws5_c00202{word-spacing:7.424000pt;}
.ws3_c00202{word-spacing:7.552000pt;}
.wsb_c00202{word-spacing:7.808000pt;}
.ws4_c00202{word-spacing:13.056000pt;}
._0_c00202{margin-left:-426.966400pt;}
._3_c00202{margin-left:-5.145600pt;}
._1_c00202{margin-left:-3.733333pt;}
._2_c00202{margin-left:-1.907200pt;}
._4_c00202{margin-left:-0.934400pt;}
.fs1_c00202{font-size:37.333333pt;}
.fs0_c00202{font-size:53.333333pt;}
.fs3_c00202{font-size:64.000000pt;}
.fs2_c00202{font-size:74.666667pt;}
.y0_c00202{bottom:0.000000pt;}
.y1_c00202{bottom:36.666667pt;}
.y12_c00202{bottom:361.138400pt;}
.y11_c00202{bottom:387.810400pt;}
.y10_c00202{bottom:414.482400pt;}
.yf_c00202{bottom:441.154400pt;}
.ye_c00202{bottom:467.826400pt;}
.yd_c00202{bottom:494.498400pt;}
.yc_c00202{bottom:521.170400pt;}
.yb_c00202{bottom:547.842400pt;}
.ya_c00202{bottom:574.514400pt;}
.y9_c00202{bottom:601.186400pt;}
.y8_c00202{bottom:654.519733pt;}
.y7_c00202{bottom:734.498400pt;}
.y6_c00202{bottom:761.170400pt;}
.y5_c00202{bottom:787.842400pt;}
.y4_c00202{bottom:814.514400pt;}
.y3_c00202{bottom:841.186400pt;}
.y2_c00202{bottom:894.519733pt;}
.h2_c00202{height:48.000000pt;}
.h4_c00202{height:57.600000pt;}
.h3_c00202{height:69.813333pt;}
.h0_c00202{height:1122.520000pt;}
.h1_c00202{height:1122.666667pt;}
.w0_c00202{width:793.701333pt;}
.w1_c00202{width:794.000000pt;}
.x0_c00202{left:0.000000pt;}
.x2_c00202{left:80.000000pt;}
.x3_c00202{left:94.666667pt;}
.x1_c00202{left:699.381200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0bca0fce60dc5627d3e443b.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00203;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00203;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.161000;font-style: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);}
.m1_c00203{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls5_c00203{letter-spacing:-0.324000px;}
.ls4_c00203{letter-spacing:0.000000px;}
.ls1_c00203{letter-spacing:0.720000px;}
.ls0_c00203{letter-spacing:0.840000px;}
.ls3_c00203{letter-spacing:1.500000px;}
.ls2_c00203{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00203{word-spacing:-21.276000px;}
.ws2_c00203{word-spacing:-17.640000px;}
.ws3_c00203{word-spacing:-14.850000px;}
.ws4_c00203{word-spacing:-11.700000px;}
.ws0_c00203{word-spacing:-10.200000px;}
.ws14_c00203{word-spacing:-5.184000px;}
.ws15_c00203{word-spacing:-2.952000px;}
.ws11_c00203{word-spacing:-2.376000px;}
.wsa_c00203{word-spacing:-1.728000px;}
.wsf_c00203{word-spacing:-1.584000px;}
.ws18_c00203{word-spacing:-1.500000px;}
.wsb_c00203{word-spacing:-1.008000px;}
.ws6_c00203{word-spacing:-0.840000px;}
.ws5_c00203{word-spacing:0.000000px;}
.wsd_c00203{word-spacing:1.656000px;}
.wse_c00203{word-spacing:3.024000px;}
.ws13_c00203{word-spacing:4.536000px;}
.wsc_c00203{word-spacing:5.904000px;}
.ws10_c00203{word-spacing:7.200000px;}
.ws9_c00203{word-spacing:7.920000px;}
.ws16_c00203{word-spacing:10.008000px;}
.ws8_c00203{word-spacing:12.816000px;}
.ws7_c00203{word-spacing:14.328000px;}
.ws17_c00203{word-spacing:14.544000px;}
.ws12_c00203{word-spacing:18.288000px;}
._0_c00203{margin-left:-480.337200px;}
._4_c00203{margin-left:-6.480000px;}
._7_c00203{margin-left:-5.400000px;}
._1_c00203{margin-left:-4.200000px;}
._3_c00203{margin-left:-2.466000px;}
._2_c00203{margin-left:-1.134000px;}
._5_c00203{width:1.033200px;}
._6_c00203{width:5.256000px;}
.fc3_c00203{color:rgb(32,32,32);}
.fc2_c00203{color:rgb(233,83,14);}
.fc1_c00203{color:rgb(232,86,17);}
.fc4_c00203{color:rgb(157,157,156);}
.fc0_c00203{color:rgb(60,60,59);}
.fs1_c00203{font-size:42.000000px;}
.fs0_c00203{font-size:60.000000px;}
.fs5_c00203{font-size:66.000000px;}
.fs4_c00203{font-size:72.000000px;}
.fs3_c00203{font-size:84.000000px;}
.fs2_c00203{font-size:108.000000px;}
.y0_c00203{bottom:0.000000px;}
.y1_c00203{bottom:41.250000px;}
.y19_c00203{bottom:136.256700px;}
.y18_c00203{bottom:166.262700px;}
.y17_c00203{bottom:196.268700px;}
.y16_c00203{bottom:226.274700px;}
.y15_c00203{bottom:256.280700px;}
.y14_c00203{bottom:286.286700px;}
.y13_c00203{bottom:316.292700px;}
.y12_c00203{bottom:346.298700px;}
.y11_c00203{bottom:376.304700px;}
.y10_c00203{bottom:406.310700px;}
.yf_c00203{bottom:436.316700px;}
.ye_c00203{bottom:466.322700px;}
.yd_c00203{bottom:496.328700px;}
.yc_c00203{bottom:526.334700px;}
.yb_c00203{bottom:586.334700px;}
.ya_c00203{bottom:676.298700px;}
.y9_c00203{bottom:706.304700px;}
.y1e_c00203{bottom:735.947850px;}
.y8_c00203{bottom:736.310700px;}
.y1d_c00203{bottom:765.947850px;}
.y7_c00203{bottom:766.316700px;}
.y1c_c00203{bottom:795.947850px;}
.y6_c00203{bottom:796.322700px;}
.y1b_c00203{bottom:825.947850px;}
.y5_c00203{bottom:826.328700px;}
.y1a_c00203{bottom:855.947850px;}
.y4_c00203{bottom:856.334700px;}
.y3_c00203{bottom:916.334700px;}
.y2_c00203{bottom:1006.334700px;}
.h6_c00203{height:50.292000px;}
.h2_c00203{height:54.000000px;}
.h5_c00203{height:64.800000px;}
.h4_c00203{height:78.540000px;}
.h3_c00203{height:100.980000px;}
.h0_c00203{height:1262.835000px;}
.h1_c00203{height:1263.000000px;}
.w0_c00203{width:892.914000px;}
.w1_c00203{width:893.250000px;}
.x0_c00203{left:0.000000px;}
.x2_c00203{left:82.500000px;}
.x3_c00203{left:90.000000px;}
.x4_c00203{left:106.500000px;}
.x5_c00203{left:675.611100px;}
.x1_c00203{left:785.828850px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls5_c00203{letter-spacing:-0.288000pt;}
.ls4_c00203{letter-spacing:0.000000pt;}
.ls1_c00203{letter-spacing:0.640000pt;}
.ls0_c00203{letter-spacing:0.746667pt;}
.ls3_c00203{letter-spacing:1.333333pt;}
.ls2_c00203{letter-spacing:1.466667pt;}
.ws1_c00203{word-spacing:-18.912000pt;}
.ws2_c00203{word-spacing:-15.680000pt;}
.ws3_c00203{word-spacing:-13.200000pt;}
.ws4_c00203{word-spacing:-10.400000pt;}
.ws0_c00203{word-spacing:-9.066667pt;}
.ws14_c00203{word-spacing:-4.608000pt;}
.ws15_c00203{word-spacing:-2.624000pt;}
.ws11_c00203{word-spacing:-2.112000pt;}
.wsa_c00203{word-spacing:-1.536000pt;}
.wsf_c00203{word-spacing:-1.408000pt;}
.ws18_c00203{word-spacing:-1.333333pt;}
.wsb_c00203{word-spacing:-0.896000pt;}
.ws6_c00203{word-spacing:-0.746667pt;}
.ws5_c00203{word-spacing:0.000000pt;}
.wsd_c00203{word-spacing:1.472000pt;}
.wse_c00203{word-spacing:2.688000pt;}
.ws13_c00203{word-spacing:4.032000pt;}
.wsc_c00203{word-spacing:5.248000pt;}
.ws10_c00203{word-spacing:6.400000pt;}
.ws9_c00203{word-spacing:7.040000pt;}
.ws16_c00203{word-spacing:8.896000pt;}
.ws8_c00203{word-spacing:11.392000pt;}
.ws7_c00203{word-spacing:12.736000pt;}
.ws17_c00203{word-spacing:12.928000pt;}
.ws12_c00203{word-spacing:16.256000pt;}
._0_c00203{margin-left:-426.966400pt;}
._4_c00203{margin-left:-5.760000pt;}
._7_c00203{margin-left:-4.800000pt;}
._1_c00203{margin-left:-3.733333pt;}
._3_c00203{margin-left:-2.192000pt;}
._2_c00203{margin-left:-1.008000pt;}
._5_c00203{width:0.918400pt;}
._6_c00203{width:4.672000pt;}
.fs1_c00203{font-size:37.333333pt;}
.fs0_c00203{font-size:53.333333pt;}
.fs5_c00203{font-size:58.666667pt;}
.fs4_c00203{font-size:64.000000pt;}
.fs3_c00203{font-size:74.666667pt;}
.fs2_c00203{font-size:96.000000pt;}
.y0_c00203{bottom:0.000000pt;}
.y1_c00203{bottom:36.666667pt;}
.y19_c00203{bottom:121.117067pt;}
.y18_c00203{bottom:147.789067pt;}
.y17_c00203{bottom:174.461067pt;}
.y16_c00203{bottom:201.133067pt;}
.y15_c00203{bottom:227.805067pt;}
.y14_c00203{bottom:254.477067pt;}
.y13_c00203{bottom:281.149067pt;}
.y12_c00203{bottom:307.821067pt;}
.y11_c00203{bottom:334.493067pt;}
.y10_c00203{bottom:361.165067pt;}
.yf_c00203{bottom:387.837067pt;}
.ye_c00203{bottom:414.509067pt;}
.yd_c00203{bottom:441.181067pt;}
.yc_c00203{bottom:467.853067pt;}
.yb_c00203{bottom:521.186400pt;}
.ya_c00203{bottom:601.154400pt;}
.y9_c00203{bottom:627.826400pt;}
.y1e_c00203{bottom:654.175867pt;}
.y8_c00203{bottom:654.498400pt;}
.y1d_c00203{bottom:680.842533pt;}
.y7_c00203{bottom:681.170400pt;}
.y1c_c00203{bottom:707.509200pt;}
.y6_c00203{bottom:707.842400pt;}
.y1b_c00203{bottom:734.175867pt;}
.y5_c00203{bottom:734.514400pt;}
.y1a_c00203{bottom:760.842533pt;}
.y4_c00203{bottom:761.186400pt;}
.y3_c00203{bottom:814.519733pt;}
.y2_c00203{bottom:894.519733pt;}
.h6_c00203{height:44.704000pt;}
.h2_c00203{height:48.000000pt;}
.h5_c00203{height:57.600000pt;}
.h4_c00203{height:69.813333pt;}
.h3_c00203{height:89.760000pt;}
.h0_c00203{height:1122.520000pt;}
.h1_c00203{height:1122.666667pt;}
.w0_c00203{width:793.701333pt;}
.w1_c00203{width:794.000000pt;}
.x0_c00203{left:0.000000pt;}
.x2_c00203{left:73.333333pt;}
.x3_c00203{left:80.000000pt;}
.x4_c00203{left:94.666667pt;}
.x5_c00203{left:600.543200pt;}
.x1_c00203{left:698.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_404726e6b27da81fd5ea9fff.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00204;src:url('chunks/assets/font_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.199000;font-style: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);}
.m1_c00204{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls2_c00204{letter-spacing:0.000000px;}
.ls1_c00204{letter-spacing:0.720000px;}
.ls0_c00204{letter-spacing:0.840000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00204{word-spacing:-12.960000px;}
.ws0_c00204{word-spacing:-10.200000px;}
.ws4_c00204{word-spacing:-5.688000px;}
.ws6_c00204{word-spacing:-3.600000px;}
.ws3_c00204{word-spacing:-0.840000px;}
.ws2_c00204{word-spacing:0.000000px;}
.ws7_c00204{word-spacing:1.368000px;}
.ws9_c00204{word-spacing:3.384000px;}
.wsa_c00204{word-spacing:4.752000px;}
.wsb_c00204{word-spacing:5.976000px;}
.ws5_c00204{word-spacing:7.992000px;}
.ws8_c00204{word-spacing:11.304000px;}
._0_c00204{margin-left:-480.336600px;}
._4_c00204{margin-left:-5.234400px;}
._1_c00204{margin-left:-4.200000px;}
._2_c00204{margin-left:-2.649600px;}
._3_c00204{margin-left:-1.440000px;}
._5_c00204{width:1.274400px;}
.fc2_c00204{color:rgb(32,32,32);}
.fc1_c00204{color:rgb(232,86,17);}
.fc0_c00204{color:rgb(60,60,59);}
.fs1_c00204{font-size:42.000000px;}
.fs0_c00204{font-size:60.000000px;}
.fs3_c00204{font-size:72.000000px;}
.fs2_c00204{font-size:84.000000px;}
.y0_c00204{bottom:0.000000px;}
.y1_c00204{bottom:41.250000px;}
.yb_c00204{bottom:706.286700px;}
.ya_c00204{bottom:736.292700px;}
.y9_c00204{bottom:766.298700px;}
.y8_c00204{bottom:796.304700px;}
.y7_c00204{bottom:826.310700px;}
.y6_c00204{bottom:856.316700px;}
.y5_c00204{bottom:886.322700px;}
.y4_c00204{bottom:916.328700px;}
.y3_c00204{bottom:946.334700px;}
.y2_c00204{bottom:1006.334700px;}
.h2_c00204{height:54.000000px;}
.h4_c00204{height:64.800000px;}
.h3_c00204{height:78.540000px;}
.h0_c00204{height:1262.835000px;}
.h1_c00204{height:1263.000000px;}
.w0_c00204{width:892.914000px;}
.w1_c00204{width:893.250000px;}
.x0_c00204{left:0.000000px;}
.x2_c00204{left:90.000000px;}
.x3_c00204{left:106.500000px;}
.x1_c00204{left:786.878700px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls2_c00204{letter-spacing:0.000000pt;}
.ls1_c00204{letter-spacing:0.640000pt;}
.ls0_c00204{letter-spacing:0.746667pt;}
.ws1_c00204{word-spacing:-11.520000pt;}
.ws0_c00204{word-spacing:-9.066667pt;}
.ws4_c00204{word-spacing:-5.056000pt;}
.ws6_c00204{word-spacing:-3.200000pt;}
.ws3_c00204{word-spacing:-0.746667pt;}
.ws2_c00204{word-spacing:0.000000pt;}
.ws7_c00204{word-spacing:1.216000pt;}
.ws9_c00204{word-spacing:3.008000pt;}
.wsa_c00204{word-spacing:4.224000pt;}
.wsb_c00204{word-spacing:5.312000pt;}
.ws5_c00204{word-spacing:7.104000pt;}
.ws8_c00204{word-spacing:10.048000pt;}
._0_c00204{margin-left:-426.965867pt;}
._4_c00204{margin-left:-4.652800pt;}
._1_c00204{margin-left:-3.733333pt;}
._2_c00204{margin-left:-2.355200pt;}
._3_c00204{margin-left:-1.280000pt;}
._5_c00204{width:1.132800pt;}
.fs1_c00204{font-size:37.333333pt;}
.fs0_c00204{font-size:53.333333pt;}
.fs3_c00204{font-size:64.000000pt;}
.fs2_c00204{font-size:74.666667pt;}
.y0_c00204{bottom:0.000000pt;}
.y1_c00204{bottom:36.666667pt;}
.yb_c00204{bottom:627.810400pt;}
.ya_c00204{bottom:654.482400pt;}
.y9_c00204{bottom:681.154400pt;}
.y8_c00204{bottom:707.826400pt;}
.y7_c00204{bottom:734.498400pt;}
.y6_c00204{bottom:761.170400pt;}
.y5_c00204{bottom:787.842400pt;}
.y4_c00204{bottom:814.514400pt;}
.y3_c00204{bottom:841.186400pt;}
.y2_c00204{bottom:894.519733pt;}
.h2_c00204{height:48.000000pt;}
.h4_c00204{height:57.600000pt;}
.h3_c00204{height:69.813333pt;}
.h0_c00204{height:1122.520000pt;}
.h1_c00204{height:1122.666667pt;}
.w0_c00204{width:793.701333pt;}
.w1_c00204{width:794.000000pt;}
.x0_c00204{left:0.000000pt;}
.x2_c00204{left:80.000000pt;}
.x3_c00204{left:94.666667pt;}
.x1_c00204{left:699.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00205;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00205;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00205;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00205{font-family:ff5_c00205;line-height:1.155000;font-style: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);}
.m1_c00205{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls2_c00205{letter-spacing:0.000000px;}
.ls0_c00205{letter-spacing:0.864000px;}
.ls1_c00205{letter-spacing:1.200000px;}
.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;}
}
.ws2_c00205{word-spacing:-25.200000px;}
.ws1_c00205{word-spacing:-13.104000px;}
.ws0_c00205{word-spacing:-10.200000px;}
.ws4_c00205{word-spacing:-7.128000px;}
.ws5_c00205{word-spacing:-4.968000px;}
.ws7_c00205{word-spacing:-3.600000px;}
.ws6_c00205{word-spacing:-0.864000px;}
.ws3_c00205{word-spacing:0.000000px;}
._0_c00205{margin-left:-480.336600px;}
._5_c00205{margin-left:-6.480000px;}
._1_c00205{margin-left:-4.200000px;}
._7_c00205{margin-left:-3.000000px;}
._3_c00205{margin-left:-1.440000px;}
._6_c00205{width:3.600000px;}
._4_c00205{width:4.968000px;}
._2_c00205{width:7.128000px;}
.fc3_c00205{color:rgb(255,255,255);}
.fc2_c00205{color:rgb(233,83,14);}
.fc1_c00205{color:rgb(232,86,17);}
.fc0_c00205{color:rgb(60,60,59);}
.fs1_c00205{font-size:42.000000px;}
.fs0_c00205{font-size:60.000000px;}
.fs3_c00205{font-size:72.000000px;}
.fs4_c00205{font-size:120.000000px;}
.fs2_c00205{font-size:360.000000px;}
.y0_c00205{bottom:0.000000px;}
.y1_c00205{bottom:41.250000px;}
.yc_c00205{bottom:484.292700px;}
.yb_c00205{bottom:505.298700px;}
.ya_c00205{bottom:526.304700px;}
.y9_c00205{bottom:574.310700px;}
.y8_c00205{bottom:595.316700px;}
.y7_c00205{bottom:616.322700px;}
.y6_c00205{bottom:664.328700px;}
.y5_c00205{bottom:685.334700px;}
.y4_c00205{bottom:706.340700px;}
.y3_c00205{bottom:752.834700px;}
.yf_c00205{bottom:946.334700px;}
.ye_c00205{bottom:976.334700px;}
.yd_c00205{bottom:1006.334700px;}
.y2_c00205{bottom:1093.526700px;}
.h2_c00205{height:54.000000px;}
.h5_c00205{height:64.800000px;}
.h4_c00205{height:66.456000px;}
.h6_c00205{height:112.200000px;}
.h3_c00205{height:324.000000px;}
.h0_c00205{height:1262.835000px;}
.h1_c00205{height:1263.000000px;}
.w0_c00205{width:892.914000px;}
.w1_c00205{width:893.250000px;}
.x0_c00205{left:0.000000px;}
.x2_c00205{left:81.290250px;}
.x3_c00205{left:82.393650px;}
.x5_c00205{left:112.287450px;}
.x4_c00205{left:127.393650px;}
.x1_c00205{left:785.753700px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls2_c00205{letter-spacing:0.000000pt;}
.ls0_c00205{letter-spacing:0.768000pt;}
.ls1_c00205{letter-spacing:1.066667pt;}
.ws2_c00205{word-spacing:-22.400000pt;}
.ws1_c00205{word-spacing:-11.648000pt;}
.ws0_c00205{word-spacing:-9.066667pt;}
.ws4_c00205{word-spacing:-6.336000pt;}
.ws5_c00205{word-spacing:-4.416000pt;}
.ws7_c00205{word-spacing:-3.200000pt;}
.ws6_c00205{word-spacing:-0.768000pt;}
.ws3_c00205{word-spacing:0.000000pt;}
._0_c00205{margin-left:-426.965867pt;}
._5_c00205{margin-left:-5.760000pt;}
._1_c00205{margin-left:-3.733333pt;}
._7_c00205{margin-left:-2.666667pt;}
._3_c00205{margin-left:-1.280000pt;}
._6_c00205{width:3.200000pt;}
._4_c00205{width:4.416000pt;}
._2_c00205{width:6.336000pt;}
.fs1_c00205{font-size:37.333333pt;}
.fs0_c00205{font-size:53.333333pt;}
.fs3_c00205{font-size:64.000000pt;}
.fs4_c00205{font-size:106.666667pt;}
.fs2_c00205{font-size:320.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y1_c00205{bottom:36.666667pt;}
.yc_c00205{bottom:430.482400pt;}
.yb_c00205{bottom:449.154400pt;}
.ya_c00205{bottom:467.826400pt;}
.y9_c00205{bottom:510.498400pt;}
.y8_c00205{bottom:529.170400pt;}
.y7_c00205{bottom:547.842400pt;}
.y6_c00205{bottom:590.514400pt;}
.y5_c00205{bottom:609.186400pt;}
.y4_c00205{bottom:627.858400pt;}
.y3_c00205{bottom:669.186400pt;}
.yf_c00205{bottom:841.186400pt;}
.ye_c00205{bottom:867.853067pt;}
.yd_c00205{bottom:894.519733pt;}
.y2_c00205{bottom:972.023733pt;}
.h2_c00205{height:48.000000pt;}
.h5_c00205{height:57.600000pt;}
.h4_c00205{height:59.072000pt;}
.h6_c00205{height:99.733333pt;}
.h3_c00205{height:288.000000pt;}
.h0_c00205{height:1122.520000pt;}
.h1_c00205{height:1122.666667pt;}
.w0_c00205{width:793.701333pt;}
.w1_c00205{width:794.000000pt;}
.x0_c00205{left:0.000000pt;}
.x2_c00205{left:72.258000pt;}
.x3_c00205{left:73.238800pt;}
.x5_c00205{left:99.811067pt;}
.x4_c00205{left:113.238800pt;}
.x1_c00205{left:698.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00206;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls5_c00206{letter-spacing:-0.540000px;}
.ls4_c00206{letter-spacing:0.000000px;}
.ls0_c00206{letter-spacing:0.720000px;}
.ls1_c00206{letter-spacing:0.840000px;}
.ls3_c00206{letter-spacing:1.500000px;}
.ls2_c00206{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00206{word-spacing:-21.060000px;}
.ws2_c00206{word-spacing:-17.640000px;}
.ws3_c00206{word-spacing:-12.960000px;}
.ws0_c00206{word-spacing:-10.200000px;}
.wsb_c00206{word-spacing:-4.824000px;}
.ws12_c00206{word-spacing:-1.500000px;}
.ws6_c00206{word-spacing:-1.440000px;}
.ws8_c00206{word-spacing:-1.368000px;}
.ws5_c00206{word-spacing:-0.840000px;}
.ws4_c00206{word-spacing:0.000000px;}
.wsa_c00206{word-spacing:0.936000px;}
.wsc_c00206{word-spacing:1.944000px;}
.ws9_c00206{word-spacing:3.168000px;}
.ws7_c00206{word-spacing:5.112000px;}
.wsf_c00206{word-spacing:6.984000px;}
.ws11_c00206{word-spacing:7.488000px;}
.wsd_c00206{word-spacing:7.776000px;}
.ws10_c00206{word-spacing:14.616000px;}
.wse_c00206{word-spacing:19.800000px;}
._0_c00206{margin-left:-480.336600px;}
._3_c00206{margin-left:-6.487200px;}
._1_c00206{margin-left:-4.200000px;}
._2_c00206{margin-left:-1.440000px;}
.fc3_c00206{color:rgb(32,32,32);}
.fc2_c00206{color:rgb(233,83,14);}
.fc1_c00206{color:rgb(232,86,17);}
.fc4_c00206{color:rgb(157,157,156);}
.fc0_c00206{color:rgb(60,60,59);}
.fs1_c00206{font-size:42.000000px;}
.fs0_c00206{font-size:60.000000px;}
.fs5_c00206{font-size:66.000000px;}
.fs4_c00206{font-size:72.000000px;}
.fs3_c00206{font-size:84.000000px;}
.fs2_c00206{font-size:108.000000px;}
.y0_c00206{bottom:0.000000px;}
.y1_c00206{bottom:41.250000px;}
.y12_c00206{bottom:346.322700px;}
.y11_c00206{bottom:376.328700px;}
.y10_c00206{bottom:406.334700px;}
.yf_c00206{bottom:466.334700px;}
.ye_c00206{bottom:556.274700px;}
.yd_c00206{bottom:586.280700px;}
.yc_c00206{bottom:616.286700px;}
.yb_c00206{bottom:646.292700px;}
.ya_c00206{bottom:676.298700px;}
.y9_c00206{bottom:706.304700px;}
.y17_c00206{bottom:735.947850px;}
.y8_c00206{bottom:736.310700px;}
.y16_c00206{bottom:765.947850px;}
.y7_c00206{bottom:766.316700px;}
.y15_c00206{bottom:795.947850px;}
.y6_c00206{bottom:796.322700px;}
.y14_c00206{bottom:825.947850px;}
.y5_c00206{bottom:826.328700px;}
.y13_c00206{bottom:855.947850px;}
.y4_c00206{bottom:856.334700px;}
.y3_c00206{bottom:916.334700px;}
.y2_c00206{bottom:1006.334700px;}
.h6_c00206{height:50.292000px;}
.h2_c00206{height:54.000000px;}
.h5_c00206{height:64.800000px;}
.h4_c00206{height:78.540000px;}
.h3_c00206{height:100.980000px;}
.h0_c00206{height:1262.835000px;}
.h1_c00206{height:1263.000000px;}
.w0_c00206{width:892.914000px;}
.w1_c00206{width:893.250000px;}
.x0_c00206{left:0.000000px;}
.x2_c00206{left:82.500000px;}
.x3_c00206{left:90.000000px;}
.x4_c00206{left:106.500000px;}
.x5_c00206{left:675.611100px;}
.x1_c00206{left:787.853700px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls5_c00206{letter-spacing:-0.480000pt;}
.ls4_c00206{letter-spacing:0.000000pt;}
.ls0_c00206{letter-spacing:0.640000pt;}
.ls1_c00206{letter-spacing:0.746667pt;}
.ls3_c00206{letter-spacing:1.333333pt;}
.ls2_c00206{letter-spacing:1.466667pt;}
.ws1_c00206{word-spacing:-18.720000pt;}
.ws2_c00206{word-spacing:-15.680000pt;}
.ws3_c00206{word-spacing:-11.520000pt;}
.ws0_c00206{word-spacing:-9.066667pt;}
.wsb_c00206{word-spacing:-4.288000pt;}
.ws12_c00206{word-spacing:-1.333333pt;}
.ws6_c00206{word-spacing:-1.280000pt;}
.ws8_c00206{word-spacing:-1.216000pt;}
.ws5_c00206{word-spacing:-0.746667pt;}
.ws4_c00206{word-spacing:0.000000pt;}
.wsa_c00206{word-spacing:0.832000pt;}
.wsc_c00206{word-spacing:1.728000pt;}
.ws9_c00206{word-spacing:2.816000pt;}
.ws7_c00206{word-spacing:4.544000pt;}
.wsf_c00206{word-spacing:6.208000pt;}
.ws11_c00206{word-spacing:6.656000pt;}
.wsd_c00206{word-spacing:6.912000pt;}
.ws10_c00206{word-spacing:12.992000pt;}
.wse_c00206{word-spacing:17.600000pt;}
._0_c00206{margin-left:-426.965867pt;}
._3_c00206{margin-left:-5.766400pt;}
._1_c00206{margin-left:-3.733333pt;}
._2_c00206{margin-left:-1.280000pt;}
.fs1_c00206{font-size:37.333333pt;}
.fs0_c00206{font-size:53.333333pt;}
.fs5_c00206{font-size:58.666667pt;}
.fs4_c00206{font-size:64.000000pt;}
.fs3_c00206{font-size:74.666667pt;}
.fs2_c00206{font-size:96.000000pt;}
.y0_c00206{bottom:0.000000pt;}
.y1_c00206{bottom:36.666667pt;}
.y12_c00206{bottom:307.842400pt;}
.y11_c00206{bottom:334.514400pt;}
.y10_c00206{bottom:361.186400pt;}
.yf_c00206{bottom:414.519733pt;}
.ye_c00206{bottom:494.466400pt;}
.yd_c00206{bottom:521.138400pt;}
.yc_c00206{bottom:547.810400pt;}
.yb_c00206{bottom:574.482400pt;}
.ya_c00206{bottom:601.154400pt;}
.y9_c00206{bottom:627.826400pt;}
.y17_c00206{bottom:654.175867pt;}
.y8_c00206{bottom:654.498400pt;}
.y16_c00206{bottom:680.842533pt;}
.y7_c00206{bottom:681.170400pt;}
.y15_c00206{bottom:707.509200pt;}
.y6_c00206{bottom:707.842400pt;}
.y14_c00206{bottom:734.175867pt;}
.y5_c00206{bottom:734.514400pt;}
.y13_c00206{bottom:760.842533pt;}
.y4_c00206{bottom:761.186400pt;}
.y3_c00206{bottom:814.519733pt;}
.y2_c00206{bottom:894.519733pt;}
.h6_c00206{height:44.704000pt;}
.h2_c00206{height:48.000000pt;}
.h5_c00206{height:57.600000pt;}
.h4_c00206{height:69.813333pt;}
.h3_c00206{height:89.760000pt;}
.h0_c00206{height:1122.520000pt;}
.h1_c00206{height:1122.666667pt;}
.w0_c00206{width:793.701333pt;}
.w1_c00206{width:794.000000pt;}
.x0_c00206{left:0.000000pt;}
.x2_c00206{left:73.333333pt;}
.x3_c00206{left:80.000000pt;}
.x4_c00206{left:94.666667pt;}
.x5_c00206{left:600.543200pt;}
.x1_c00206{left:700.314400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00207;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.199000;font-style: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);}
.m1_c00207{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls1_c00207{letter-spacing:0.000000px;}
.ls0_c00207{letter-spacing:0.720000px;}
.ls2_c00207{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsf_c00207{word-spacing:-2.808000px;}
.ws6_c00207{word-spacing:-1.728000px;}
.ws11_c00207{word-spacing:-1.440000px;}
.ws2_c00207{word-spacing:-0.840000px;}
.ws1_c00207{word-spacing:0.000000px;}
.ws10_c00207{word-spacing:0.072000px;}
.wsc_c00207{word-spacing:1.656000px;}
.ws5_c00207{word-spacing:1.800000px;}
.wsd_c00207{word-spacing:3.672000px;}
.ws8_c00207{word-spacing:4.680000px;}
.wse_c00207{word-spacing:6.336000px;}
.wsb_c00207{word-spacing:10.512000px;}
.wsa_c00207{word-spacing:13.896000px;}
.ws9_c00207{word-spacing:15.336000px;}
.ws4_c00207{word-spacing:16.776000px;}
.ws3_c00207{word-spacing:17.136000px;}
.ws7_c00207{word-spacing:18.288000px;}
._0_c00207{margin-left:-480.337200px;}
._3_c00207{margin-left:-5.760000px;}
._1_c00207{margin-left:-4.200000px;}
._2_c00207{margin-left:-2.152800px;}
.fc2_c00207{color:rgb(32,32,32);}
.fc1_c00207{color:rgb(232,86,17);}
.fc0_c00207{color:rgb(60,60,59);}
.fs1_c00207{font-size:42.000000px;}
.fs0_c00207{font-size:60.000000px;}
.fs3_c00207{font-size:72.000000px;}
.fs2_c00207{font-size:84.000000px;}
.y0_c00207{bottom:0.000000px;}
.y1_c00207{bottom:41.250000px;}
.y16_c00207{bottom:196.316700px;}
.y15_c00207{bottom:226.322700px;}
.y14_c00207{bottom:256.328700px;}
.y13_c00207{bottom:286.334700px;}
.y12_c00207{bottom:346.334700px;}
.y11_c00207{bottom:436.310700px;}
.y10_c00207{bottom:466.316700px;}
.yf_c00207{bottom:496.322700px;}
.ye_c00207{bottom:526.328700px;}
.yd_c00207{bottom:556.334700px;}
.yc_c00207{bottom:616.334700px;}
.yb_c00207{bottom:706.286700px;}
.ya_c00207{bottom:736.292700px;}
.y9_c00207{bottom:766.298700px;}
.y8_c00207{bottom:796.304700px;}
.y7_c00207{bottom:826.310700px;}
.y6_c00207{bottom:856.316700px;}
.y5_c00207{bottom:886.322700px;}
.y4_c00207{bottom:916.328700px;}
.y3_c00207{bottom:946.334700px;}
.y2_c00207{bottom:1006.334700px;}
.h2_c00207{height:54.000000px;}
.h4_c00207{height:64.800000px;}
.h3_c00207{height:78.540000px;}
.h0_c00207{height:1262.835000px;}
.h1_c00207{height:1263.000000px;}
.w0_c00207{width:892.914000px;}
.w1_c00207{width:893.250000px;}
.x0_c00207{left:0.000000px;}
.x2_c00207{left:90.000000px;}
.x3_c00207{left:106.500000px;}
.x1_c00207{left:785.828850px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls1_c00207{letter-spacing:0.000000pt;}
.ls0_c00207{letter-spacing:0.640000pt;}
.ls2_c00207{letter-spacing:0.746667pt;}
.ws0_c00207{word-spacing:-9.066667pt;}
.wsf_c00207{word-spacing:-2.496000pt;}
.ws6_c00207{word-spacing:-1.536000pt;}
.ws11_c00207{word-spacing:-1.280000pt;}
.ws2_c00207{word-spacing:-0.746667pt;}
.ws1_c00207{word-spacing:0.000000pt;}
.ws10_c00207{word-spacing:0.064000pt;}
.wsc_c00207{word-spacing:1.472000pt;}
.ws5_c00207{word-spacing:1.600000pt;}
.wsd_c00207{word-spacing:3.264000pt;}
.ws8_c00207{word-spacing:4.160000pt;}
.wse_c00207{word-spacing:5.632000pt;}
.wsb_c00207{word-spacing:9.344000pt;}
.wsa_c00207{word-spacing:12.352000pt;}
.ws9_c00207{word-spacing:13.632000pt;}
.ws4_c00207{word-spacing:14.912000pt;}
.ws3_c00207{word-spacing:15.232000pt;}
.ws7_c00207{word-spacing:16.256000pt;}
._0_c00207{margin-left:-426.966400pt;}
._3_c00207{margin-left:-5.120000pt;}
._1_c00207{margin-left:-3.733333pt;}
._2_c00207{margin-left:-1.913600pt;}
.fs1_c00207{font-size:37.333333pt;}
.fs0_c00207{font-size:53.333333pt;}
.fs3_c00207{font-size:64.000000pt;}
.fs2_c00207{font-size:74.666667pt;}
.y0_c00207{bottom:0.000000pt;}
.y1_c00207{bottom:36.666667pt;}
.y16_c00207{bottom:174.503733pt;}
.y15_c00207{bottom:201.175733pt;}
.y14_c00207{bottom:227.847733pt;}
.y13_c00207{bottom:254.519733pt;}
.y12_c00207{bottom:307.853067pt;}
.y11_c00207{bottom:387.831733pt;}
.y10_c00207{bottom:414.503733pt;}
.yf_c00207{bottom:441.175733pt;}
.ye_c00207{bottom:467.847733pt;}
.yd_c00207{bottom:494.519733pt;}
.yc_c00207{bottom:547.853067pt;}
.yb_c00207{bottom:627.810400pt;}
.ya_c00207{bottom:654.482400pt;}
.y9_c00207{bottom:681.154400pt;}
.y8_c00207{bottom:707.826400pt;}
.y7_c00207{bottom:734.498400pt;}
.y6_c00207{bottom:761.170400pt;}
.y5_c00207{bottom:787.842400pt;}
.y4_c00207{bottom:814.514400pt;}
.y3_c00207{bottom:841.186400pt;}
.y2_c00207{bottom:894.519733pt;}
.h2_c00207{height:48.000000pt;}
.h4_c00207{height:57.600000pt;}
.h3_c00207{height:69.813333pt;}
.h0_c00207{height:1122.520000pt;}
.h1_c00207{height:1122.666667pt;}
.w0_c00207{width:793.701333pt;}
.w1_c00207{width:794.000000pt;}
.x0_c00207{left:0.000000pt;}
.x2_c00207{left:80.000000pt;}
.x3_c00207{left:94.666667pt;}
.x1_c00207{left:698.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d47e790784ea748fa7aeaf9d.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.161000;font-style: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);}
.m1_c00208{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls5_c00208{letter-spacing:-0.324000px;}
.ls4_c00208{letter-spacing:0.000000px;}
.ls0_c00208{letter-spacing:0.720000px;}
.ls1_c00208{letter-spacing:0.840000px;}
.ls3_c00208{letter-spacing:1.500000px;}
.ls2_c00208{letter-spacing:1.650000px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00208{word-spacing:-14.850000px;}
.ws0_c00208{word-spacing:-10.200000px;}
.wsf_c00208{word-spacing:-2.520000px;}
.ws8_c00208{word-spacing:-2.304000px;}
.wse_c00208{word-spacing:-1.440000px;}
.ws4_c00208{word-spacing:-0.840000px;}
.wsb_c00208{word-spacing:-0.504000px;}
.ws2_c00208{word-spacing:0.000000px;}
.ws3_c00208{word-spacing:0.324000px;}
.ws9_c00208{word-spacing:1.872000px;}
.ws5_c00208{word-spacing:2.880000px;}
.wsc_c00208{word-spacing:4.392000px;}
.ws6_c00208{word-spacing:6.408000px;}
.wsa_c00208{word-spacing:10.800000px;}
.wsd_c00208{word-spacing:13.824000px;}
.ws7_c00208{word-spacing:21.384000px;}
._0_c00208{margin-left:-480.336600px;}
._3_c00208{margin-left:-5.760000px;}
._1_c00208{margin-left:-4.200000px;}
._4_c00208{margin-left:-2.358000px;}
._2_c00208{margin-left:-1.134000px;}
.fc3_c00208{color:rgb(32,32,32);}
.fc2_c00208{color:rgb(233,83,14);}
.fc1_c00208{color:rgb(232,86,17);}
.fc4_c00208{color:rgb(157,157,156);}
.fc0_c00208{color:rgb(60,60,59);}
.fs1_c00208{font-size:42.000000px;}
.fs0_c00208{font-size:60.000000px;}
.fs5_c00208{font-size:66.000000px;}
.fs4_c00208{font-size:72.000000px;}
.fs3_c00208{font-size:84.000000px;}
.fs2_c00208{font-size:108.000000px;}
.y0_c00208{bottom:0.000000px;}
.y1_c00208{bottom:41.250000px;}
.y10_c00208{bottom:406.328700px;}
.yf_c00208{bottom:436.334700px;}
.ye_c00208{bottom:496.334700px;}
.yd_c00208{bottom:586.280700px;}
.yc_c00208{bottom:616.286700px;}
.yb_c00208{bottom:646.292700px;}
.ya_c00208{bottom:676.298700px;}
.y9_c00208{bottom:706.304700px;}
.y8_c00208{bottom:736.310700px;}
.y7_c00208{bottom:766.316700px;}
.y13_c00208{bottom:795.947850px;}
.y6_c00208{bottom:796.322700px;}
.y12_c00208{bottom:825.947850px;}
.y5_c00208{bottom:826.328700px;}
.y11_c00208{bottom:855.947850px;}
.y4_c00208{bottom:856.334700px;}
.y3_c00208{bottom:916.334700px;}
.y2_c00208{bottom:1006.334700px;}
.h6_c00208{height:50.292000px;}
.h2_c00208{height:54.000000px;}
.h5_c00208{height:64.800000px;}
.h4_c00208{height:78.540000px;}
.h3_c00208{height:100.980000px;}
.h0_c00208{height:1262.835000px;}
.h1_c00208{height:1263.000000px;}
.w0_c00208{width:892.914000px;}
.w1_c00208{width:893.250000px;}
.x0_c00208{left:0.000000px;}
.x2_c00208{left:82.500000px;}
.x3_c00208{left:90.000000px;}
.x4_c00208{left:106.500000px;}
.x5_c00208{left:675.611100px;}
.x1_c00208{left:785.753700px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls5_c00208{letter-spacing:-0.288000pt;}
.ls4_c00208{letter-spacing:0.000000pt;}
.ls0_c00208{letter-spacing:0.640000pt;}
.ls1_c00208{letter-spacing:0.746667pt;}
.ls3_c00208{letter-spacing:1.333333pt;}
.ls2_c00208{letter-spacing:1.466667pt;}
.ws1_c00208{word-spacing:-13.200000pt;}
.ws0_c00208{word-spacing:-9.066667pt;}
.wsf_c00208{word-spacing:-2.240000pt;}
.ws8_c00208{word-spacing:-2.048000pt;}
.wse_c00208{word-spacing:-1.280000pt;}
.ws4_c00208{word-spacing:-0.746667pt;}
.wsb_c00208{word-spacing:-0.448000pt;}
.ws2_c00208{word-spacing:0.000000pt;}
.ws3_c00208{word-spacing:0.288000pt;}
.ws9_c00208{word-spacing:1.664000pt;}
.ws5_c00208{word-spacing:2.560000pt;}
.wsc_c00208{word-spacing:3.904000pt;}
.ws6_c00208{word-spacing:5.696000pt;}
.wsa_c00208{word-spacing:9.600000pt;}
.wsd_c00208{word-spacing:12.288000pt;}
.ws7_c00208{word-spacing:19.008000pt;}
._0_c00208{margin-left:-426.965867pt;}
._3_c00208{margin-left:-5.120000pt;}
._1_c00208{margin-left:-3.733333pt;}
._4_c00208{margin-left:-2.096000pt;}
._2_c00208{margin-left:-1.008000pt;}
.fs1_c00208{font-size:37.333333pt;}
.fs0_c00208{font-size:53.333333pt;}
.fs5_c00208{font-size:58.666667pt;}
.fs4_c00208{font-size:64.000000pt;}
.fs3_c00208{font-size:74.666667pt;}
.fs2_c00208{font-size:96.000000pt;}
.y0_c00208{bottom:0.000000pt;}
.y1_c00208{bottom:36.666667pt;}
.y10_c00208{bottom:361.181067pt;}
.yf_c00208{bottom:387.853067pt;}
.ye_c00208{bottom:441.186400pt;}
.yd_c00208{bottom:521.138400pt;}
.yc_c00208{bottom:547.810400pt;}
.yb_c00208{bottom:574.482400pt;}
.ya_c00208{bottom:601.154400pt;}
.y9_c00208{bottom:627.826400pt;}
.y8_c00208{bottom:654.498400pt;}
.y7_c00208{bottom:681.170400pt;}
.y13_c00208{bottom:707.509200pt;}
.y6_c00208{bottom:707.842400pt;}
.y12_c00208{bottom:734.175867pt;}
.y5_c00208{bottom:734.514400pt;}
.y11_c00208{bottom:760.842533pt;}
.y4_c00208{bottom:761.186400pt;}
.y3_c00208{bottom:814.519733pt;}
.y2_c00208{bottom:894.519733pt;}
.h6_c00208{height:44.704000pt;}
.h2_c00208{height:48.000000pt;}
.h5_c00208{height:57.600000pt;}
.h4_c00208{height:69.813333pt;}
.h3_c00208{height:89.760000pt;}
.h0_c00208{height:1122.520000pt;}
.h1_c00208{height:1122.666667pt;}
.w0_c00208{width:793.701333pt;}
.w1_c00208{width:794.000000pt;}
.x0_c00208{left:0.000000pt;}
.x2_c00208{left:73.333333pt;}
.x3_c00208{left:80.000000pt;}
.x4_c00208{left:94.666667pt;}
.x5_c00208{left:600.543200pt;}
.x1_c00208{left:698.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d47e790784ea748fa7aeaf9d.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00209;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.199000;font-style: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);}
.m1_c00209{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls1_c00209{letter-spacing:0.000000px;}
.ls0_c00209{letter-spacing:0.720000px;}
.ls2_c00209{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws9_c00209{word-spacing:-2.808000px;}
.ws6_c00209{word-spacing:-1.872000px;}
.ws3_c00209{word-spacing:-1.656000px;}
.ws4_c00209{word-spacing:-1.008000px;}
.ws2_c00209{word-spacing:-0.840000px;}
.ws1_c00209{word-spacing:0.000000px;}
.ws7_c00209{word-spacing:2.088000px;}
.wse_c00209{word-spacing:3.816000px;}
.wsb_c00209{word-spacing:5.112000px;}
.wsd_c00209{word-spacing:8.712000px;}
.ws5_c00209{word-spacing:10.944000px;}
.ws8_c00209{word-spacing:11.664000px;}
.wsa_c00209{word-spacing:14.760000px;}
.wsc_c00209{word-spacing:16.056000px;}
._0_c00209{margin-left:-480.337200px;}
._4_c00209{margin-left:-5.760000px;}
._1_c00209{margin-left:-4.200000px;}
._3_c00209{margin-left:-2.894400px;}
._2_c00209{margin-left:-1.440000px;}
.fc2_c00209{color:rgb(32,32,32);}
.fc1_c00209{color:rgb(232,86,17);}
.fc0_c00209{color:rgb(60,60,59);}
.fs1_c00209{font-size:42.000000px;}
.fs0_c00209{font-size:60.000000px;}
.fs3_c00209{font-size:72.000000px;}
.fs2_c00209{font-size:84.000000px;}
.y0_c00209{bottom:0.000000px;}
.y1_c00209{bottom:41.250000px;}
.y14_c00209{bottom:256.316700px;}
.y13_c00209{bottom:286.322700px;}
.y12_c00209{bottom:316.328700px;}
.y11_c00209{bottom:346.334700px;}
.y10_c00209{bottom:406.334700px;}
.yf_c00209{bottom:496.316700px;}
.ye_c00209{bottom:526.322700px;}
.yd_c00209{bottom:556.328700px;}
.yc_c00209{bottom:586.334700px;}
.yb_c00209{bottom:646.334700px;}
.ya_c00209{bottom:736.292700px;}
.y9_c00209{bottom:766.298700px;}
.y8_c00209{bottom:796.304700px;}
.y7_c00209{bottom:826.310700px;}
.y6_c00209{bottom:856.316700px;}
.y5_c00209{bottom:886.322700px;}
.y4_c00209{bottom:916.328700px;}
.y3_c00209{bottom:946.334700px;}
.y2_c00209{bottom:1006.334700px;}
.h2_c00209{height:54.000000px;}
.h4_c00209{height:64.800000px;}
.h3_c00209{height:78.540000px;}
.h0_c00209{height:1262.835000px;}
.h1_c00209{height:1263.000000px;}
.w0_c00209{width:892.914000px;}
.w1_c00209{width:893.250000px;}
.x0_c00209{left:0.000000px;}
.x2_c00209{left:90.000000px;}
.x3_c00209{left:106.500000px;}
.x1_c00209{left:789.428850px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls1_c00209{letter-spacing:0.000000pt;}
.ls0_c00209{letter-spacing:0.640000pt;}
.ls2_c00209{letter-spacing:0.746667pt;}
.ws0_c00209{word-spacing:-9.066667pt;}
.ws9_c00209{word-spacing:-2.496000pt;}
.ws6_c00209{word-spacing:-1.664000pt;}
.ws3_c00209{word-spacing:-1.472000pt;}
.ws4_c00209{word-spacing:-0.896000pt;}
.ws2_c00209{word-spacing:-0.746667pt;}
.ws1_c00209{word-spacing:0.000000pt;}
.ws7_c00209{word-spacing:1.856000pt;}
.wse_c00209{word-spacing:3.392000pt;}
.wsb_c00209{word-spacing:4.544000pt;}
.wsd_c00209{word-spacing:7.744000pt;}
.ws5_c00209{word-spacing:9.728000pt;}
.ws8_c00209{word-spacing:10.368000pt;}
.wsa_c00209{word-spacing:13.120000pt;}
.wsc_c00209{word-spacing:14.272000pt;}
._0_c00209{margin-left:-426.966400pt;}
._4_c00209{margin-left:-5.120000pt;}
._1_c00209{margin-left:-3.733333pt;}
._3_c00209{margin-left:-2.572800pt;}
._2_c00209{margin-left:-1.280000pt;}
.fs1_c00209{font-size:37.333333pt;}
.fs0_c00209{font-size:53.333333pt;}
.fs3_c00209{font-size:64.000000pt;}
.fs2_c00209{font-size:74.666667pt;}
.y0_c00209{bottom:0.000000pt;}
.y1_c00209{bottom:36.666667pt;}
.y14_c00209{bottom:227.837067pt;}
.y13_c00209{bottom:254.509067pt;}
.y12_c00209{bottom:281.181067pt;}
.y11_c00209{bottom:307.853067pt;}
.y10_c00209{bottom:361.186400pt;}
.yf_c00209{bottom:441.170400pt;}
.ye_c00209{bottom:467.842400pt;}
.yd_c00209{bottom:494.514400pt;}
.yc_c00209{bottom:521.186400pt;}
.yb_c00209{bottom:574.519733pt;}
.ya_c00209{bottom:654.482400pt;}
.y9_c00209{bottom:681.154400pt;}
.y8_c00209{bottom:707.826400pt;}
.y7_c00209{bottom:734.498400pt;}
.y6_c00209{bottom:761.170400pt;}
.y5_c00209{bottom:787.842400pt;}
.y4_c00209{bottom:814.514400pt;}
.y3_c00209{bottom:841.186400pt;}
.y2_c00209{bottom:894.519733pt;}
.h2_c00209{height:48.000000pt;}
.h4_c00209{height:57.600000pt;}
.h3_c00209{height:69.813333pt;}
.h0_c00209{height:1122.520000pt;}
.h1_c00209{height:1122.666667pt;}
.w0_c00209{width:793.701333pt;}
.w1_c00209{width:794.000000pt;}
.x0_c00209{left:0.000000pt;}
.x2_c00209{left:80.000000pt;}
.x3_c00209{left:94.666667pt;}
.x1_c00209{left:701.714533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00210;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00210;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00210;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.155000;font-style: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);}
.m1_c00210{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls3_c00210{letter-spacing:-0.288000px;}
.ls2_c00210{letter-spacing:0.000000px;}
.ls0_c00210{letter-spacing:0.864000px;}
.ls1_c00210{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00210{word-spacing:-11.952000px;}
.ws0_c00210{word-spacing:-10.200000px;}
.ws8_c00210{word-spacing:-6.720000px;}
.ws6_c00210{word-spacing:-5.400000px;}
.ws4_c00210{word-spacing:-3.600000px;}
.ws7_c00210{word-spacing:-3.528000px;}
.ws5_c00210{word-spacing:-3.240000px;}
.ws3_c00210{word-spacing:-1.440000px;}
.ws2_c00210{word-spacing:0.000000px;}
._0_c00210{margin-left:-480.337800px;}
._6_c00210{margin-left:-6.760800px;}
._3_c00210{margin-left:-5.752800px;}
._1_c00210{margin-left:-4.200000px;}
._7_c00210{margin-left:-2.640000px;}
._4_c00210{margin-left:-1.440000px;}
._2_c00210{width:1.432800px;}
._8_c00210{width:3.840000px;}
._5_c00210{width:5.400000px;}
.fc3_c00210{color:rgb(255,255,255);}
.fc2_c00210{color:rgb(233,83,14);}
.fc1_c00210{color:rgb(232,86,17);}
.fc0_c00210{color:rgb(60,60,59);}
.fs1_c00210{font-size:42.000000px;}
.fs0_c00210{font-size:60.000000px;}
.fs3_c00210{font-size:72.000000px;}
.fs4_c00210{font-size:120.000000px;}
.fs2_c00210{font-size:360.000000px;}
.y0_c00210{bottom:0.000000px;}
.y1_c00210{bottom:41.250000px;}
.yc_c00210{bottom:484.292700px;}
.yb_c00210{bottom:505.298700px;}
.ya_c00210{bottom:526.304700px;}
.y9_c00210{bottom:574.310700px;}
.y8_c00210{bottom:595.316700px;}
.y7_c00210{bottom:616.322700px;}
.y6_c00210{bottom:664.328700px;}
.y5_c00210{bottom:685.334700px;}
.y4_c00210{bottom:706.340700px;}
.y3_c00210{bottom:752.834700px;}
.y11_c00210{bottom:886.334700px;}
.y10_c00210{bottom:916.334700px;}
.yf_c00210{bottom:946.334700px;}
.ye_c00210{bottom:976.334700px;}
.yd_c00210{bottom:1006.334700px;}
.y2_c00210{bottom:1093.526700px;}
.h2_c00210{height:54.000000px;}
.h5_c00210{height:64.800000px;}
.h4_c00210{height:66.456000px;}
.h6_c00210{height:112.200000px;}
.h3_c00210{height:324.000000px;}
.h0_c00210{height:1262.835000px;}
.h1_c00210{height:1263.000000px;}
.w0_c00210{width:892.914000px;}
.w1_c00210{width:893.250000px;}
.x0_c00210{left:0.000000px;}
.x2_c00210{left:81.290250px;}
.x3_c00210{left:82.393650px;}
.x5_c00210{left:112.287450px;}
.x4_c00210{left:127.393650px;}
.x1_c00210{left:793.089000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls3_c00210{letter-spacing:-0.256000pt;}
.ls2_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:0.768000pt;}
.ls1_c00210{letter-spacing:1.066667pt;}
.ws1_c00210{word-spacing:-10.624000pt;}
.ws0_c00210{word-spacing:-9.066667pt;}
.ws8_c00210{word-spacing:-5.973333pt;}
.ws6_c00210{word-spacing:-4.800000pt;}
.ws4_c00210{word-spacing:-3.200000pt;}
.ws7_c00210{word-spacing:-3.136000pt;}
.ws5_c00210{word-spacing:-2.880000pt;}
.ws3_c00210{word-spacing:-1.280000pt;}
.ws2_c00210{word-spacing:0.000000pt;}
._0_c00210{margin-left:-426.966933pt;}
._6_c00210{margin-left:-6.009600pt;}
._3_c00210{margin-left:-5.113600pt;}
._1_c00210{margin-left:-3.733333pt;}
._7_c00210{margin-left:-2.346667pt;}
._4_c00210{margin-left:-1.280000pt;}
._2_c00210{width:1.273600pt;}
._8_c00210{width:3.413333pt;}
._5_c00210{width:4.800000pt;}
.fs1_c00210{font-size:37.333333pt;}
.fs0_c00210{font-size:53.333333pt;}
.fs3_c00210{font-size:64.000000pt;}
.fs4_c00210{font-size:106.666667pt;}
.fs2_c00210{font-size:320.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y1_c00210{bottom:36.666667pt;}
.yc_c00210{bottom:430.482400pt;}
.yb_c00210{bottom:449.154400pt;}
.ya_c00210{bottom:467.826400pt;}
.y9_c00210{bottom:510.498400pt;}
.y8_c00210{bottom:529.170400pt;}
.y7_c00210{bottom:547.842400pt;}
.y6_c00210{bottom:590.514400pt;}
.y5_c00210{bottom:609.186400pt;}
.y4_c00210{bottom:627.858400pt;}
.y3_c00210{bottom:669.186400pt;}
.y11_c00210{bottom:787.853067pt;}
.y10_c00210{bottom:814.519733pt;}
.yf_c00210{bottom:841.186400pt;}
.ye_c00210{bottom:867.853067pt;}
.yd_c00210{bottom:894.519733pt;}
.y2_c00210{bottom:972.023733pt;}
.h2_c00210{height:48.000000pt;}
.h5_c00210{height:57.600000pt;}
.h4_c00210{height:59.072000pt;}
.h6_c00210{height:99.733333pt;}
.h3_c00210{height:288.000000pt;}
.h0_c00210{height:1122.520000pt;}
.h1_c00210{height:1122.666667pt;}
.w0_c00210{width:793.701333pt;}
.w1_c00210{width:794.000000pt;}
.x0_c00210{left:0.000000pt;}
.x2_c00210{left:72.258000pt;}
.x3_c00210{left:73.238800pt;}
.x5_c00210{left:99.811067pt;}
.x4_c00210{left:113.238800pt;}
.x1_c00210{left:704.968000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00211;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.024000;font-style: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);}
.m1_c00211{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls5_c00211{letter-spacing:-0.540000px;}
.ls4_c00211{letter-spacing:0.000000px;}
.ls0_c00211{letter-spacing:0.720000px;}
.ls1_c00211{letter-spacing:0.840000px;}
.ls3_c00211{letter-spacing:1.500000px;}
.ls2_c00211{letter-spacing:1.650000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00211{word-spacing:-21.060000px;}
.ws2_c00211{word-spacing:-17.640000px;}
.ws0_c00211{word-spacing:-10.200000px;}
.ws8_c00211{word-spacing:-4.032000px;}
.ws9_c00211{word-spacing:-2.448000px;}
.ws7_c00211{word-spacing:-2.160000px;}
.wsa_c00211{word-spacing:-1.944000px;}
.ws10_c00211{word-spacing:-1.500000px;}
.wsd_c00211{word-spacing:-1.224000px;}
.wsc_c00211{word-spacing:-1.008000px;}
.ws4_c00211{word-spacing:-0.840000px;}
.wsf_c00211{word-spacing:-0.480000px;}
.ws6_c00211{word-spacing:-0.144000px;}
.ws3_c00211{word-spacing:0.000000px;}
.ws5_c00211{word-spacing:1.368000px;}
.wsb_c00211{word-spacing:3.816000px;}
.wse_c00211{word-spacing:12.816000px;}
._0_c00211{margin-left:-480.337200px;}
._4_c00211{margin-left:-5.376000px;}
._1_c00211{margin-left:-4.200000px;}
._2_c00211{margin-left:-1.576800px;}
._3_c00211{width:5.227200px;}
.fc3_c00211{color:rgb(32,32,32);}
.fc2_c00211{color:rgb(233,83,14);}
.fc1_c00211{color:rgb(232,86,17);}
.fc4_c00211{color:rgb(157,157,156);}
.fc0_c00211{color:rgb(60,60,59);}
.fs1_c00211{font-size:42.000000px;}
.fs0_c00211{font-size:60.000000px;}
.fs5_c00211{font-size:66.000000px;}
.fs4_c00211{font-size:72.000000px;}
.fs3_c00211{font-size:84.000000px;}
.fs2_c00211{font-size:108.000000px;}
.y0_c00211{bottom:0.000000px;}
.y1_c00211{bottom:41.250000px;}
.y11_c00211{bottom:376.316700px;}
.y10_c00211{bottom:406.322700px;}
.yf_c00211{bottom:436.328700px;}
.ye_c00211{bottom:466.334700px;}
.yd_c00211{bottom:526.334700px;}
.yc_c00211{bottom:616.286700px;}
.yb_c00211{bottom:646.292700px;}
.ya_c00211{bottom:676.298700px;}
.y9_c00211{bottom:706.304700px;}
.y16_c00211{bottom:735.947850px;}
.y8_c00211{bottom:736.310700px;}
.y15_c00211{bottom:765.947850px;}
.y7_c00211{bottom:766.316700px;}
.y14_c00211{bottom:795.947850px;}
.y6_c00211{bottom:796.322700px;}
.y13_c00211{bottom:825.947850px;}
.y5_c00211{bottom:826.328700px;}
.y12_c00211{bottom:855.947850px;}
.y4_c00211{bottom:856.334700px;}
.y3_c00211{bottom:916.334700px;}
.y2_c00211{bottom:1006.334700px;}
.h6_c00211{height:50.292000px;}
.h2_c00211{height:54.000000px;}
.h5_c00211{height:64.800000px;}
.h4_c00211{height:78.540000px;}
.h3_c00211{height:100.980000px;}
.h0_c00211{height:1262.835000px;}
.h1_c00211{height:1263.000000px;}
.w0_c00211{width:892.914000px;}
.w1_c00211{width:893.250000px;}
.x0_c00211{left:0.000000px;}
.x2_c00211{left:82.500000px;}
.x3_c00211{left:90.000000px;}
.x4_c00211{left:106.500000px;}
.x5_c00211{left:675.611100px;}
.x1_c00211{left:790.613850px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls5_c00211{letter-spacing:-0.480000pt;}
.ls4_c00211{letter-spacing:0.000000pt;}
.ls0_c00211{letter-spacing:0.640000pt;}
.ls1_c00211{letter-spacing:0.746667pt;}
.ls3_c00211{letter-spacing:1.333333pt;}
.ls2_c00211{letter-spacing:1.466667pt;}
.ws1_c00211{word-spacing:-18.720000pt;}
.ws2_c00211{word-spacing:-15.680000pt;}
.ws0_c00211{word-spacing:-9.066667pt;}
.ws8_c00211{word-spacing:-3.584000pt;}
.ws9_c00211{word-spacing:-2.176000pt;}
.ws7_c00211{word-spacing:-1.920000pt;}
.wsa_c00211{word-spacing:-1.728000pt;}
.ws10_c00211{word-spacing:-1.333333pt;}
.wsd_c00211{word-spacing:-1.088000pt;}
.wsc_c00211{word-spacing:-0.896000pt;}
.ws4_c00211{word-spacing:-0.746667pt;}
.wsf_c00211{word-spacing:-0.426667pt;}
.ws6_c00211{word-spacing:-0.128000pt;}
.ws3_c00211{word-spacing:0.000000pt;}
.ws5_c00211{word-spacing:1.216000pt;}
.wsb_c00211{word-spacing:3.392000pt;}
.wse_c00211{word-spacing:11.392000pt;}
._0_c00211{margin-left:-426.966400pt;}
._4_c00211{margin-left:-4.778667pt;}
._1_c00211{margin-left:-3.733333pt;}
._2_c00211{margin-left:-1.401600pt;}
._3_c00211{width:4.646400pt;}
.fs1_c00211{font-size:37.333333pt;}
.fs0_c00211{font-size:53.333333pt;}
.fs5_c00211{font-size:58.666667pt;}
.fs4_c00211{font-size:64.000000pt;}
.fs3_c00211{font-size:74.666667pt;}
.fs2_c00211{font-size:96.000000pt;}
.y0_c00211{bottom:0.000000pt;}
.y1_c00211{bottom:36.666667pt;}
.y11_c00211{bottom:334.503733pt;}
.y10_c00211{bottom:361.175733pt;}
.yf_c00211{bottom:387.847733pt;}
.ye_c00211{bottom:414.519733pt;}
.yd_c00211{bottom:467.853067pt;}
.yc_c00211{bottom:547.810400pt;}
.yb_c00211{bottom:574.482400pt;}
.ya_c00211{bottom:601.154400pt;}
.y9_c00211{bottom:627.826400pt;}
.y16_c00211{bottom:654.175867pt;}
.y8_c00211{bottom:654.498400pt;}
.y15_c00211{bottom:680.842533pt;}
.y7_c00211{bottom:681.170400pt;}
.y14_c00211{bottom:707.509200pt;}
.y6_c00211{bottom:707.842400pt;}
.y13_c00211{bottom:734.175867pt;}
.y5_c00211{bottom:734.514400pt;}
.y12_c00211{bottom:760.842533pt;}
.y4_c00211{bottom:761.186400pt;}
.y3_c00211{bottom:814.519733pt;}
.y2_c00211{bottom:894.519733pt;}
.h6_c00211{height:44.704000pt;}
.h2_c00211{height:48.000000pt;}
.h5_c00211{height:57.600000pt;}
.h4_c00211{height:69.813333pt;}
.h3_c00211{height:89.760000pt;}
.h0_c00211{height:1122.520000pt;}
.h1_c00211{height:1122.666667pt;}
.w0_c00211{width:793.701333pt;}
.w1_c00211{width:794.000000pt;}
.x0_c00211{left:0.000000pt;}
.x2_c00211{left:73.333333pt;}
.x3_c00211{left:80.000000pt;}
.x4_c00211{left:94.666667pt;}
.x5_c00211{left:600.543200pt;}
.x1_c00211{left:702.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00212;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.199000;font-style: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);}
.m1_c00212{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls1_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:0.720000px;}
.ls2_c00212{letter-spacing:0.840000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:-10.200000px;}
.ws7_c00212{word-spacing:-2.736000px;}
.wsc_c00212{word-spacing:-2.088000px;}
.ws5_c00212{word-spacing:-1.368000px;}
.ws2_c00212{word-spacing:-0.840000px;}
.wsa_c00212{word-spacing:-0.720000px;}
.wsd_c00212{word-spacing:-0.288000px;}
.ws1_c00212{word-spacing:0.000000px;}
.ws8_c00212{word-spacing:0.216000px;}
.ws3_c00212{word-spacing:1.440000px;}
.ws6_c00212{word-spacing:2.880000px;}
.wsf_c00212{word-spacing:5.616000px;}
.wse_c00212{word-spacing:8.712000px;}
.wsb_c00212{word-spacing:9.000000px;}
.ws4_c00212{word-spacing:10.872000px;}
.ws9_c00212{word-spacing:17.136000px;}
._0_c00212{margin-left:-480.337800px;}
._5_c00212{margin-left:-5.649600px;}
._1_c00212{margin-left:-4.200000px;}
._2_c00212{margin-left:-2.160000px;}
._3_c00212{width:1.015200px;}
._4_c00212{width:3.312000px;}
.fc2_c00212{color:rgb(32,32,32);}
.fc1_c00212{color:rgb(232,86,17);}
.fc0_c00212{color:rgb(60,60,59);}
.fs1_c00212{font-size:42.000000px;}
.fs0_c00212{font-size:60.000000px;}
.fs3_c00212{font-size:72.000000px;}
.fs2_c00212{font-size:84.000000px;}
.y0_c00212{bottom:0.000000px;}
.y1_c00212{bottom:41.250000px;}
.y14_c00212{bottom:256.322700px;}
.y13_c00212{bottom:286.328700px;}
.y12_c00212{bottom:316.334700px;}
.y11_c00212{bottom:376.334700px;}
.y10_c00212{bottom:466.322700px;}
.yf_c00212{bottom:496.328700px;}
.ye_c00212{bottom:526.334700px;}
.yd_c00212{bottom:586.334700px;}
.yc_c00212{bottom:676.280700px;}
.yb_c00212{bottom:706.286700px;}
.ya_c00212{bottom:736.292700px;}
.y9_c00212{bottom:766.298700px;}
.y8_c00212{bottom:796.304700px;}
.y7_c00212{bottom:826.310700px;}
.y6_c00212{bottom:856.316700px;}
.y5_c00212{bottom:886.322700px;}
.y4_c00212{bottom:916.328700px;}
.y3_c00212{bottom:946.334700px;}
.y2_c00212{bottom:1006.334700px;}
.h2_c00212{height:54.000000px;}
.h4_c00212{height:64.800000px;}
.h3_c00212{height:78.540000px;}
.h0_c00212{height:1262.835000px;}
.h1_c00212{height:1263.000000px;}
.w0_c00212{width:892.914000px;}
.w1_c00212{width:893.250000px;}
.x0_c00212{left:0.000000px;}
.x2_c00212{left:90.000000px;}
.x3_c00212{left:106.500000px;}
.x1_c00212{left:790.464000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls1_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:0.640000pt;}
.ls2_c00212{letter-spacing:0.746667pt;}
.ws0_c00212{word-spacing:-9.066667pt;}
.ws7_c00212{word-spacing:-2.432000pt;}
.wsc_c00212{word-spacing:-1.856000pt;}
.ws5_c00212{word-spacing:-1.216000pt;}
.ws2_c00212{word-spacing:-0.746667pt;}
.wsa_c00212{word-spacing:-0.640000pt;}
.wsd_c00212{word-spacing:-0.256000pt;}
.ws1_c00212{word-spacing:0.000000pt;}
.ws8_c00212{word-spacing:0.192000pt;}
.ws3_c00212{word-spacing:1.280000pt;}
.ws6_c00212{word-spacing:2.560000pt;}
.wsf_c00212{word-spacing:4.992000pt;}
.wse_c00212{word-spacing:7.744000pt;}
.wsb_c00212{word-spacing:8.000000pt;}
.ws4_c00212{word-spacing:9.664000pt;}
.ws9_c00212{word-spacing:15.232000pt;}
._0_c00212{margin-left:-426.966933pt;}
._5_c00212{margin-left:-5.021867pt;}
._1_c00212{margin-left:-3.733333pt;}
._2_c00212{margin-left:-1.920000pt;}
._3_c00212{width:0.902400pt;}
._4_c00212{width:2.944000pt;}
.fs1_c00212{font-size:37.333333pt;}
.fs0_c00212{font-size:53.333333pt;}
.fs3_c00212{font-size:64.000000pt;}
.fs2_c00212{font-size:74.666667pt;}
.y0_c00212{bottom:0.000000pt;}
.y1_c00212{bottom:36.666667pt;}
.y14_c00212{bottom:227.842400pt;}
.y13_c00212{bottom:254.514400pt;}
.y12_c00212{bottom:281.186400pt;}
.y11_c00212{bottom:334.519733pt;}
.y10_c00212{bottom:414.509067pt;}
.yf_c00212{bottom:441.181067pt;}
.ye_c00212{bottom:467.853067pt;}
.yd_c00212{bottom:521.186400pt;}
.yc_c00212{bottom:601.138400pt;}
.yb_c00212{bottom:627.810400pt;}
.ya_c00212{bottom:654.482400pt;}
.y9_c00212{bottom:681.154400pt;}
.y8_c00212{bottom:707.826400pt;}
.y7_c00212{bottom:734.498400pt;}
.y6_c00212{bottom:761.170400pt;}
.y5_c00212{bottom:787.842400pt;}
.y4_c00212{bottom:814.514400pt;}
.y3_c00212{bottom:841.186400pt;}
.y2_c00212{bottom:894.519733pt;}
.h2_c00212{height:48.000000pt;}
.h4_c00212{height:57.600000pt;}
.h3_c00212{height:69.813333pt;}
.h0_c00212{height:1122.520000pt;}
.h1_c00212{height:1122.666667pt;}
.w0_c00212{width:793.701333pt;}
.w1_c00212{width:794.000000pt;}
.x0_c00212{left:0.000000pt;}
.x2_c00212{left:80.000000pt;}
.x3_c00212{left:94.666667pt;}
.x1_c00212{left:702.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_687f4f7c0414ae5fc6b8f254.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00213;src:url('chunks/assets/font_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:1.161000;font-style: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);}
.m1_c00213{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls5_c00213{letter-spacing:-0.324000px;}
.ls4_c00213{letter-spacing:0.000000px;}
.ls0_c00213{letter-spacing:0.720000px;}
.ls1_c00213{letter-spacing:0.840000px;}
.ls3_c00213{letter-spacing:1.500000px;}
.ls2_c00213{letter-spacing:1.650000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00213{word-spacing:-21.276000px;}
.ws2_c00213{word-spacing:-14.850000px;}
.ws0_c00213{word-spacing:-10.200000px;}
.wsf_c00213{word-spacing:-3.960000px;}
.ws6_c00213{word-spacing:-3.744000px;}
.wsa_c00213{word-spacing:-2.520000px;}
.wsc_c00213{word-spacing:-2.376000px;}
.wsd_c00213{word-spacing:-2.016000px;}
.wsb_c00213{word-spacing:-1.872000px;}
.ws11_c00213{word-spacing:-1.500000px;}
.ws4_c00213{word-spacing:-0.840000px;}
.ws3_c00213{word-spacing:0.000000px;}
.ws7_c00213{word-spacing:1.152000px;}
.ws5_c00213{word-spacing:1.656000px;}
.ws9_c00213{word-spacing:4.176000px;}
.wse_c00213{word-spacing:4.824000px;}
.ws10_c00213{word-spacing:7.056000px;}
.ws8_c00213{word-spacing:9.720000px;}
._0_c00213{margin-left:-480.337200px;}
._1_c00213{margin-left:-4.200000px;}
._3_c00213{margin-left:-2.160000px;}
._2_c00213{margin-left:-1.134000px;}
._4_c00213{width:1.101600px;}
._5_c00213{width:2.450400px;}
._6_c00213{width:4.485600px;}
.fc3_c00213{color:rgb(32,32,32);}
.fc2_c00213{color:rgb(233,83,14);}
.fc1_c00213{color:rgb(232,86,17);}
.fc4_c00213{color:rgb(157,157,156);}
.fc0_c00213{color:rgb(60,60,59);}
.fs1_c00213{font-size:42.000000px;}
.fs0_c00213{font-size:60.000000px;}
.fs5_c00213{font-size:66.000000px;}
.fs4_c00213{font-size:72.000000px;}
.fs3_c00213{font-size:84.000000px;}
.fs2_c00213{font-size:108.000000px;}
.y0_c00213{bottom:0.000000px;}
.y1_c00213{bottom:41.250000px;}
.y11_c00213{bottom:376.316700px;}
.y10_c00213{bottom:406.322700px;}
.yf_c00213{bottom:436.328700px;}
.ye_c00213{bottom:466.334700px;}
.yd_c00213{bottom:526.334700px;}
.yc_c00213{bottom:616.286700px;}
.yb_c00213{bottom:646.292700px;}
.ya_c00213{bottom:676.298700px;}
.y17_c00213{bottom:705.947850px;}
.y9_c00213{bottom:706.304700px;}
.y16_c00213{bottom:735.947850px;}
.y8_c00213{bottom:736.310700px;}
.y15_c00213{bottom:765.947850px;}
.y7_c00213{bottom:766.316700px;}
.y14_c00213{bottom:795.947850px;}
.y6_c00213{bottom:796.322700px;}
.y13_c00213{bottom:825.947850px;}
.y5_c00213{bottom:826.328700px;}
.y12_c00213{bottom:855.947850px;}
.y4_c00213{bottom:856.334700px;}
.y3_c00213{bottom:916.334700px;}
.y2_c00213{bottom:1006.334700px;}
.h6_c00213{height:50.292000px;}
.h2_c00213{height:54.000000px;}
.h5_c00213{height:64.800000px;}
.h4_c00213{height:78.540000px;}
.h3_c00213{height:100.980000px;}
.h0_c00213{height:1262.835000px;}
.h1_c00213{height:1263.000000px;}
.w0_c00213{width:892.914000px;}
.w1_c00213{width:893.250000px;}
.x0_c00213{left:0.000000px;}
.x2_c00213{left:82.500000px;}
.x3_c00213{left:90.000000px;}
.x4_c00213{left:106.500000px;}
.x5_c00213{left:675.611100px;}
.x1_c00213{left:789.488850px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls5_c00213{letter-spacing:-0.288000pt;}
.ls4_c00213{letter-spacing:0.000000pt;}
.ls0_c00213{letter-spacing:0.640000pt;}
.ls1_c00213{letter-spacing:0.746667pt;}
.ls3_c00213{letter-spacing:1.333333pt;}
.ls2_c00213{letter-spacing:1.466667pt;}
.ws1_c00213{word-spacing:-18.912000pt;}
.ws2_c00213{word-spacing:-13.200000pt;}
.ws0_c00213{word-spacing:-9.066667pt;}
.wsf_c00213{word-spacing:-3.520000pt;}
.ws6_c00213{word-spacing:-3.328000pt;}
.wsa_c00213{word-spacing:-2.240000pt;}
.wsc_c00213{word-spacing:-2.112000pt;}
.wsd_c00213{word-spacing:-1.792000pt;}
.wsb_c00213{word-spacing:-1.664000pt;}
.ws11_c00213{word-spacing:-1.333333pt;}
.ws4_c00213{word-spacing:-0.746667pt;}
.ws3_c00213{word-spacing:0.000000pt;}
.ws7_c00213{word-spacing:1.024000pt;}
.ws5_c00213{word-spacing:1.472000pt;}
.ws9_c00213{word-spacing:3.712000pt;}
.wse_c00213{word-spacing:4.288000pt;}
.ws10_c00213{word-spacing:6.272000pt;}
.ws8_c00213{word-spacing:8.640000pt;}
._0_c00213{margin-left:-426.966400pt;}
._1_c00213{margin-left:-3.733333pt;}
._3_c00213{margin-left:-1.920000pt;}
._2_c00213{margin-left:-1.008000pt;}
._4_c00213{width:0.979200pt;}
._5_c00213{width:2.178133pt;}
._6_c00213{width:3.987200pt;}
.fs1_c00213{font-size:37.333333pt;}
.fs0_c00213{font-size:53.333333pt;}
.fs5_c00213{font-size:58.666667pt;}
.fs4_c00213{font-size:64.000000pt;}
.fs3_c00213{font-size:74.666667pt;}
.fs2_c00213{font-size:96.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y1_c00213{bottom:36.666667pt;}
.y11_c00213{bottom:334.503733pt;}
.y10_c00213{bottom:361.175733pt;}
.yf_c00213{bottom:387.847733pt;}
.ye_c00213{bottom:414.519733pt;}
.yd_c00213{bottom:467.853067pt;}
.yc_c00213{bottom:547.810400pt;}
.yb_c00213{bottom:574.482400pt;}
.ya_c00213{bottom:601.154400pt;}
.y17_c00213{bottom:627.509200pt;}
.y9_c00213{bottom:627.826400pt;}
.y16_c00213{bottom:654.175867pt;}
.y8_c00213{bottom:654.498400pt;}
.y15_c00213{bottom:680.842533pt;}
.y7_c00213{bottom:681.170400pt;}
.y14_c00213{bottom:707.509200pt;}
.y6_c00213{bottom:707.842400pt;}
.y13_c00213{bottom:734.175867pt;}
.y5_c00213{bottom:734.514400pt;}
.y12_c00213{bottom:760.842533pt;}
.y4_c00213{bottom:761.186400pt;}
.y3_c00213{bottom:814.519733pt;}
.y2_c00213{bottom:894.519733pt;}
.h6_c00213{height:44.704000pt;}
.h2_c00213{height:48.000000pt;}
.h5_c00213{height:57.600000pt;}
.h4_c00213{height:69.813333pt;}
.h3_c00213{height:89.760000pt;}
.h0_c00213{height:1122.520000pt;}
.h1_c00213{height:1122.666667pt;}
.w0_c00213{width:793.701333pt;}
.w1_c00213{width:794.000000pt;}
.x0_c00213{left:0.000000pt;}
.x2_c00213{left:73.333333pt;}
.x3_c00213{left:80.000000pt;}
.x4_c00213{left:94.666667pt;}
.x5_c00213{left:600.543200pt;}
.x1_c00213{left:701.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_795c1aff8c99ee916373da00.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00214;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.199000;font-style: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);}
.m1_c00214{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls2_c00214{letter-spacing:0.000000px;}
.ls1_c00214{letter-spacing:0.720000px;}
.ls0_c00214{letter-spacing:0.840000px;}
.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;}
}
.ws1_c00214{word-spacing:-17.640000px;}
.ws0_c00214{word-spacing:-10.200000px;}
.wsc_c00214{word-spacing:-2.592000px;}
.wsd_c00214{word-spacing:-0.840000px;}
.ws2_c00214{word-spacing:0.000000px;}
.ws9_c00214{word-spacing:0.072000px;}
.wsa_c00214{word-spacing:2.016000px;}
.ws10_c00214{word-spacing:4.392000px;}
.wse_c00214{word-spacing:7.200000px;}
.ws6_c00214{word-spacing:9.216000px;}
.ws5_c00214{word-spacing:9.936000px;}
.wsb_c00214{word-spacing:11.736000px;}
.wsf_c00214{word-spacing:12.960000px;}
.ws3_c00214{word-spacing:16.200000px;}
.ws8_c00214{word-spacing:18.576000px;}
.ws4_c00214{word-spacing:19.656000px;}
.ws7_c00214{word-spacing:24.120000px;}
._0_c00214{margin-left:-480.336600px;}
._3_c00214{margin-left:-5.644800px;}
._1_c00214{margin-left:-4.200000px;}
._4_c00214{margin-left:-3.086400px;}
._2_c00214{margin-left:-1.440000px;}
._5_c00214{width:1.221600px;}
.fc2_c00214{color:rgb(32,32,32);}
.fc1_c00214{color:rgb(232,86,17);}
.fc0_c00214{color:rgb(60,60,59);}
.fs1_c00214{font-size:42.000000px;}
.fs0_c00214{font-size:60.000000px;}
.fs3_c00214{font-size:63.000000px;}
.fs4_c00214{font-size:72.000000px;}
.fs2_c00214{font-size:84.000000px;}
.y0_c00214{bottom:0.000000px;}
.y1_c00214{bottom:41.250000px;}
.y15_c00214{bottom:226.322700px;}
.y14_c00214{bottom:256.328700px;}
.y13_c00214{bottom:286.334700px;}
.y12_c00214{bottom:346.334700px;}
.y11_c00214{bottom:436.322700px;}
.y10_c00214{bottom:466.328700px;}
.yf_c00214{bottom:496.334700px;}
.ye_c00214{bottom:556.334700px;}
.yd_c00214{bottom:646.274700px;}
.yc_c00214{bottom:676.280700px;}
.yb_c00214{bottom:706.286700px;}
.ya_c00214{bottom:736.292700px;}
.y9_c00214{bottom:766.298700px;}
.y8_c00214{bottom:796.304700px;}
.y7_c00214{bottom:826.310700px;}
.y6_c00214{bottom:856.316700px;}
.y5_c00214{bottom:886.322700px;}
.y4_c00214{bottom:916.328700px;}
.y3_c00214{bottom:946.334700px;}
.y2_c00214{bottom:1006.334700px;}
.h2_c00214{height:54.000000px;}
.h4_c00214{height:64.800000px;}
.h3_c00214{height:78.540000px;}
.h0_c00214{height:1262.835000px;}
.h1_c00214{height:1263.000000px;}
.w0_c00214{width:892.914000px;}
.w1_c00214{width:893.250000px;}
.x0_c00214{left:0.000000px;}
.x2_c00214{left:90.000000px;}
.x3_c00214{left:106.500000px;}
.x1_c00214{left:790.538700px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls2_c00214{letter-spacing:0.000000pt;}
.ls1_c00214{letter-spacing:0.640000pt;}
.ls0_c00214{letter-spacing:0.746667pt;}
.ws1_c00214{word-spacing:-15.680000pt;}
.ws0_c00214{word-spacing:-9.066667pt;}
.wsc_c00214{word-spacing:-2.304000pt;}
.wsd_c00214{word-spacing:-0.746667pt;}
.ws2_c00214{word-spacing:0.000000pt;}
.ws9_c00214{word-spacing:0.064000pt;}
.wsa_c00214{word-spacing:1.792000pt;}
.ws10_c00214{word-spacing:3.904000pt;}
.wse_c00214{word-spacing:6.400000pt;}
.ws6_c00214{word-spacing:8.192000pt;}
.ws5_c00214{word-spacing:8.832000pt;}
.wsb_c00214{word-spacing:10.432000pt;}
.wsf_c00214{word-spacing:11.520000pt;}
.ws3_c00214{word-spacing:14.400000pt;}
.ws8_c00214{word-spacing:16.512000pt;}
.ws4_c00214{word-spacing:17.472000pt;}
.ws7_c00214{word-spacing:21.440000pt;}
._0_c00214{margin-left:-426.965867pt;}
._3_c00214{margin-left:-5.017600pt;}
._1_c00214{margin-left:-3.733333pt;}
._4_c00214{margin-left:-2.743467pt;}
._2_c00214{margin-left:-1.280000pt;}
._5_c00214{width:1.085867pt;}
.fs1_c00214{font-size:37.333333pt;}
.fs0_c00214{font-size:53.333333pt;}
.fs3_c00214{font-size:56.000000pt;}
.fs4_c00214{font-size:64.000000pt;}
.fs2_c00214{font-size:74.666667pt;}
.y0_c00214{bottom:0.000000pt;}
.y1_c00214{bottom:36.666667pt;}
.y15_c00214{bottom:201.175733pt;}
.y14_c00214{bottom:227.847733pt;}
.y13_c00214{bottom:254.519733pt;}
.y12_c00214{bottom:307.853067pt;}
.y11_c00214{bottom:387.842400pt;}
.y10_c00214{bottom:414.514400pt;}
.yf_c00214{bottom:441.186400pt;}
.ye_c00214{bottom:494.519733pt;}
.yd_c00214{bottom:574.466400pt;}
.yc_c00214{bottom:601.138400pt;}
.yb_c00214{bottom:627.810400pt;}
.ya_c00214{bottom:654.482400pt;}
.y9_c00214{bottom:681.154400pt;}
.y8_c00214{bottom:707.826400pt;}
.y7_c00214{bottom:734.498400pt;}
.y6_c00214{bottom:761.170400pt;}
.y5_c00214{bottom:787.842400pt;}
.y4_c00214{bottom:814.514400pt;}
.y3_c00214{bottom:841.186400pt;}
.y2_c00214{bottom:894.519733pt;}
.h2_c00214{height:48.000000pt;}
.h4_c00214{height:57.600000pt;}
.h3_c00214{height:69.813333pt;}
.h0_c00214{height:1122.520000pt;}
.h1_c00214{height:1122.666667pt;}
.w0_c00214{width:793.701333pt;}
.w1_c00214{width:794.000000pt;}
.x0_c00214{left:0.000000pt;}
.x2_c00214{left:80.000000pt;}
.x3_c00214{left:94.666667pt;}
.x1_c00214{left:702.701067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00215;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00215;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls3_c00215{letter-spacing:-0.288000px;}
.ls2_c00215{letter-spacing:0.000000px;}
.ls0_c00215{letter-spacing:0.864000px;}
.ls1_c00215{letter-spacing:1.200000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00215{word-spacing:-13.104000px;}
.ws0_c00215{word-spacing:-10.200000px;}
.wsa_c00215{word-spacing:-7.200000px;}
.ws9_c00215{word-spacing:-5.040000px;}
.ws7_c00215{word-spacing:-3.096000px;}
.ws3_c00215{word-spacing:-2.160000px;}
.ws5_c00215{word-spacing:-1.800000px;}
.ws6_c00215{word-spacing:-1.440000px;}
.ws8_c00215{word-spacing:-1.200000px;}
.ws4_c00215{word-spacing:-0.864000px;}
.ws2_c00215{word-spacing:0.000000px;}
._0_c00215{margin-left:-480.337200px;}
._a_c00215{margin-left:-13.912800px;}
._8_c00215{margin-left:-10.207200px;}
._4_c00215{margin-left:-6.480000px;}
._5_c00215{margin-left:-5.392800px;}
._1_c00215{margin-left:-4.200000px;}
._7_c00215{margin-left:-2.520000px;}
._2_c00215{margin-left:-1.440000px;}
._6_c00215{width:1.152000px;}
._3_c00215{width:2.160000px;}
._9_c00215{width:7.800000px;}
.fc3_c00215{color:rgb(255,255,255);}
.fc2_c00215{color:rgb(233,83,14);}
.fc1_c00215{color:rgb(232,86,17);}
.fc0_c00215{color:rgb(60,60,59);}
.fs1_c00215{font-size:42.000000px;}
.fs0_c00215{font-size:60.000000px;}
.fs3_c00215{font-size:72.000000px;}
.fs4_c00215{font-size:120.000000px;}
.fs2_c00215{font-size:360.000000px;}
.y0_c00215{bottom:0.000000px;}
.y1_c00215{bottom:41.250000px;}
.yf_c00215{bottom:394.274700px;}
.ye_c00215{bottom:415.280700px;}
.yd_c00215{bottom:436.286700px;}
.yc_c00215{bottom:484.292700px;}
.yb_c00215{bottom:505.298700px;}
.ya_c00215{bottom:526.304700px;}
.y9_c00215{bottom:574.310700px;}
.y8_c00215{bottom:595.316700px;}
.y7_c00215{bottom:616.322700px;}
.y6_c00215{bottom:664.328700px;}
.y5_c00215{bottom:685.334700px;}
.y4_c00215{bottom:706.340700px;}
.y3_c00215{bottom:752.834700px;}
.y13_c00215{bottom:916.334700px;}
.y12_c00215{bottom:946.334700px;}
.y11_c00215{bottom:976.334700px;}
.y10_c00215{bottom:1006.334700px;}
.y2_c00215{bottom:1093.526700px;}
.h2_c00215{height:54.000000px;}
.h5_c00215{height:64.800000px;}
.h4_c00215{height:66.456000px;}
.h6_c00215{height:112.200000px;}
.h3_c00215{height:324.000000px;}
.h0_c00215{height:1262.835000px;}
.h1_c00215{height:1263.000000px;}
.w0_c00215{width:892.914000px;}
.w1_c00215{width:893.250000px;}
.x0_c00215{left:0.000000px;}
.x2_c00215{left:81.290250px;}
.x3_c00215{left:82.393650px;}
.x5_c00215{left:112.287450px;}
.x4_c00215{left:127.393650px;}
.x1_c00215{left:789.413850px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls3_c00215{letter-spacing:-0.256000pt;}
.ls2_c00215{letter-spacing:0.000000pt;}
.ls0_c00215{letter-spacing:0.768000pt;}
.ls1_c00215{letter-spacing:1.066667pt;}
.ws1_c00215{word-spacing:-11.648000pt;}
.ws0_c00215{word-spacing:-9.066667pt;}
.wsa_c00215{word-spacing:-6.400000pt;}
.ws9_c00215{word-spacing:-4.480000pt;}
.ws7_c00215{word-spacing:-2.752000pt;}
.ws3_c00215{word-spacing:-1.920000pt;}
.ws5_c00215{word-spacing:-1.600000pt;}
.ws6_c00215{word-spacing:-1.280000pt;}
.ws8_c00215{word-spacing:-1.066667pt;}
.ws4_c00215{word-spacing:-0.768000pt;}
.ws2_c00215{word-spacing:0.000000pt;}
._0_c00215{margin-left:-426.966400pt;}
._a_c00215{margin-left:-12.366933pt;}
._8_c00215{margin-left:-9.073067pt;}
._4_c00215{margin-left:-5.760000pt;}
._5_c00215{margin-left:-4.793600pt;}
._1_c00215{margin-left:-3.733333pt;}
._7_c00215{margin-left:-2.240000pt;}
._2_c00215{margin-left:-1.280000pt;}
._6_c00215{width:1.024000pt;}
._3_c00215{width:1.920000pt;}
._9_c00215{width:6.933333pt;}
.fs1_c00215{font-size:37.333333pt;}
.fs0_c00215{font-size:53.333333pt;}
.fs3_c00215{font-size:64.000000pt;}
.fs4_c00215{font-size:106.666667pt;}
.fs2_c00215{font-size:320.000000pt;}
.y0_c00215{bottom:0.000000pt;}
.y1_c00215{bottom:36.666667pt;}
.yf_c00215{bottom:350.466400pt;}
.ye_c00215{bottom:369.138400pt;}
.yd_c00215{bottom:387.810400pt;}
.yc_c00215{bottom:430.482400pt;}
.yb_c00215{bottom:449.154400pt;}
.ya_c00215{bottom:467.826400pt;}
.y9_c00215{bottom:510.498400pt;}
.y8_c00215{bottom:529.170400pt;}
.y7_c00215{bottom:547.842400pt;}
.y6_c00215{bottom:590.514400pt;}
.y5_c00215{bottom:609.186400pt;}
.y4_c00215{bottom:627.858400pt;}
.y3_c00215{bottom:669.186400pt;}
.y13_c00215{bottom:814.519733pt;}
.y12_c00215{bottom:841.186400pt;}
.y11_c00215{bottom:867.853067pt;}
.y10_c00215{bottom:894.519733pt;}
.y2_c00215{bottom:972.023733pt;}
.h2_c00215{height:48.000000pt;}
.h5_c00215{height:57.600000pt;}
.h4_c00215{height:59.072000pt;}
.h6_c00215{height:99.733333pt;}
.h3_c00215{height:288.000000pt;}
.h0_c00215{height:1122.520000pt;}
.h1_c00215{height:1122.666667pt;}
.w0_c00215{width:793.701333pt;}
.w1_c00215{width:794.000000pt;}
.x0_c00215{left:0.000000pt;}
.x2_c00215{left:72.258000pt;}
.x3_c00215{left:73.238800pt;}
.x5_c00215{left:99.811067pt;}
.x4_c00215{left:113.238800pt;}
.x1_c00215{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00216;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_7613350094aa9ba7d0a6da04.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.161000;font-style: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);}
.m1_c00216{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls3_c00216{letter-spacing:-0.540000px;}
.ls2_c00216{letter-spacing:0.000000px;}
.ls1_c00216{letter-spacing:1.500000px;}
.ls0_c00216{letter-spacing:1.650000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00216{word-spacing:-21.060000px;}
.ws0_c00216{word-spacing:-10.200000px;}
.ws1f_c00216{word-spacing:-1.500000px;}
.ws13_c00216{word-spacing:-1.368000px;}
.ws16_c00216{word-spacing:-1.152000px;}
.ws1c_c00216{word-spacing:-0.864000px;}
.ws17_c00216{word-spacing:-0.144000px;}
.wsd_c00216{word-spacing:-0.072000px;}
.ws2_c00216{word-spacing:0.000000px;}
.ws15_c00216{word-spacing:0.144000px;}
.wsa_c00216{word-spacing:0.216000px;}
.ws6_c00216{word-spacing:0.288000px;}
.wse_c00216{word-spacing:0.432000px;}
.ws14_c00216{word-spacing:1.224000px;}
.ws1a_c00216{word-spacing:1.800000px;}
.ws5_c00216{word-spacing:2.160000px;}
.ws1b_c00216{word-spacing:2.232000px;}
.wsf_c00216{word-spacing:3.168000px;}
.ws9_c00216{word-spacing:4.176000px;}
.ws19_c00216{word-spacing:5.472000px;}
.ws3_c00216{word-spacing:5.688000px;}
.ws18_c00216{word-spacing:6.264000px;}
.ws8_c00216{word-spacing:6.552000px;}
.wsc_c00216{word-spacing:7.056000px;}
.ws1e_c00216{word-spacing:7.704000px;}
.ws12_c00216{word-spacing:8.136000px;}
.ws7_c00216{word-spacing:8.496000px;}
.ws4_c00216{word-spacing:9.144000px;}
.ws11_c00216{word-spacing:10.368000px;}
.ws1d_c00216{word-spacing:12.672000px;}
.ws10_c00216{word-spacing:13.968000px;}
.wsb_c00216{word-spacing:14.976000px;}
._0_c00216{margin-left:-480.336600px;}
._4_c00216{margin-left:-10.310400px;}
._1_c00216{margin-left:-4.200000px;}
._3_c00216{margin-left:-2.880000px;}
._2_c00216{margin-left:-1.440000px;}
.fc3_c00216{color:rgb(32,32,32);}
.fc2_c00216{color:rgb(233,83,14);}
.fc1_c00216{color:rgb(232,86,17);}
.fc4_c00216{color:rgb(157,157,156);}
.fc0_c00216{color:rgb(60,60,59);}
.fs1_c00216{font-size:42.000000px;}
.fs0_c00216{font-size:60.000000px;}
.fs4_c00216{font-size:66.000000px;}
.fs3_c00216{font-size:72.000000px;}
.fs2_c00216{font-size:108.000000px;}
.y0_c00216{bottom:0.000000px;}
.y1_c00216{bottom:41.250000px;}
.y20_c00216{bottom:76.160700px;}
.y1f_c00216{bottom:106.166700px;}
.y1e_c00216{bottom:136.172700px;}
.y1d_c00216{bottom:166.178700px;}
.y1c_c00216{bottom:196.184700px;}
.y1b_c00216{bottom:226.190700px;}
.y1a_c00216{bottom:256.196700px;}
.y19_c00216{bottom:286.202700px;}
.y18_c00216{bottom:316.208700px;}
.y17_c00216{bottom:346.214700px;}
.y16_c00216{bottom:376.220700px;}
.y15_c00216{bottom:406.226700px;}
.y14_c00216{bottom:436.232700px;}
.y13_c00216{bottom:466.238700px;}
.y12_c00216{bottom:496.244700px;}
.y11_c00216{bottom:526.250700px;}
.y10_c00216{bottom:556.256700px;}
.yf_c00216{bottom:586.262700px;}
.ye_c00216{bottom:616.268700px;}
.yd_c00216{bottom:646.274700px;}
.yc_c00216{bottom:676.280700px;}
.yb_c00216{bottom:706.286700px;}
.ya_c00216{bottom:736.292700px;}
.y9_c00216{bottom:766.298700px;}
.y8_c00216{bottom:796.304700px;}
.y7_c00216{bottom:826.310700px;}
.y25_c00216{bottom:826.334700px;}
.y6_c00216{bottom:856.316700px;}
.y24_c00216{bottom:856.334700px;}
.y5_c00216{bottom:886.322700px;}
.y23_c00216{bottom:886.334700px;}
.y4_c00216{bottom:916.328700px;}
.y22_c00216{bottom:916.334700px;}
.y3_c00216{bottom:946.334700px;}
.y21_c00216{bottom:948.073800px;}
.y2_c00216{bottom:1006.334700px;}
.h5_c00216{height:50.292000px;}
.h2_c00216{height:54.000000px;}
.h4_c00216{height:64.800000px;}
.h3_c00216{height:100.980000px;}
.h0_c00216{height:1262.835000px;}
.h1_c00216{height:1263.000000px;}
.w0_c00216{width:892.914000px;}
.w1_c00216{width:893.250000px;}
.x0_c00216{left:0.000000px;}
.x2_c00216{left:82.500000px;}
.x3_c00216{left:106.500000px;}
.x4_c00216{left:675.611100px;}
.x1_c00216{left:791.513700px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls3_c00216{letter-spacing:-0.480000pt;}
.ls2_c00216{letter-spacing:0.000000pt;}
.ls1_c00216{letter-spacing:1.333333pt;}
.ls0_c00216{letter-spacing:1.466667pt;}
.ws1_c00216{word-spacing:-18.720000pt;}
.ws0_c00216{word-spacing:-9.066667pt;}
.ws1f_c00216{word-spacing:-1.333333pt;}
.ws13_c00216{word-spacing:-1.216000pt;}
.ws16_c00216{word-spacing:-1.024000pt;}
.ws1c_c00216{word-spacing:-0.768000pt;}
.ws17_c00216{word-spacing:-0.128000pt;}
.wsd_c00216{word-spacing:-0.064000pt;}
.ws2_c00216{word-spacing:0.000000pt;}
.ws15_c00216{word-spacing:0.128000pt;}
.wsa_c00216{word-spacing:0.192000pt;}
.ws6_c00216{word-spacing:0.256000pt;}
.wse_c00216{word-spacing:0.384000pt;}
.ws14_c00216{word-spacing:1.088000pt;}
.ws1a_c00216{word-spacing:1.600000pt;}
.ws5_c00216{word-spacing:1.920000pt;}
.ws1b_c00216{word-spacing:1.984000pt;}
.wsf_c00216{word-spacing:2.816000pt;}
.ws9_c00216{word-spacing:3.712000pt;}
.ws19_c00216{word-spacing:4.864000pt;}
.ws3_c00216{word-spacing:5.056000pt;}
.ws18_c00216{word-spacing:5.568000pt;}
.ws8_c00216{word-spacing:5.824000pt;}
.wsc_c00216{word-spacing:6.272000pt;}
.ws1e_c00216{word-spacing:6.848000pt;}
.ws12_c00216{word-spacing:7.232000pt;}
.ws7_c00216{word-spacing:7.552000pt;}
.ws4_c00216{word-spacing:8.128000pt;}
.ws11_c00216{word-spacing:9.216000pt;}
.ws1d_c00216{word-spacing:11.264000pt;}
.ws10_c00216{word-spacing:12.416000pt;}
.wsb_c00216{word-spacing:13.312000pt;}
._0_c00216{margin-left:-426.965867pt;}
._4_c00216{margin-left:-9.164800pt;}
._1_c00216{margin-left:-3.733333pt;}
._3_c00216{margin-left:-2.560000pt;}
._2_c00216{margin-left:-1.280000pt;}
.fs1_c00216{font-size:37.333333pt;}
.fs0_c00216{font-size:53.333333pt;}
.fs4_c00216{font-size:58.666667pt;}
.fs3_c00216{font-size:64.000000pt;}
.fs2_c00216{font-size:96.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y1_c00216{bottom:36.666667pt;}
.y20_c00216{bottom:67.698400pt;}
.y1f_c00216{bottom:94.370400pt;}
.y1e_c00216{bottom:121.042400pt;}
.y1d_c00216{bottom:147.714400pt;}
.y1c_c00216{bottom:174.386400pt;}
.y1b_c00216{bottom:201.058400pt;}
.y1a_c00216{bottom:227.730400pt;}
.y19_c00216{bottom:254.402400pt;}
.y18_c00216{bottom:281.074400pt;}
.y17_c00216{bottom:307.746400pt;}
.y16_c00216{bottom:334.418400pt;}
.y15_c00216{bottom:361.090400pt;}
.y14_c00216{bottom:387.762400pt;}
.y13_c00216{bottom:414.434400pt;}
.y12_c00216{bottom:441.106400pt;}
.y11_c00216{bottom:467.778400pt;}
.y10_c00216{bottom:494.450400pt;}
.yf_c00216{bottom:521.122400pt;}
.ye_c00216{bottom:547.794400pt;}
.yd_c00216{bottom:574.466400pt;}
.yc_c00216{bottom:601.138400pt;}
.yb_c00216{bottom:627.810400pt;}
.ya_c00216{bottom:654.482400pt;}
.y9_c00216{bottom:681.154400pt;}
.y8_c00216{bottom:707.826400pt;}
.y7_c00216{bottom:734.498400pt;}
.y25_c00216{bottom:734.519733pt;}
.y6_c00216{bottom:761.170400pt;}
.y24_c00216{bottom:761.186400pt;}
.y5_c00216{bottom:787.842400pt;}
.y23_c00216{bottom:787.853067pt;}
.y4_c00216{bottom:814.514400pt;}
.y22_c00216{bottom:814.519733pt;}
.y3_c00216{bottom:841.186400pt;}
.y21_c00216{bottom:842.732267pt;}
.y2_c00216{bottom:894.519733pt;}
.h5_c00216{height:44.704000pt;}
.h2_c00216{height:48.000000pt;}
.h4_c00216{height:57.600000pt;}
.h3_c00216{height:89.760000pt;}
.h0_c00216{height:1122.520000pt;}
.h1_c00216{height:1122.666667pt;}
.w0_c00216{width:793.701333pt;}
.w1_c00216{width:794.000000pt;}
.x0_c00216{left:0.000000pt;}
.x2_c00216{left:73.333333pt;}
.x3_c00216{left:94.666667pt;}
.x4_c00216{left:600.543200pt;}
.x1_c00216{left:703.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00217;src:url('chunks/assets/font_ad675bc1451e3c319d92cfc3.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.161000;font-style: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);}
.m1_c00217{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls4_c00217{letter-spacing:-0.324000px;}
.ls3_c00217{letter-spacing:0.000000px;}
.ls0_c00217{letter-spacing:0.720000px;}
.ls2_c00217{letter-spacing:1.500000px;}
.ls1_c00217{letter-spacing:1.650000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00217{word-spacing:-21.276000px;}
.ws2_c00217{word-spacing:-14.850000px;}
.ws0_c00217{word-spacing:-10.200000px;}
.ws1d_c00217{word-spacing:-1.656000px;}
.ws1a_c00217{word-spacing:-1.440000px;}
.ws18_c00217{word-spacing:-1.224000px;}
.ws3_c00217{word-spacing:0.000000px;}
.ws16_c00217{word-spacing:0.216000px;}
.ws9_c00217{word-spacing:0.576000px;}
.wsa_c00217{word-spacing:0.936000px;}
.ws4_c00217{word-spacing:1.368000px;}
.ws1c_c00217{word-spacing:2.160000px;}
.ws13_c00217{word-spacing:2.448000px;}
.ws17_c00217{word-spacing:2.664000px;}
.wsb_c00217{word-spacing:2.880000px;}
.ws1b_c00217{word-spacing:2.952000px;}
.ws8_c00217{word-spacing:3.528000px;}
.ws11_c00217{word-spacing:3.744000px;}
.wsd_c00217{word-spacing:4.032000px;}
.wsf_c00217{word-spacing:4.104000px;}
.wse_c00217{word-spacing:4.392000px;}
.ws19_c00217{word-spacing:4.680000px;}
.ws5_c00217{word-spacing:5.184000px;}
.wsc_c00217{word-spacing:5.544000px;}
.ws7_c00217{word-spacing:6.336000px;}
.ws6_c00217{word-spacing:6.480000px;}
.ws15_c00217{word-spacing:7.920000px;}
.ws12_c00217{word-spacing:8.208000px;}
.ws10_c00217{word-spacing:10.152000px;}
.ws14_c00217{word-spacing:17.136000px;}
._0_c00217{margin-left:-480.337200px;}
._5_c00217{margin-left:-10.872000px;}
._4_c00217{margin-left:-6.678000px;}
._1_c00217{margin-left:-4.200000px;}
._3_c00217{margin-left:-3.085200px;}
._2_c00217{margin-left:-1.134000px;}
.fc3_c00217{color:rgb(32,32,32);}
.fc2_c00217{color:rgb(233,83,14);}
.fc1_c00217{color:rgb(232,86,17);}
.fc4_c00217{color:rgb(157,157,156);}
.fc0_c00217{color:rgb(60,60,59);}
.fs1_c00217{font-size:42.000000px;}
.fs0_c00217{font-size:60.000000px;}
.fs4_c00217{font-size:66.000000px;}
.fs3_c00217{font-size:72.000000px;}
.fs2_c00217{font-size:108.000000px;}
.y0_c00217{bottom:0.000000px;}
.y1_c00217{bottom:41.250000px;}
.y1e_c00217{bottom:136.172700px;}
.y1d_c00217{bottom:166.178700px;}
.y1c_c00217{bottom:196.184700px;}
.y1b_c00217{bottom:226.190700px;}
.y1a_c00217{bottom:256.196700px;}
.y19_c00217{bottom:286.202700px;}
.y18_c00217{bottom:316.208700px;}
.y17_c00217{bottom:346.214700px;}
.y16_c00217{bottom:376.220700px;}
.y15_c00217{bottom:406.226700px;}
.y14_c00217{bottom:436.232700px;}
.y13_c00217{bottom:466.238700px;}
.y12_c00217{bottom:496.244700px;}
.y11_c00217{bottom:526.250700px;}
.y10_c00217{bottom:556.256700px;}
.yf_c00217{bottom:586.262700px;}
.ye_c00217{bottom:616.268700px;}
.yd_c00217{bottom:646.274700px;}
.yc_c00217{bottom:676.280700px;}
.yb_c00217{bottom:706.286700px;}
.ya_c00217{bottom:736.292700px;}
.y9_c00217{bottom:766.298700px;}
.y8_c00217{bottom:796.304700px;}
.y7_c00217{bottom:826.310700px;}
.y6_c00217{bottom:856.316700px;}
.y22_c00217{bottom:856.334700px;}
.y5_c00217{bottom:886.322700px;}
.y21_c00217{bottom:886.334700px;}
.y4_c00217{bottom:916.328700px;}
.y20_c00217{bottom:916.334700px;}
.y3_c00217{bottom:946.334700px;}
.y1f_c00217{bottom:946.449900px;}
.y2_c00217{bottom:1006.334700px;}
.h5_c00217{height:50.292000px;}
.h2_c00217{height:54.000000px;}
.h4_c00217{height:64.800000px;}
.h3_c00217{height:100.980000px;}
.h0_c00217{height:1262.835000px;}
.h1_c00217{height:1263.000000px;}
.w0_c00217{width:892.914000px;}
.w1_c00217{width:893.250000px;}
.x0_c00217{left:0.000000px;}
.x2_c00217{left:82.500000px;}
.x3_c00217{left:106.500000px;}
.x4_c00217{left:675.611100px;}
.x1_c00217{left:789.488850px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls4_c00217{letter-spacing:-0.288000pt;}
.ls3_c00217{letter-spacing:0.000000pt;}
.ls0_c00217{letter-spacing:0.640000pt;}
.ls2_c00217{letter-spacing:1.333333pt;}
.ls1_c00217{letter-spacing:1.466667pt;}
.ws1_c00217{word-spacing:-18.912000pt;}
.ws2_c00217{word-spacing:-13.200000pt;}
.ws0_c00217{word-spacing:-9.066667pt;}
.ws1d_c00217{word-spacing:-1.472000pt;}
.ws1a_c00217{word-spacing:-1.280000pt;}
.ws18_c00217{word-spacing:-1.088000pt;}
.ws3_c00217{word-spacing:0.000000pt;}
.ws16_c00217{word-spacing:0.192000pt;}
.ws9_c00217{word-spacing:0.512000pt;}
.wsa_c00217{word-spacing:0.832000pt;}
.ws4_c00217{word-spacing:1.216000pt;}
.ws1c_c00217{word-spacing:1.920000pt;}
.ws13_c00217{word-spacing:2.176000pt;}
.ws17_c00217{word-spacing:2.368000pt;}
.wsb_c00217{word-spacing:2.560000pt;}
.ws1b_c00217{word-spacing:2.624000pt;}
.ws8_c00217{word-spacing:3.136000pt;}
.ws11_c00217{word-spacing:3.328000pt;}
.wsd_c00217{word-spacing:3.584000pt;}
.wsf_c00217{word-spacing:3.648000pt;}
.wse_c00217{word-spacing:3.904000pt;}
.ws19_c00217{word-spacing:4.160000pt;}
.ws5_c00217{word-spacing:4.608000pt;}
.wsc_c00217{word-spacing:4.928000pt;}
.ws7_c00217{word-spacing:5.632000pt;}
.ws6_c00217{word-spacing:5.760000pt;}
.ws15_c00217{word-spacing:7.040000pt;}
.ws12_c00217{word-spacing:7.296000pt;}
.ws10_c00217{word-spacing:9.024000pt;}
.ws14_c00217{word-spacing:15.232000pt;}
._0_c00217{margin-left:-426.966400pt;}
._5_c00217{margin-left:-9.664000pt;}
._4_c00217{margin-left:-5.936000pt;}
._1_c00217{margin-left:-3.733333pt;}
._3_c00217{margin-left:-2.742400pt;}
._2_c00217{margin-left:-1.008000pt;}
.fs1_c00217{font-size:37.333333pt;}
.fs0_c00217{font-size:53.333333pt;}
.fs4_c00217{font-size:58.666667pt;}
.fs3_c00217{font-size:64.000000pt;}
.fs2_c00217{font-size:96.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y1_c00217{bottom:36.666667pt;}
.y1e_c00217{bottom:121.042400pt;}
.y1d_c00217{bottom:147.714400pt;}
.y1c_c00217{bottom:174.386400pt;}
.y1b_c00217{bottom:201.058400pt;}
.y1a_c00217{bottom:227.730400pt;}
.y19_c00217{bottom:254.402400pt;}
.y18_c00217{bottom:281.074400pt;}
.y17_c00217{bottom:307.746400pt;}
.y16_c00217{bottom:334.418400pt;}
.y15_c00217{bottom:361.090400pt;}
.y14_c00217{bottom:387.762400pt;}
.y13_c00217{bottom:414.434400pt;}
.y12_c00217{bottom:441.106400pt;}
.y11_c00217{bottom:467.778400pt;}
.y10_c00217{bottom:494.450400pt;}
.yf_c00217{bottom:521.122400pt;}
.ye_c00217{bottom:547.794400pt;}
.yd_c00217{bottom:574.466400pt;}
.yc_c00217{bottom:601.138400pt;}
.yb_c00217{bottom:627.810400pt;}
.ya_c00217{bottom:654.482400pt;}
.y9_c00217{bottom:681.154400pt;}
.y8_c00217{bottom:707.826400pt;}
.y7_c00217{bottom:734.498400pt;}
.y6_c00217{bottom:761.170400pt;}
.y22_c00217{bottom:761.186400pt;}
.y5_c00217{bottom:787.842400pt;}
.y21_c00217{bottom:787.853067pt;}
.y4_c00217{bottom:814.514400pt;}
.y20_c00217{bottom:814.519733pt;}
.y3_c00217{bottom:841.186400pt;}
.y1f_c00217{bottom:841.288800pt;}
.y2_c00217{bottom:894.519733pt;}
.h5_c00217{height:44.704000pt;}
.h2_c00217{height:48.000000pt;}
.h4_c00217{height:57.600000pt;}
.h3_c00217{height:89.760000pt;}
.h0_c00217{height:1122.520000pt;}
.h1_c00217{height:1122.666667pt;}
.w0_c00217{width:793.701333pt;}
.w1_c00217{width:794.000000pt;}
.x0_c00217{left:0.000000pt;}
.x2_c00217{left:73.333333pt;}
.x3_c00217{left:94.666667pt;}
.x4_c00217{left:600.543200pt;}
.x1_c00217{left:701.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00218;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00218;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00218;src:url('chunks/assets/font_2b70471376d2e8664a2ec453.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.155000;font-style: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);}
.m1_c00218{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls4_c00218{letter-spacing:-0.864000px;}
.ls3_c00218{letter-spacing:-0.288000px;}
.ls2_c00218{letter-spacing:0.000000px;}
.ls0_c00218{letter-spacing:0.864000px;}
.ls1_c00218{letter-spacing:1.200000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00218{word-spacing:-13.104000px;}
.ws0_c00218{word-spacing:-10.200000px;}
.ws9_c00218{word-spacing:-4.752000px;}
.ws5_c00218{word-spacing:-4.320000px;}
.ws7_c00218{word-spacing:-3.600000px;}
.ws3_c00218{word-spacing:-3.528000px;}
.ws4_c00218{word-spacing:-2.808000px;}
.wsb_c00218{word-spacing:-1.440000px;}
.wsc_c00218{word-spacing:-0.864000px;}
.ws6_c00218{word-spacing:-0.576000px;}
.wsa_c00218{word-spacing:-0.288000px;}
.ws2_c00218{word-spacing:0.000000px;}
.ws8_c00218{word-spacing:0.288000px;}
._0_c00218{margin-left:-480.337200px;}
._7_c00218{margin-left:-15.768000px;}
._9_c00218{margin-left:-14.688000px;}
._a_c00218{margin-left:-11.520000px;}
._b_c00218{margin-left:-9.000000px;}
._4_c00218{margin-left:-5.760000px;}
._1_c00218{margin-left:-4.200000px;}
._3_c00218{margin-left:-1.440000px;}
._5_c00218{width:1.440000px;}
._8_c00218{width:2.512800px;}
._2_c00218{width:3.528000px;}
._6_c00218{width:4.752000px;}
.fc3_c00218{color:rgb(255,255,255);}
.fc2_c00218{color:rgb(233,83,14);}
.fc1_c00218{color:rgb(232,86,17);}
.fc0_c00218{color:rgb(60,60,59);}
.fs1_c00218{font-size:42.000000px;}
.fs0_c00218{font-size:60.000000px;}
.fs3_c00218{font-size:72.000000px;}
.fs4_c00218{font-size:120.000000px;}
.fs2_c00218{font-size:360.000000px;}
.y0_c00218{bottom:0.000000px;}
.y1_c00218{bottom:41.250000px;}
.y15_c00218{bottom:214.238700px;}
.y14_c00218{bottom:235.244700px;}
.y13_c00218{bottom:256.250700px;}
.y12_c00218{bottom:313.256700px;}
.y11_c00218{bottom:334.262700px;}
.y10_c00218{bottom:355.268700px;}
.yf_c00218{bottom:376.274700px;}
.ye_c00218{bottom:433.280700px;}
.yd_c00218{bottom:454.286700px;}
.yc_c00218{bottom:475.292700px;}
.yb_c00218{bottom:496.298700px;}
.ya_c00218{bottom:544.304700px;}
.y9_c00218{bottom:565.310700px;}
.y8_c00218{bottom:586.316700px;}
.y7_c00218{bottom:643.322700px;}
.y6_c00218{bottom:664.328700px;}
.y5_c00218{bottom:685.334700px;}
.y4_c00218{bottom:706.340700px;}
.y3_c00218{bottom:752.834700px;}
.y19_c00218{bottom:916.334700px;}
.y18_c00218{bottom:946.334700px;}
.y17_c00218{bottom:976.334700px;}
.y16_c00218{bottom:1006.334700px;}
.y2_c00218{bottom:1093.526700px;}
.h2_c00218{height:54.000000px;}
.h5_c00218{height:64.800000px;}
.h4_c00218{height:66.456000px;}
.h6_c00218{height:112.200000px;}
.h3_c00218{height:324.000000px;}
.h0_c00218{height:1262.835000px;}
.h1_c00218{height:1263.000000px;}
.w0_c00218{width:892.914000px;}
.w1_c00218{width:893.250000px;}
.x0_c00218{left:0.000000px;}
.x2_c00218{left:81.290250px;}
.x3_c00218{left:82.393650px;}
.x5_c00218{left:112.287450px;}
.x4_c00218{left:127.393650px;}
.x1_c00218{left:789.413850px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls4_c00218{letter-spacing:-0.768000pt;}
.ls3_c00218{letter-spacing:-0.256000pt;}
.ls2_c00218{letter-spacing:0.000000pt;}
.ls0_c00218{letter-spacing:0.768000pt;}
.ls1_c00218{letter-spacing:1.066667pt;}
.ws1_c00218{word-spacing:-11.648000pt;}
.ws0_c00218{word-spacing:-9.066667pt;}
.ws9_c00218{word-spacing:-4.224000pt;}
.ws5_c00218{word-spacing:-3.840000pt;}
.ws7_c00218{word-spacing:-3.200000pt;}
.ws3_c00218{word-spacing:-3.136000pt;}
.ws4_c00218{word-spacing:-2.496000pt;}
.wsb_c00218{word-spacing:-1.280000pt;}
.wsc_c00218{word-spacing:-0.768000pt;}
.ws6_c00218{word-spacing:-0.512000pt;}
.wsa_c00218{word-spacing:-0.256000pt;}
.ws2_c00218{word-spacing:0.000000pt;}
.ws8_c00218{word-spacing:0.256000pt;}
._0_c00218{margin-left:-426.966400pt;}
._7_c00218{margin-left:-14.016000pt;}
._9_c00218{margin-left:-13.056000pt;}
._a_c00218{margin-left:-10.240000pt;}
._b_c00218{margin-left:-8.000000pt;}
._4_c00218{margin-left:-5.120000pt;}
._1_c00218{margin-left:-3.733333pt;}
._3_c00218{margin-left:-1.280000pt;}
._5_c00218{width:1.280000pt;}
._8_c00218{width:2.233600pt;}
._2_c00218{width:3.136000pt;}
._6_c00218{width:4.224000pt;}
.fs1_c00218{font-size:37.333333pt;}
.fs0_c00218{font-size:53.333333pt;}
.fs3_c00218{font-size:64.000000pt;}
.fs4_c00218{font-size:106.666667pt;}
.fs2_c00218{font-size:320.000000pt;}
.y0_c00218{bottom:0.000000pt;}
.y1_c00218{bottom:36.666667pt;}
.y15_c00218{bottom:190.434400pt;}
.y14_c00218{bottom:209.106400pt;}
.y13_c00218{bottom:227.778400pt;}
.y12_c00218{bottom:278.450400pt;}
.y11_c00218{bottom:297.122400pt;}
.y10_c00218{bottom:315.794400pt;}
.yf_c00218{bottom:334.466400pt;}
.ye_c00218{bottom:385.138400pt;}
.yd_c00218{bottom:403.810400pt;}
.yc_c00218{bottom:422.482400pt;}
.yb_c00218{bottom:441.154400pt;}
.ya_c00218{bottom:483.826400pt;}
.y9_c00218{bottom:502.498400pt;}
.y8_c00218{bottom:521.170400pt;}
.y7_c00218{bottom:571.842400pt;}
.y6_c00218{bottom:590.514400pt;}
.y5_c00218{bottom:609.186400pt;}
.y4_c00218{bottom:627.858400pt;}
.y3_c00218{bottom:669.186400pt;}
.y19_c00218{bottom:814.519733pt;}
.y18_c00218{bottom:841.186400pt;}
.y17_c00218{bottom:867.853067pt;}
.y16_c00218{bottom:894.519733pt;}
.y2_c00218{bottom:972.023733pt;}
.h2_c00218{height:48.000000pt;}
.h5_c00218{height:57.600000pt;}
.h4_c00218{height:59.072000pt;}
.h6_c00218{height:99.733333pt;}
.h3_c00218{height:288.000000pt;}
.h0_c00218{height:1122.520000pt;}
.h1_c00218{height:1122.666667pt;}
.w0_c00218{width:793.701333pt;}
.w1_c00218{width:794.000000pt;}
.x0_c00218{left:0.000000pt;}
.x2_c00218{left:72.258000pt;}
.x3_c00218{left:73.238800pt;}
.x5_c00218{left:99.811067pt;}
.x4_c00218{left:113.238800pt;}
.x1_c00218{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_e4b56d279e46b15715740c77.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:0.961426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00219;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00219;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff5_c00219{font-family:ff5_c00219;line-height:1.161000;font-style: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);}
.m1_c00219{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls4_c00219{letter-spacing:-0.540000px;}
.ls3_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:0.720000px;}
.ls2_c00219{letter-spacing:1.500000px;}
.ls1_c00219{letter-spacing:1.650000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00219{word-spacing:-21.060000px;}
.ws0_c00219{word-spacing:-10.200000px;}
.ws12_c00219{word-spacing:-2.448000px;}
.wsd_c00219{word-spacing:-2.160000px;}
.ws1d_c00219{word-spacing:-1.500000px;}
.wsc_c00219{word-spacing:-1.080000px;}
.ws10_c00219{word-spacing:-0.360000px;}
.wsf_c00219{word-spacing:-0.072000px;}
.ws2_c00219{word-spacing:0.000000px;}
.wsb_c00219{word-spacing:0.144000px;}
.ws13_c00219{word-spacing:0.216000px;}
.ws5_c00219{word-spacing:0.576000px;}
.ws15_c00219{word-spacing:0.720000px;}
.ws1b_c00219{word-spacing:1.224000px;}
.ws14_c00219{word-spacing:1.296000px;}
.ws6_c00219{word-spacing:1.872000px;}
.ws11_c00219{word-spacing:3.024000px;}
.ws1c_c00219{word-spacing:3.888000px;}
.ws7_c00219{word-spacing:4.320000px;}
.ws4_c00219{word-spacing:4.824000px;}
.ws3_c00219{word-spacing:4.896000px;}
.wsa_c00219{word-spacing:5.544000px;}
.ws1a_c00219{word-spacing:6.264000px;}
.ws17_c00219{word-spacing:7.272000px;}
.ws18_c00219{word-spacing:7.704000px;}
.ws9_c00219{word-spacing:8.352000px;}
.wse_c00219{word-spacing:9.864000px;}
.ws8_c00219{word-spacing:12.096000px;}
.ws16_c00219{word-spacing:13.896000px;}
.ws19_c00219{word-spacing:18.288000px;}
._0_c00219{margin-left:-480.337200px;}
._5_c00219{margin-left:-6.487200px;}
._3_c00219{margin-left:-5.241600px;}
._1_c00219{margin-left:-4.200000px;}
._4_c00219{margin-left:-2.901600px;}
._2_c00219{margin-left:-1.432800px;}
._6_c00219{width:1.188000px;}
._7_c00219{width:2.397600px;}
._8_c00219{width:5.745600px;}
.fc3_c00219{color:rgb(32,32,32);}
.fc2_c00219{color:rgb(233,83,14);}
.fc1_c00219{color:rgb(232,86,17);}
.fc4_c00219{color:rgb(157,157,156);}
.fc0_c00219{color:rgb(60,60,59);}
.fs1_c00219{font-size:42.000000px;}
.fs0_c00219{font-size:60.000000px;}
.fs4_c00219{font-size:66.000000px;}
.fs3_c00219{font-size:72.000000px;}
.fs2_c00219{font-size:108.000000px;}
.y0_c00219{bottom:0.000000px;}
.y1_c00219{bottom:41.250000px;}
.y1d_c00219{bottom:166.178700px;}
.y1c_c00219{bottom:196.184700px;}
.y1b_c00219{bottom:226.190700px;}
.y1a_c00219{bottom:256.196700px;}
.y19_c00219{bottom:286.202700px;}
.y18_c00219{bottom:316.208700px;}
.y17_c00219{bottom:346.214700px;}
.y16_c00219{bottom:376.220700px;}
.y15_c00219{bottom:406.226700px;}
.y14_c00219{bottom:436.232700px;}
.y13_c00219{bottom:466.238700px;}
.y12_c00219{bottom:496.244700px;}
.y11_c00219{bottom:526.250700px;}
.y10_c00219{bottom:556.256700px;}
.yf_c00219{bottom:586.262700px;}
.ye_c00219{bottom:616.268700px;}
.yd_c00219{bottom:646.274700px;}
.yc_c00219{bottom:676.280700px;}
.yb_c00219{bottom:706.286700px;}
.ya_c00219{bottom:736.292700px;}
.y9_c00219{bottom:766.298700px;}
.y8_c00219{bottom:796.304700px;}
.y7_c00219{bottom:826.310700px;}
.y22_c00219{bottom:826.334700px;}
.y6_c00219{bottom:856.316700px;}
.y21_c00219{bottom:856.334700px;}
.y5_c00219{bottom:886.322700px;}
.y20_c00219{bottom:886.334700px;}
.y4_c00219{bottom:916.328700px;}
.y1f_c00219{bottom:916.334700px;}
.y3_c00219{bottom:946.334700px;}
.y1e_c00219{bottom:948.073800px;}
.y2_c00219{bottom:1006.334700px;}
.h5_c00219{height:50.292000px;}
.h2_c00219{height:54.000000px;}
.h4_c00219{height:64.800000px;}
.h3_c00219{height:100.980000px;}
.h0_c00219{height:1262.835000px;}
.h1_c00219{height:1263.000000px;}
.w0_c00219{width:892.914000px;}
.w1_c00219{width:893.250000px;}
.x0_c00219{left:0.000000px;}
.x2_c00219{left:82.500000px;}
.x3_c00219{left:106.500000px;}
.x4_c00219{left:675.611100px;}
.x1_c00219{left:786.953850px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls4_c00219{letter-spacing:-0.480000pt;}
.ls3_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:0.640000pt;}
.ls2_c00219{letter-spacing:1.333333pt;}
.ls1_c00219{letter-spacing:1.466667pt;}
.ws1_c00219{word-spacing:-18.720000pt;}
.ws0_c00219{word-spacing:-9.066667pt;}
.ws12_c00219{word-spacing:-2.176000pt;}
.wsd_c00219{word-spacing:-1.920000pt;}
.ws1d_c00219{word-spacing:-1.333333pt;}
.wsc_c00219{word-spacing:-0.960000pt;}
.ws10_c00219{word-spacing:-0.320000pt;}
.wsf_c00219{word-spacing:-0.064000pt;}
.ws2_c00219{word-spacing:0.000000pt;}
.wsb_c00219{word-spacing:0.128000pt;}
.ws13_c00219{word-spacing:0.192000pt;}
.ws5_c00219{word-spacing:0.512000pt;}
.ws15_c00219{word-spacing:0.640000pt;}
.ws1b_c00219{word-spacing:1.088000pt;}
.ws14_c00219{word-spacing:1.152000pt;}
.ws6_c00219{word-spacing:1.664000pt;}
.ws11_c00219{word-spacing:2.688000pt;}
.ws1c_c00219{word-spacing:3.456000pt;}
.ws7_c00219{word-spacing:3.840000pt;}
.ws4_c00219{word-spacing:4.288000pt;}
.ws3_c00219{word-spacing:4.352000pt;}
.wsa_c00219{word-spacing:4.928000pt;}
.ws1a_c00219{word-spacing:5.568000pt;}
.ws17_c00219{word-spacing:6.464000pt;}
.ws18_c00219{word-spacing:6.848000pt;}
.ws9_c00219{word-spacing:7.424000pt;}
.wse_c00219{word-spacing:8.768000pt;}
.ws8_c00219{word-spacing:10.752000pt;}
.ws16_c00219{word-spacing:12.352000pt;}
.ws19_c00219{word-spacing:16.256000pt;}
._0_c00219{margin-left:-426.966400pt;}
._5_c00219{margin-left:-5.766400pt;}
._3_c00219{margin-left:-4.659200pt;}
._1_c00219{margin-left:-3.733333pt;}
._4_c00219{margin-left:-2.579200pt;}
._2_c00219{margin-left:-1.273600pt;}
._6_c00219{width:1.056000pt;}
._7_c00219{width:2.131200pt;}
._8_c00219{width:5.107200pt;}
.fs1_c00219{font-size:37.333333pt;}
.fs0_c00219{font-size:53.333333pt;}
.fs4_c00219{font-size:58.666667pt;}
.fs3_c00219{font-size:64.000000pt;}
.fs2_c00219{font-size:96.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y1_c00219{bottom:36.666667pt;}
.y1d_c00219{bottom:147.714400pt;}
.y1c_c00219{bottom:174.386400pt;}
.y1b_c00219{bottom:201.058400pt;}
.y1a_c00219{bottom:227.730400pt;}
.y19_c00219{bottom:254.402400pt;}
.y18_c00219{bottom:281.074400pt;}
.y17_c00219{bottom:307.746400pt;}
.y16_c00219{bottom:334.418400pt;}
.y15_c00219{bottom:361.090400pt;}
.y14_c00219{bottom:387.762400pt;}
.y13_c00219{bottom:414.434400pt;}
.y12_c00219{bottom:441.106400pt;}
.y11_c00219{bottom:467.778400pt;}
.y10_c00219{bottom:494.450400pt;}
.yf_c00219{bottom:521.122400pt;}
.ye_c00219{bottom:547.794400pt;}
.yd_c00219{bottom:574.466400pt;}
.yc_c00219{bottom:601.138400pt;}
.yb_c00219{bottom:627.810400pt;}
.ya_c00219{bottom:654.482400pt;}
.y9_c00219{bottom:681.154400pt;}
.y8_c00219{bottom:707.826400pt;}
.y7_c00219{bottom:734.498400pt;}
.y22_c00219{bottom:734.519733pt;}
.y6_c00219{bottom:761.170400pt;}
.y21_c00219{bottom:761.186400pt;}
.y5_c00219{bottom:787.842400pt;}
.y20_c00219{bottom:787.853067pt;}
.y4_c00219{bottom:814.514400pt;}
.y1f_c00219{bottom:814.519733pt;}
.y3_c00219{bottom:841.186400pt;}
.y1e_c00219{bottom:842.732267pt;}
.y2_c00219{bottom:894.519733pt;}
.h5_c00219{height:44.704000pt;}
.h2_c00219{height:48.000000pt;}
.h4_c00219{height:57.600000pt;}
.h3_c00219{height:89.760000pt;}
.h0_c00219{height:1122.520000pt;}
.h1_c00219{height:1122.666667pt;}
.w0_c00219{width:793.701333pt;}
.w1_c00219{width:794.000000pt;}
.x0_c00219{left:0.000000pt;}
.x2_c00219{left:73.333333pt;}
.x3_c00219{left:94.666667pt;}
.x4_c00219{left:600.543200pt;}
.x1_c00219{left:699.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d2b3a49cabb83f4fe7c44d3.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_e4b56d279e46b15715740c77.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:0.961426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00220;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls6_c00220{letter-spacing:-0.324000px;}
.ls5_c00220{letter-spacing:0.000000px;}
.ls2_c00220{letter-spacing:0.600000px;}
.ls1_c00220{letter-spacing:0.648000px;}
.ls0_c00220{letter-spacing:0.720000px;}
.ls4_c00220{letter-spacing:1.500000px;}
.ls3_c00220{letter-spacing:1.650000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00220{word-spacing:-21.276000px;}
.ws2_c00220{word-spacing:-14.850000px;}
.ws0_c00220{word-spacing:-10.200000px;}
.ws19_c00220{word-spacing:-3.960000px;}
.ws1a_c00220{word-spacing:-1.500000px;}
.ws8_c00220{word-spacing:-1.152000px;}
.ws7_c00220{word-spacing:-0.576000px;}
.wsa_c00220{word-spacing:-0.360000px;}
.ws3_c00220{word-spacing:0.000000px;}
.ws9_c00220{word-spacing:0.936000px;}
.wsd_c00220{word-spacing:2.304000px;}
.ws18_c00220{word-spacing:2.880000px;}
.wsb_c00220{word-spacing:3.384000px;}
.wsc_c00220{word-spacing:3.672000px;}
.ws17_c00220{word-spacing:3.888000px;}
.ws10_c00220{word-spacing:5.256000px;}
.wse_c00220{word-spacing:5.400000px;}
.ws14_c00220{word-spacing:6.120000px;}
.ws11_c00220{word-spacing:6.552000px;}
.ws15_c00220{word-spacing:6.768000px;}
.ws5_c00220{word-spacing:6.840000px;}
.ws4_c00220{word-spacing:7.776000px;}
.wsf_c00220{word-spacing:9.576000px;}
.ws12_c00220{word-spacing:10.512000px;}
.ws16_c00220{word-spacing:11.592000px;}
.ws13_c00220{word-spacing:12.456000px;}
.ws6_c00220{word-spacing:16.344000px;}
._0_c00220{margin-left:-480.337200px;}
._5_c00220{margin-left:-5.623200px;}
._1_c00220{margin-left:-4.200000px;}
._4_c00220{margin-left:-3.189600px;}
._3_c00220{margin-left:-2.145600px;}
._2_c00220{margin-left:-1.134000px;}
._6_c00220{width:1.008000px;}
._7_c00220{width:3.960000px;}
._8_c00220{width:115.726800px;}
.fc3_c00220{color:rgb(32,32,32);}
.fc2_c00220{color:rgb(233,83,14);}
.fc1_c00220{color:rgb(232,86,17);}
.fc4_c00220{color:rgb(157,157,156);}
.fc0_c00220{color:rgb(60,60,59);}
.fs1_c00220{font-size:42.000000px;}
.fs0_c00220{font-size:60.000000px;}
.fs4_c00220{font-size:66.000000px;}
.fs3_c00220{font-size:72.000000px;}
.fs2_c00220{font-size:108.000000px;}
.y0_c00220{bottom:0.000000px;}
.y1_c00220{bottom:41.250000px;}
.y1d_c00220{bottom:106.334700px;}
.y1c_c00220{bottom:136.334700px;}
.y1b_c00220{bottom:226.190700px;}
.y1a_c00220{bottom:256.196700px;}
.y19_c00220{bottom:286.202700px;}
.y18_c00220{bottom:316.208700px;}
.y17_c00220{bottom:346.214700px;}
.y16_c00220{bottom:376.220700px;}
.y15_c00220{bottom:406.226700px;}
.y14_c00220{bottom:436.232700px;}
.y13_c00220{bottom:466.238700px;}
.y12_c00220{bottom:496.244700px;}
.y11_c00220{bottom:526.250700px;}
.y10_c00220{bottom:556.256700px;}
.yf_c00220{bottom:586.262700px;}
.ye_c00220{bottom:616.268700px;}
.yd_c00220{bottom:646.274700px;}
.yc_c00220{bottom:676.280700px;}
.yb_c00220{bottom:706.286700px;}
.ya_c00220{bottom:736.292700px;}
.y9_c00220{bottom:766.298700px;}
.y8_c00220{bottom:796.304700px;}
.y7_c00220{bottom:826.310700px;}
.y22_c00220{bottom:826.334700px;}
.y6_c00220{bottom:856.316700px;}
.y21_c00220{bottom:856.334700px;}
.y5_c00220{bottom:886.322700px;}
.y20_c00220{bottom:886.334700px;}
.y4_c00220{bottom:916.328700px;}
.y1f_c00220{bottom:916.334700px;}
.y3_c00220{bottom:946.334700px;}
.y1e_c00220{bottom:948.073800px;}
.y2_c00220{bottom:1006.334700px;}
.h5_c00220{height:50.292000px;}
.h2_c00220{height:54.000000px;}
.h4_c00220{height:64.800000px;}
.h3_c00220{height:100.980000px;}
.h0_c00220{height:1262.835000px;}
.h1_c00220{height:1263.000000px;}
.w0_c00220{width:892.914000px;}
.w1_c00220{width:893.250000px;}
.x0_c00220{left:0.000000px;}
.x2_c00220{left:82.500000px;}
.x3_c00220{left:106.500000px;}
.x4_c00220{left:675.611100px;}
.x1_c00220{left:790.613850px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls6_c00220{letter-spacing:-0.288000pt;}
.ls5_c00220{letter-spacing:0.000000pt;}
.ls2_c00220{letter-spacing:0.533333pt;}
.ls1_c00220{letter-spacing:0.576000pt;}
.ls0_c00220{letter-spacing:0.640000pt;}
.ls4_c00220{letter-spacing:1.333333pt;}
.ls3_c00220{letter-spacing:1.466667pt;}
.ws1_c00220{word-spacing:-18.912000pt;}
.ws2_c00220{word-spacing:-13.200000pt;}
.ws0_c00220{word-spacing:-9.066667pt;}
.ws19_c00220{word-spacing:-3.520000pt;}
.ws1a_c00220{word-spacing:-1.333333pt;}
.ws8_c00220{word-spacing:-1.024000pt;}
.ws7_c00220{word-spacing:-0.512000pt;}
.wsa_c00220{word-spacing:-0.320000pt;}
.ws3_c00220{word-spacing:0.000000pt;}
.ws9_c00220{word-spacing:0.832000pt;}
.wsd_c00220{word-spacing:2.048000pt;}
.ws18_c00220{word-spacing:2.560000pt;}
.wsb_c00220{word-spacing:3.008000pt;}
.wsc_c00220{word-spacing:3.264000pt;}
.ws17_c00220{word-spacing:3.456000pt;}
.ws10_c00220{word-spacing:4.672000pt;}
.wse_c00220{word-spacing:4.800000pt;}
.ws14_c00220{word-spacing:5.440000pt;}
.ws11_c00220{word-spacing:5.824000pt;}
.ws15_c00220{word-spacing:6.016000pt;}
.ws5_c00220{word-spacing:6.080000pt;}
.ws4_c00220{word-spacing:6.912000pt;}
.wsf_c00220{word-spacing:8.512000pt;}
.ws12_c00220{word-spacing:9.344000pt;}
.ws16_c00220{word-spacing:10.304000pt;}
.ws13_c00220{word-spacing:11.072000pt;}
.ws6_c00220{word-spacing:14.528000pt;}
._0_c00220{margin-left:-426.966400pt;}
._5_c00220{margin-left:-4.998400pt;}
._1_c00220{margin-left:-3.733333pt;}
._4_c00220{margin-left:-2.835200pt;}
._3_c00220{margin-left:-1.907200pt;}
._2_c00220{margin-left:-1.008000pt;}
._6_c00220{width:0.896000pt;}
._7_c00220{width:3.520000pt;}
._8_c00220{width:102.868267pt;}
.fs1_c00220{font-size:37.333333pt;}
.fs0_c00220{font-size:53.333333pt;}
.fs4_c00220{font-size:58.666667pt;}
.fs3_c00220{font-size:64.000000pt;}
.fs2_c00220{font-size:96.000000pt;}
.y0_c00220{bottom:0.000000pt;}
.y1_c00220{bottom:36.666667pt;}
.y1d_c00220{bottom:94.519733pt;}
.y1c_c00220{bottom:121.186400pt;}
.y1b_c00220{bottom:201.058400pt;}
.y1a_c00220{bottom:227.730400pt;}
.y19_c00220{bottom:254.402400pt;}
.y18_c00220{bottom:281.074400pt;}
.y17_c00220{bottom:307.746400pt;}
.y16_c00220{bottom:334.418400pt;}
.y15_c00220{bottom:361.090400pt;}
.y14_c00220{bottom:387.762400pt;}
.y13_c00220{bottom:414.434400pt;}
.y12_c00220{bottom:441.106400pt;}
.y11_c00220{bottom:467.778400pt;}
.y10_c00220{bottom:494.450400pt;}
.yf_c00220{bottom:521.122400pt;}
.ye_c00220{bottom:547.794400pt;}
.yd_c00220{bottom:574.466400pt;}
.yc_c00220{bottom:601.138400pt;}
.yb_c00220{bottom:627.810400pt;}
.ya_c00220{bottom:654.482400pt;}
.y9_c00220{bottom:681.154400pt;}
.y8_c00220{bottom:707.826400pt;}
.y7_c00220{bottom:734.498400pt;}
.y22_c00220{bottom:734.519733pt;}
.y6_c00220{bottom:761.170400pt;}
.y21_c00220{bottom:761.186400pt;}
.y5_c00220{bottom:787.842400pt;}
.y20_c00220{bottom:787.853067pt;}
.y4_c00220{bottom:814.514400pt;}
.y1f_c00220{bottom:814.519733pt;}
.y3_c00220{bottom:841.186400pt;}
.y1e_c00220{bottom:842.732267pt;}
.y2_c00220{bottom:894.519733pt;}
.h5_c00220{height:44.704000pt;}
.h2_c00220{height:48.000000pt;}
.h4_c00220{height:57.600000pt;}
.h3_c00220{height:89.760000pt;}
.h0_c00220{height:1122.520000pt;}
.h1_c00220{height:1122.666667pt;}
.w0_c00220{width:793.701333pt;}
.w1_c00220{width:794.000000pt;}
.x0_c00220{left:0.000000pt;}
.x2_c00220{left:73.333333pt;}
.x3_c00220{left:94.666667pt;}
.x4_c00220{left:600.543200pt;}
.x1_c00220{left:702.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00221;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.155000;font-style: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);}
.m1_c00221{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls2_c00221{letter-spacing:0.000000px;}
.ls0_c00221{letter-spacing:0.864000px;}
.ls1_c00221{letter-spacing:1.200000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00221{word-spacing:-25.200000px;}
.ws0_c00221{word-spacing:-10.200000px;}
.ws5_c00221{word-spacing:-9.720000px;}
.ws4_c00221{word-spacing:-3.600000px;}
.ws6_c00221{word-spacing:-1.560000px;}
.ws3_c00221{word-spacing:-0.864000px;}
.ws2_c00221{word-spacing:0.000000px;}
._0_c00221{margin-left:-480.336600px;}
._5_c00221{margin-left:-11.400000px;}
._6_c00221{margin-left:-9.600000px;}
._7_c00221{margin-left:-6.000000px;}
._1_c00221{margin-left:-4.200000px;}
._3_c00221{margin-left:-2.664000px;}
._2_c00221{margin-left:-1.440000px;}
._9_c00221{width:1.800000px;}
._4_c00221{width:4.464000px;}
._8_c00221{width:8.520000px;}
.fc3_c00221{color:rgb(255,255,255);}
.fc2_c00221{color:rgb(233,83,14);}
.fc1_c00221{color:rgb(232,86,17);}
.fc0_c00221{color:rgb(60,60,59);}
.fs1_c00221{font-size:42.000000px;}
.fs0_c00221{font-size:60.000000px;}
.fs3_c00221{font-size:72.000000px;}
.fs4_c00221{font-size:120.000000px;}
.fs2_c00221{font-size:360.000000px;}
.y0_c00221{bottom:0.000000px;}
.y1_c00221{bottom:41.250000px;}
.y9_c00221{bottom:574.310700px;}
.y8_c00221{bottom:595.316700px;}
.y7_c00221{bottom:616.322700px;}
.y6_c00221{bottom:664.328700px;}
.y5_c00221{bottom:685.334700px;}
.y4_c00221{bottom:706.340700px;}
.y3_c00221{bottom:752.834700px;}
.ye_c00221{bottom:886.334700px;}
.yd_c00221{bottom:916.334700px;}
.yc_c00221{bottom:946.334700px;}
.yb_c00221{bottom:976.334700px;}
.ya_c00221{bottom:1006.334700px;}
.y2_c00221{bottom:1093.526700px;}
.h2_c00221{height:54.000000px;}
.h5_c00221{height:64.800000px;}
.h4_c00221{height:66.456000px;}
.h6_c00221{height:112.200000px;}
.h3_c00221{height:324.000000px;}
.h0_c00221{height:1262.835000px;}
.h1_c00221{height:1263.000000px;}
.w0_c00221{width:892.914000px;}
.w1_c00221{width:893.250000px;}
.x0_c00221{left:0.000000px;}
.x2_c00221{left:81.290250px;}
.x3_c00221{left:82.393650px;}
.x5_c00221{left:112.287450px;}
.x4_c00221{left:127.393650px;}
.x1_c00221{left:788.138700px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls2_c00221{letter-spacing:0.000000pt;}
.ls0_c00221{letter-spacing:0.768000pt;}
.ls1_c00221{letter-spacing:1.066667pt;}
.ws1_c00221{word-spacing:-22.400000pt;}
.ws0_c00221{word-spacing:-9.066667pt;}
.ws5_c00221{word-spacing:-8.640000pt;}
.ws4_c00221{word-spacing:-3.200000pt;}
.ws6_c00221{word-spacing:-1.386667pt;}
.ws3_c00221{word-spacing:-0.768000pt;}
.ws2_c00221{word-spacing:0.000000pt;}
._0_c00221{margin-left:-426.965867pt;}
._5_c00221{margin-left:-10.133333pt;}
._6_c00221{margin-left:-8.533333pt;}
._7_c00221{margin-left:-5.333333pt;}
._1_c00221{margin-left:-3.733333pt;}
._3_c00221{margin-left:-2.368000pt;}
._2_c00221{margin-left:-1.280000pt;}
._9_c00221{width:1.600000pt;}
._4_c00221{width:3.968000pt;}
._8_c00221{width:7.573333pt;}
.fs1_c00221{font-size:37.333333pt;}
.fs0_c00221{font-size:53.333333pt;}
.fs3_c00221{font-size:64.000000pt;}
.fs4_c00221{font-size:106.666667pt;}
.fs2_c00221{font-size:320.000000pt;}
.y0_c00221{bottom:0.000000pt;}
.y1_c00221{bottom:36.666667pt;}
.y9_c00221{bottom:510.498400pt;}
.y8_c00221{bottom:529.170400pt;}
.y7_c00221{bottom:547.842400pt;}
.y6_c00221{bottom:590.514400pt;}
.y5_c00221{bottom:609.186400pt;}
.y4_c00221{bottom:627.858400pt;}
.y3_c00221{bottom:669.186400pt;}
.ye_c00221{bottom:787.853067pt;}
.yd_c00221{bottom:814.519733pt;}
.yc_c00221{bottom:841.186400pt;}
.yb_c00221{bottom:867.853067pt;}
.ya_c00221{bottom:894.519733pt;}
.y2_c00221{bottom:972.023733pt;}
.h2_c00221{height:48.000000pt;}
.h5_c00221{height:57.600000pt;}
.h4_c00221{height:59.072000pt;}
.h6_c00221{height:99.733333pt;}
.h3_c00221{height:288.000000pt;}
.h0_c00221{height:1122.520000pt;}
.h1_c00221{height:1122.666667pt;}
.w0_c00221{width:793.701333pt;}
.w1_c00221{width:794.000000pt;}
.x0_c00221{left:0.000000pt;}
.x2_c00221{left:72.258000pt;}
.x3_c00221{left:73.238800pt;}
.x5_c00221{left:99.811067pt;}
.x4_c00221{left:113.238800pt;}
.x1_c00221{left:700.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00222;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:1.161000;font-style: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);}
.m1_c00222{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls5_c00222{letter-spacing:-0.540000px;}
.ls4_c00222{letter-spacing:0.000000px;}
.ls0_c00222{letter-spacing:0.720000px;}
.ls1_c00222{letter-spacing:0.840000px;}
.ls3_c00222{letter-spacing:1.500000px;}
.ls2_c00222{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00222{word-spacing:-21.060000px;}
.ws2_c00222{word-spacing:-17.640000px;}
.ws0_c00222{word-spacing:-10.200000px;}
.ws6_c00222{word-spacing:-1.800000px;}
.ws9_c00222{word-spacing:-1.512000px;}
.ws12_c00222{word-spacing:-1.500000px;}
.ws8_c00222{word-spacing:-0.864000px;}
.ws4_c00222{word-spacing:-0.840000px;}
.wsf_c00222{word-spacing:-0.072000px;}
.ws3_c00222{word-spacing:0.000000px;}
.ws10_c00222{word-spacing:0.144000px;}
.ws5_c00222{word-spacing:3.672000px;}
.ws7_c00222{word-spacing:3.816000px;}
.ws11_c00222{word-spacing:5.400000px;}
.wsc_c00222{word-spacing:5.904000px;}
.wsd_c00222{word-spacing:8.136000px;}
.wsb_c00222{word-spacing:10.080000px;}
.wse_c00222{word-spacing:10.728000px;}
.wsa_c00222{word-spacing:11.016000px;}
._0_c00222{margin-left:-480.336600px;}
._3_c00222{margin-left:-6.444000px;}
._1_c00222{margin-left:-4.200000px;}
._2_c00222{margin-left:-1.440000px;}
.fc3_c00222{color:rgb(32,32,32);}
.fc2_c00222{color:rgb(233,83,14);}
.fc1_c00222{color:rgb(232,86,17);}
.fc4_c00222{color:rgb(157,157,156);}
.fc0_c00222{color:rgb(60,60,59);}
.fs1_c00222{font-size:42.000000px;}
.fs0_c00222{font-size:60.000000px;}
.fs5_c00222{font-size:66.000000px;}
.fs4_c00222{font-size:72.000000px;}
.fs3_c00222{font-size:84.000000px;}
.fs2_c00222{font-size:108.000000px;}
.y0_c00222{bottom:0.000000px;}
.y1_c00222{bottom:41.250000px;}
.y12_c00222{bottom:346.322700px;}
.y11_c00222{bottom:376.328700px;}
.y10_c00222{bottom:406.334700px;}
.yf_c00222{bottom:466.334700px;}
.ye_c00222{bottom:556.274700px;}
.yd_c00222{bottom:586.280700px;}
.yc_c00222{bottom:616.286700px;}
.yb_c00222{bottom:646.292700px;}
.y1a_c00222{bottom:646.334700px;}
.ya_c00222{bottom:676.298700px;}
.y19_c00222{bottom:676.334700px;}
.y9_c00222{bottom:706.304700px;}
.y18_c00222{bottom:706.334700px;}
.y8_c00222{bottom:736.310700px;}
.y17_c00222{bottom:736.334700px;}
.y7_c00222{bottom:766.316700px;}
.y16_c00222{bottom:766.334700px;}
.y6_c00222{bottom:796.322700px;}
.y15_c00222{bottom:796.334700px;}
.y5_c00222{bottom:826.328700px;}
.y14_c00222{bottom:826.334700px;}
.y4_c00222{bottom:856.334700px;}
.y13_c00222{bottom:857.010900px;}
.y3_c00222{bottom:916.334700px;}
.y2_c00222{bottom:1006.334700px;}
.h6_c00222{height:50.292000px;}
.h2_c00222{height:54.000000px;}
.h5_c00222{height:64.800000px;}
.h4_c00222{height:78.540000px;}
.h3_c00222{height:100.980000px;}
.h0_c00222{height:1262.835000px;}
.h1_c00222{height:1263.000000px;}
.w0_c00222{width:892.914000px;}
.w1_c00222{width:893.250000px;}
.x0_c00222{left:0.000000px;}
.x2_c00222{left:82.500000px;}
.x3_c00222{left:90.000000px;}
.x4_c00222{left:106.500000px;}
.x5_c00222{left:675.611100px;}
.x1_c00222{left:787.988700px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls5_c00222{letter-spacing:-0.480000pt;}
.ls4_c00222{letter-spacing:0.000000pt;}
.ls0_c00222{letter-spacing:0.640000pt;}
.ls1_c00222{letter-spacing:0.746667pt;}
.ls3_c00222{letter-spacing:1.333333pt;}
.ls2_c00222{letter-spacing:1.466667pt;}
.ws1_c00222{word-spacing:-18.720000pt;}
.ws2_c00222{word-spacing:-15.680000pt;}
.ws0_c00222{word-spacing:-9.066667pt;}
.ws6_c00222{word-spacing:-1.600000pt;}
.ws9_c00222{word-spacing:-1.344000pt;}
.ws12_c00222{word-spacing:-1.333333pt;}
.ws8_c00222{word-spacing:-0.768000pt;}
.ws4_c00222{word-spacing:-0.746667pt;}
.wsf_c00222{word-spacing:-0.064000pt;}
.ws3_c00222{word-spacing:0.000000pt;}
.ws10_c00222{word-spacing:0.128000pt;}
.ws5_c00222{word-spacing:3.264000pt;}
.ws7_c00222{word-spacing:3.392000pt;}
.ws11_c00222{word-spacing:4.800000pt;}
.wsc_c00222{word-spacing:5.248000pt;}
.wsd_c00222{word-spacing:7.232000pt;}
.wsb_c00222{word-spacing:8.960000pt;}
.wse_c00222{word-spacing:9.536000pt;}
.wsa_c00222{word-spacing:9.792000pt;}
._0_c00222{margin-left:-426.965867pt;}
._3_c00222{margin-left:-5.728000pt;}
._1_c00222{margin-left:-3.733333pt;}
._2_c00222{margin-left:-1.280000pt;}
.fs1_c00222{font-size:37.333333pt;}
.fs0_c00222{font-size:53.333333pt;}
.fs5_c00222{font-size:58.666667pt;}
.fs4_c00222{font-size:64.000000pt;}
.fs3_c00222{font-size:74.666667pt;}
.fs2_c00222{font-size:96.000000pt;}
.y0_c00222{bottom:0.000000pt;}
.y1_c00222{bottom:36.666667pt;}
.y12_c00222{bottom:307.842400pt;}
.y11_c00222{bottom:334.514400pt;}
.y10_c00222{bottom:361.186400pt;}
.yf_c00222{bottom:414.519733pt;}
.ye_c00222{bottom:494.466400pt;}
.yd_c00222{bottom:521.138400pt;}
.yc_c00222{bottom:547.810400pt;}
.yb_c00222{bottom:574.482400pt;}
.y1a_c00222{bottom:574.519733pt;}
.ya_c00222{bottom:601.154400pt;}
.y19_c00222{bottom:601.186400pt;}
.y9_c00222{bottom:627.826400pt;}
.y18_c00222{bottom:627.853067pt;}
.y8_c00222{bottom:654.498400pt;}
.y17_c00222{bottom:654.519733pt;}
.y7_c00222{bottom:681.170400pt;}
.y16_c00222{bottom:681.186400pt;}
.y6_c00222{bottom:707.842400pt;}
.y15_c00222{bottom:707.853067pt;}
.y5_c00222{bottom:734.514400pt;}
.y14_c00222{bottom:734.519733pt;}
.y4_c00222{bottom:761.186400pt;}
.y13_c00222{bottom:761.787467pt;}
.y3_c00222{bottom:814.519733pt;}
.y2_c00222{bottom:894.519733pt;}
.h6_c00222{height:44.704000pt;}
.h2_c00222{height:48.000000pt;}
.h5_c00222{height:57.600000pt;}
.h4_c00222{height:69.813333pt;}
.h3_c00222{height:89.760000pt;}
.h0_c00222{height:1122.520000pt;}
.h1_c00222{height:1122.666667pt;}
.w0_c00222{width:793.701333pt;}
.w1_c00222{width:794.000000pt;}
.x0_c00222{left:0.000000pt;}
.x2_c00222{left:73.333333pt;}
.x3_c00222{left:80.000000pt;}
.x4_c00222{left:94.666667pt;}
.x5_c00222{left:600.543200pt;}
.x1_c00222{left:700.434400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.199000;font-style: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);}
.m1_c00223{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls1_c00223{letter-spacing:0.000000px;}
.ls0_c00223{letter-spacing:0.720000px;}
.ls2_c00223{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws8_c00223{word-spacing:-5.688000px;}
.wsf_c00223{word-spacing:-3.456000px;}
.ws6_c00223{word-spacing:-2.592000px;}
.ws5_c00223{word-spacing:-2.304000px;}
.ws2_c00223{word-spacing:-0.840000px;}
.ws10_c00223{word-spacing:-0.720000px;}
.wse_c00223{word-spacing:-0.576000px;}
.ws1_c00223{word-spacing:0.000000px;}
.ws7_c00223{word-spacing:1.800000px;}
.wsc_c00223{word-spacing:3.744000px;}
.ws3_c00223{word-spacing:5.760000px;}
.ws9_c00223{word-spacing:5.904000px;}
.ws4_c00223{word-spacing:9.648000px;}
.wsb_c00223{word-spacing:11.448000px;}
.wsd_c00223{word-spacing:12.240000px;}
.wsa_c00223{word-spacing:19.152000px;}
._0_c00223{margin-left:-480.336600px;}
._4_c00223{margin-left:-7.920000px;}
._3_c00223{margin-left:-5.932800px;}
._1_c00223{margin-left:-4.200000px;}
._2_c00223{margin-left:-1.440000px;}
.fc2_c00223{color:rgb(32,32,32);}
.fc1_c00223{color:rgb(232,86,17);}
.fc0_c00223{color:rgb(60,60,59);}
.fs1_c00223{font-size:42.000000px;}
.fs0_c00223{font-size:60.000000px;}
.fs3_c00223{font-size:72.000000px;}
.fs2_c00223{font-size:84.000000px;}
.y0_c00223{bottom:0.000000px;}
.y1_c00223{bottom:41.250000px;}
.y14_c00223{bottom:256.298700px;}
.y13_c00223{bottom:286.304700px;}
.y12_c00223{bottom:316.310700px;}
.y11_c00223{bottom:346.316700px;}
.y10_c00223{bottom:376.322700px;}
.yf_c00223{bottom:406.328700px;}
.ye_c00223{bottom:436.334700px;}
.yd_c00223{bottom:496.334700px;}
.yc_c00223{bottom:586.322700px;}
.yb_c00223{bottom:616.328700px;}
.ya_c00223{bottom:646.334700px;}
.y9_c00223{bottom:706.334700px;}
.y8_c00223{bottom:796.304700px;}
.y7_c00223{bottom:826.310700px;}
.y6_c00223{bottom:856.316700px;}
.y5_c00223{bottom:886.322700px;}
.y4_c00223{bottom:916.328700px;}
.y3_c00223{bottom:946.334700px;}
.y2_c00223{bottom:1006.334700px;}
.h2_c00223{height:54.000000px;}
.h4_c00223{height:64.800000px;}
.h3_c00223{height:78.540000px;}
.h0_c00223{height:1262.835000px;}
.h1_c00223{height:1263.000000px;}
.w0_c00223{width:892.914000px;}
.w1_c00223{width:893.250000px;}
.x0_c00223{left:0.000000px;}
.x2_c00223{left:90.000000px;}
.x3_c00223{left:106.500000px;}
.x1_c00223{left:787.013700px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls1_c00223{letter-spacing:0.000000pt;}
.ls0_c00223{letter-spacing:0.640000pt;}
.ls2_c00223{letter-spacing:0.746667pt;}
.ws0_c00223{word-spacing:-9.066667pt;}
.ws8_c00223{word-spacing:-5.056000pt;}
.wsf_c00223{word-spacing:-3.072000pt;}
.ws6_c00223{word-spacing:-2.304000pt;}
.ws5_c00223{word-spacing:-2.048000pt;}
.ws2_c00223{word-spacing:-0.746667pt;}
.ws10_c00223{word-spacing:-0.640000pt;}
.wse_c00223{word-spacing:-0.512000pt;}
.ws1_c00223{word-spacing:0.000000pt;}
.ws7_c00223{word-spacing:1.600000pt;}
.wsc_c00223{word-spacing:3.328000pt;}
.ws3_c00223{word-spacing:5.120000pt;}
.ws9_c00223{word-spacing:5.248000pt;}
.ws4_c00223{word-spacing:8.576000pt;}
.wsb_c00223{word-spacing:10.176000pt;}
.wsd_c00223{word-spacing:10.880000pt;}
.wsa_c00223{word-spacing:17.024000pt;}
._0_c00223{margin-left:-426.965867pt;}
._4_c00223{margin-left:-7.040000pt;}
._3_c00223{margin-left:-5.273600pt;}
._1_c00223{margin-left:-3.733333pt;}
._2_c00223{margin-left:-1.280000pt;}
.fs1_c00223{font-size:37.333333pt;}
.fs0_c00223{font-size:53.333333pt;}
.fs3_c00223{font-size:64.000000pt;}
.fs2_c00223{font-size:74.666667pt;}
.y0_c00223{bottom:0.000000pt;}
.y1_c00223{bottom:36.666667pt;}
.y14_c00223{bottom:227.821067pt;}
.y13_c00223{bottom:254.493067pt;}
.y12_c00223{bottom:281.165067pt;}
.y11_c00223{bottom:307.837067pt;}
.y10_c00223{bottom:334.509067pt;}
.yf_c00223{bottom:361.181067pt;}
.ye_c00223{bottom:387.853067pt;}
.yd_c00223{bottom:441.186400pt;}
.yc_c00223{bottom:521.175733pt;}
.yb_c00223{bottom:547.847733pt;}
.ya_c00223{bottom:574.519733pt;}
.y9_c00223{bottom:627.853067pt;}
.y8_c00223{bottom:707.826400pt;}
.y7_c00223{bottom:734.498400pt;}
.y6_c00223{bottom:761.170400pt;}
.y5_c00223{bottom:787.842400pt;}
.y4_c00223{bottom:814.514400pt;}
.y3_c00223{bottom:841.186400pt;}
.y2_c00223{bottom:894.519733pt;}
.h2_c00223{height:48.000000pt;}
.h4_c00223{height:57.600000pt;}
.h3_c00223{height:69.813333pt;}
.h0_c00223{height:1122.520000pt;}
.h1_c00223{height:1122.666667pt;}
.w0_c00223{width:793.701333pt;}
.w1_c00223{width:794.000000pt;}
.x0_c00223{left:0.000000pt;}
.x2_c00223{left:80.000000pt;}
.x3_c00223{left:94.666667pt;}
.x1_c00223{left:699.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a378ba6f218df5456748c66d.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.160000;font-style:normal;font-weight:normal;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_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00224;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.161000;font-style: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);}
.m1_c00224{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls5_c00224{letter-spacing:-0.324000px;}
.ls4_c00224{letter-spacing:0.000000px;}
.ls0_c00224{letter-spacing:0.720000px;}
.ls1_c00224{letter-spacing:0.840000px;}
.ls3_c00224{letter-spacing:1.500000px;}
.ls2_c00224{letter-spacing:1.650000px;}
.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:-21.276000px;}
.ws2_c00224{word-spacing:-14.850000px;}
.ws3_c00224{word-spacing:-11.700000px;}
.ws0_c00224{word-spacing:-10.200000px;}
.ws12_c00224{word-spacing:-1.500000px;}
.ws8_c00224{word-spacing:-1.008000px;}
.ws5_c00224{word-spacing:-0.840000px;}
.wsf_c00224{word-spacing:-0.720000px;}
.ws11_c00224{word-spacing:-0.648000px;}
.ws9_c00224{word-spacing:-0.360000px;}
.ws4_c00224{word-spacing:0.000000px;}
.wsc_c00224{word-spacing:0.576000px;}
.wse_c00224{word-spacing:1.080000px;}
.ws6_c00224{word-spacing:4.320000px;}
.wsd_c00224{word-spacing:4.680000px;}
.ws10_c00224{word-spacing:6.336000px;}
.wsb_c00224{word-spacing:10.008000px;}
.ws7_c00224{word-spacing:10.512000px;}
.wsa_c00224{word-spacing:17.424000px;}
._0_c00224{margin-left:-480.336000px;}
._4_c00224{margin-left:-5.760000px;}
._1_c00224{margin-left:-4.200000px;}
._3_c00224{margin-left:-3.034800px;}
._2_c00224{margin-left:-1.134000px;}
.fc3_c00224{color:rgb(32,32,32);}
.fc2_c00224{color:rgb(233,83,14);}
.fc1_c00224{color:rgb(232,86,17);}
.fc4_c00224{color:rgb(157,157,156);}
.fc0_c00224{color:rgb(60,60,59);}
.fs1_c00224{font-size:42.000000px;}
.fs0_c00224{font-size:60.000000px;}
.fs5_c00224{font-size:66.000000px;}
.fs4_c00224{font-size:72.000000px;}
.fs3_c00224{font-size:84.000000px;}
.fs2_c00224{font-size:108.000000px;}
.y0_c00224{bottom:0.000000px;}
.y1_c00224{bottom:41.250000px;}
.y12_c00224{bottom:346.322700px;}
.y11_c00224{bottom:376.328700px;}
.y10_c00224{bottom:406.334700px;}
.yf_c00224{bottom:466.334700px;}
.ye_c00224{bottom:556.274700px;}
.yd_c00224{bottom:586.280700px;}
.yc_c00224{bottom:616.286700px;}
.yb_c00224{bottom:646.292700px;}
.y1a_c00224{bottom:646.334700px;}
.ya_c00224{bottom:676.298700px;}
.y19_c00224{bottom:676.334700px;}
.y9_c00224{bottom:706.304700px;}
.y18_c00224{bottom:706.334700px;}
.y8_c00224{bottom:736.310700px;}
.y17_c00224{bottom:736.334700px;}
.y7_c00224{bottom:766.316700px;}
.y16_c00224{bottom:766.334700px;}
.y6_c00224{bottom:796.322700px;}
.y15_c00224{bottom:796.334700px;}
.y5_c00224{bottom:826.328700px;}
.y14_c00224{bottom:826.334700px;}
.y4_c00224{bottom:856.334700px;}
.y13_c00224{bottom:857.010900px;}
.y3_c00224{bottom:916.334700px;}
.y2_c00224{bottom:1006.334700px;}
.h6_c00224{height:50.292000px;}
.h2_c00224{height:54.000000px;}
.h5_c00224{height:64.800000px;}
.h4_c00224{height:78.540000px;}
.h3_c00224{height:100.980000px;}
.h0_c00224{height:1262.835000px;}
.h1_c00224{height:1263.000000px;}
.w0_c00224{width:892.914000px;}
.w1_c00224{width:893.250000px;}
.x0_c00224{left:0.000000px;}
.x2_c00224{left:82.500000px;}
.x3_c00224{left:90.000000px;}
.x4_c00224{left:106.500000px;}
.x5_c00224{left:675.611100px;}
.x1_c00224{left:788.063550px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls5_c00224{letter-spacing:-0.288000pt;}
.ls4_c00224{letter-spacing:0.000000pt;}
.ls0_c00224{letter-spacing:0.640000pt;}
.ls1_c00224{letter-spacing:0.746667pt;}
.ls3_c00224{letter-spacing:1.333333pt;}
.ls2_c00224{letter-spacing:1.466667pt;}
.ws1_c00224{word-spacing:-18.912000pt;}
.ws2_c00224{word-spacing:-13.200000pt;}
.ws3_c00224{word-spacing:-10.400000pt;}
.ws0_c00224{word-spacing:-9.066667pt;}
.ws12_c00224{word-spacing:-1.333333pt;}
.ws8_c00224{word-spacing:-0.896000pt;}
.ws5_c00224{word-spacing:-0.746667pt;}
.wsf_c00224{word-spacing:-0.640000pt;}
.ws11_c00224{word-spacing:-0.576000pt;}
.ws9_c00224{word-spacing:-0.320000pt;}
.ws4_c00224{word-spacing:0.000000pt;}
.wsc_c00224{word-spacing:0.512000pt;}
.wse_c00224{word-spacing:0.960000pt;}
.ws6_c00224{word-spacing:3.840000pt;}
.wsd_c00224{word-spacing:4.160000pt;}
.ws10_c00224{word-spacing:5.632000pt;}
.wsb_c00224{word-spacing:8.896000pt;}
.ws7_c00224{word-spacing:9.344000pt;}
.wsa_c00224{word-spacing:15.488000pt;}
._0_c00224{margin-left:-426.965333pt;}
._4_c00224{margin-left:-5.120000pt;}
._1_c00224{margin-left:-3.733333pt;}
._3_c00224{margin-left:-2.697600pt;}
._2_c00224{margin-left:-1.008000pt;}
.fs1_c00224{font-size:37.333333pt;}
.fs0_c00224{font-size:53.333333pt;}
.fs5_c00224{font-size:58.666667pt;}
.fs4_c00224{font-size:64.000000pt;}
.fs3_c00224{font-size:74.666667pt;}
.fs2_c00224{font-size:96.000000pt;}
.y0_c00224{bottom:0.000000pt;}
.y1_c00224{bottom:36.666667pt;}
.y12_c00224{bottom:307.842400pt;}
.y11_c00224{bottom:334.514400pt;}
.y10_c00224{bottom:361.186400pt;}
.yf_c00224{bottom:414.519733pt;}
.ye_c00224{bottom:494.466400pt;}
.yd_c00224{bottom:521.138400pt;}
.yc_c00224{bottom:547.810400pt;}
.yb_c00224{bottom:574.482400pt;}
.y1a_c00224{bottom:574.519733pt;}
.ya_c00224{bottom:601.154400pt;}
.y19_c00224{bottom:601.186400pt;}
.y9_c00224{bottom:627.826400pt;}
.y18_c00224{bottom:627.853067pt;}
.y8_c00224{bottom:654.498400pt;}
.y17_c00224{bottom:654.519733pt;}
.y7_c00224{bottom:681.170400pt;}
.y16_c00224{bottom:681.186400pt;}
.y6_c00224{bottom:707.842400pt;}
.y15_c00224{bottom:707.853067pt;}
.y5_c00224{bottom:734.514400pt;}
.y14_c00224{bottom:734.519733pt;}
.y4_c00224{bottom:761.186400pt;}
.y13_c00224{bottom:761.787467pt;}
.y3_c00224{bottom:814.519733pt;}
.y2_c00224{bottom:894.519733pt;}
.h6_c00224{height:44.704000pt;}
.h2_c00224{height:48.000000pt;}
.h5_c00224{height:57.600000pt;}
.h4_c00224{height:69.813333pt;}
.h3_c00224{height:89.760000pt;}
.h0_c00224{height:1122.520000pt;}
.h1_c00224{height:1122.666667pt;}
.w0_c00224{width:793.701333pt;}
.w1_c00224{width:794.000000pt;}
.x0_c00224{left:0.000000pt;}
.x2_c00224{left:73.333333pt;}
.x3_c00224{left:80.000000pt;}
.x4_c00224{left:94.666667pt;}
.x5_c00224{left:600.543200pt;}
.x1_c00224{left:700.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a378ba6f218df5456748c66d.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.199000;font-style: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);}
.m1_c00225{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls1_c00225{letter-spacing:0.000000px;}
.ls0_c00225{letter-spacing:0.720000px;}
.ls2_c00225{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws5_c00225{word-spacing:-1.872000px;}
.ws7_c00225{word-spacing:-1.656000px;}
.ws2_c00225{word-spacing:-0.840000px;}
.ws9_c00225{word-spacing:-0.792000px;}
.ws1_c00225{word-spacing:0.000000px;}
.ws6_c00225{word-spacing:3.456000px;}
.wsc_c00225{word-spacing:4.032000px;}
.ws8_c00225{word-spacing:6.336000px;}
.ws3_c00225{word-spacing:7.992000px;}
.wsd_c00225{word-spacing:9.072000px;}
.wsb_c00225{word-spacing:9.144000px;}
.ws4_c00225{word-spacing:9.432000px;}
.wsf_c00225{word-spacing:11.376000px;}
.wse_c00225{word-spacing:16.200000px;}
.wsa_c00225{word-spacing:19.080000px;}
._0_c00225{margin-left:-480.336000px;}
._2_c00225{margin-left:-6.667200px;}
._8_c00225{margin-left:-5.371200px;}
._1_c00225{margin-left:-4.200000px;}
._3_c00225{margin-left:-2.181600px;}
._6_c00225{margin-left:-1.123200px;}
._7_c00225{width:1.252800px;}
._4_c00225{width:2.260800px;}
._5_c00225{width:5.637600px;}
.fc2_c00225{color:rgb(32,32,32);}
.fc1_c00225{color:rgb(232,86,17);}
.fc0_c00225{color:rgb(60,60,59);}
.fs1_c00225{font-size:42.000000px;}
.fs0_c00225{font-size:60.000000px;}
.fs3_c00225{font-size:72.000000px;}
.fs2_c00225{font-size:84.000000px;}
.y0_c00225{bottom:0.000000px;}
.y1_c00225{bottom:41.250000px;}
.y14_c00225{bottom:256.298700px;}
.y13_c00225{bottom:286.304700px;}
.y12_c00225{bottom:316.310700px;}
.y11_c00225{bottom:346.316700px;}
.y10_c00225{bottom:376.322700px;}
.yf_c00225{bottom:406.328700px;}
.ye_c00225{bottom:436.334700px;}
.yd_c00225{bottom:496.334700px;}
.yc_c00225{bottom:586.322700px;}
.yb_c00225{bottom:616.328700px;}
.ya_c00225{bottom:646.334700px;}
.y9_c00225{bottom:706.334700px;}
.y8_c00225{bottom:796.304700px;}
.y7_c00225{bottom:826.310700px;}
.y6_c00225{bottom:856.316700px;}
.y5_c00225{bottom:886.322700px;}
.y4_c00225{bottom:916.328700px;}
.y3_c00225{bottom:946.334700px;}
.y2_c00225{bottom:1006.334700px;}
.h2_c00225{height:54.000000px;}
.h4_c00225{height:64.800000px;}
.h3_c00225{height:78.540000px;}
.h0_c00225{height:1262.835000px;}
.h1_c00225{height:1263.000000px;}
.w0_c00225{width:892.914000px;}
.w1_c00225{width:893.250000px;}
.x0_c00225{left:0.000000px;}
.x2_c00225{left:90.000000px;}
.x3_c00225{left:106.500000px;}
.x1_c00225{left:786.938550px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls1_c00225{letter-spacing:0.000000pt;}
.ls0_c00225{letter-spacing:0.640000pt;}
.ls2_c00225{letter-spacing:0.746667pt;}
.ws0_c00225{word-spacing:-9.066667pt;}
.ws5_c00225{word-spacing:-1.664000pt;}
.ws7_c00225{word-spacing:-1.472000pt;}
.ws2_c00225{word-spacing:-0.746667pt;}
.ws9_c00225{word-spacing:-0.704000pt;}
.ws1_c00225{word-spacing:0.000000pt;}
.ws6_c00225{word-spacing:3.072000pt;}
.wsc_c00225{word-spacing:3.584000pt;}
.ws8_c00225{word-spacing:5.632000pt;}
.ws3_c00225{word-spacing:7.104000pt;}
.wsd_c00225{word-spacing:8.064000pt;}
.wsb_c00225{word-spacing:8.128000pt;}
.ws4_c00225{word-spacing:8.384000pt;}
.wsf_c00225{word-spacing:10.112000pt;}
.wse_c00225{word-spacing:14.400000pt;}
.wsa_c00225{word-spacing:16.960000pt;}
._0_c00225{margin-left:-426.965333pt;}
._2_c00225{margin-left:-5.926400pt;}
._8_c00225{margin-left:-4.774400pt;}
._1_c00225{margin-left:-3.733333pt;}
._3_c00225{margin-left:-1.939200pt;}
._6_c00225{margin-left:-0.998400pt;}
._7_c00225{width:1.113600pt;}
._4_c00225{width:2.009600pt;}
._5_c00225{width:5.011200pt;}
.fs1_c00225{font-size:37.333333pt;}
.fs0_c00225{font-size:53.333333pt;}
.fs3_c00225{font-size:64.000000pt;}
.fs2_c00225{font-size:74.666667pt;}
.y0_c00225{bottom:0.000000pt;}
.y1_c00225{bottom:36.666667pt;}
.y14_c00225{bottom:227.821067pt;}
.y13_c00225{bottom:254.493067pt;}
.y12_c00225{bottom:281.165067pt;}
.y11_c00225{bottom:307.837067pt;}
.y10_c00225{bottom:334.509067pt;}
.yf_c00225{bottom:361.181067pt;}
.ye_c00225{bottom:387.853067pt;}
.yd_c00225{bottom:441.186400pt;}
.yc_c00225{bottom:521.175733pt;}
.yb_c00225{bottom:547.847733pt;}
.ya_c00225{bottom:574.519733pt;}
.y9_c00225{bottom:627.853067pt;}
.y8_c00225{bottom:707.826400pt;}
.y7_c00225{bottom:734.498400pt;}
.y6_c00225{bottom:761.170400pt;}
.y5_c00225{bottom:787.842400pt;}
.y4_c00225{bottom:814.514400pt;}
.y3_c00225{bottom:841.186400pt;}
.y2_c00225{bottom:894.519733pt;}
.h2_c00225{height:48.000000pt;}
.h4_c00225{height:57.600000pt;}
.h3_c00225{height:69.813333pt;}
.h0_c00225{height:1122.520000pt;}
.h1_c00225{height:1122.666667pt;}
.w0_c00225{width:793.701333pt;}
.w1_c00225{width:794.000000pt;}
.x0_c00225{left:0.000000pt;}
.x2_c00225{left:80.000000pt;}
.x3_c00225{left:94.666667pt;}
.x1_c00225{left:699.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.160000;font-style:normal;font-weight:normal;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_d071661ec5c75d861a68aa6b.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00226;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;line-height:1.155000;font-style: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);}
.m1_c00226{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls2_c00226{letter-spacing:0.000000px;}
.ls0_c00226{letter-spacing:0.864000px;}
.ls1_c00226{letter-spacing:1.200000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00226{word-spacing:-13.104000px;}
.ws7_c00226{word-spacing:-10.560000px;}
.ws0_c00226{word-spacing:-10.200000px;}
.ws6_c00226{word-spacing:-5.400000px;}
.ws3_c00226{word-spacing:-3.528000px;}
.ws8_c00226{word-spacing:-2.880000px;}
.ws5_c00226{word-spacing:-1.440000px;}
.ws4_c00226{word-spacing:-0.864000px;}
.ws2_c00226{word-spacing:0.000000px;}
._0_c00226{margin-left:-480.336600px;}
._4_c00226{margin-left:-9.000000px;}
._3_c00226{margin-left:-6.480000px;}
._1_c00226{margin-left:-4.200000px;}
._5_c00226{margin-left:-2.760000px;}
._2_c00226{margin-left:-1.440000px;}
._9_c00226{width:2.040000px;}
._7_c00226{width:3.960000px;}
._6_c00226{width:5.400000px;}
._8_c00226{width:9.960000px;}
.fc3_c00226{color:rgb(255,255,255);}
.fc2_c00226{color:rgb(233,83,14);}
.fc1_c00226{color:rgb(232,86,17);}
.fc0_c00226{color:rgb(60,60,59);}
.fs1_c00226{font-size:42.000000px;}
.fs0_c00226{font-size:60.000000px;}
.fs3_c00226{font-size:72.000000px;}
.fs4_c00226{font-size:120.000000px;}
.fs2_c00226{font-size:360.000000px;}
.y0_c00226{bottom:0.000000px;}
.y1_c00226{bottom:41.250000px;}
.y9_c00226{bottom:574.310700px;}
.y8_c00226{bottom:595.316700px;}
.y7_c00226{bottom:616.322700px;}
.y6_c00226{bottom:664.328700px;}
.y5_c00226{bottom:685.334700px;}
.y4_c00226{bottom:706.340700px;}
.y3_c00226{bottom:752.834700px;}
.ye_c00226{bottom:886.334700px;}
.yd_c00226{bottom:916.334700px;}
.yc_c00226{bottom:946.334700px;}
.yb_c00226{bottom:976.334700px;}
.ya_c00226{bottom:1006.334700px;}
.y2_c00226{bottom:1093.526700px;}
.h2_c00226{height:54.000000px;}
.h5_c00226{height:64.800000px;}
.h4_c00226{height:66.456000px;}
.h6_c00226{height:112.200000px;}
.h3_c00226{height:324.000000px;}
.h0_c00226{height:1262.835000px;}
.h1_c00226{height:1263.000000px;}
.w0_c00226{width:892.914000px;}
.w1_c00226{width:893.250000px;}
.x0_c00226{left:0.000000px;}
.x2_c00226{left:81.290250px;}
.x3_c00226{left:82.393650px;}
.x5_c00226{left:112.287450px;}
.x4_c00226{left:127.393650px;}
.x1_c00226{left:789.038700px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls2_c00226{letter-spacing:0.000000pt;}
.ls0_c00226{letter-spacing:0.768000pt;}
.ls1_c00226{letter-spacing:1.066667pt;}
.ws1_c00226{word-spacing:-11.648000pt;}
.ws7_c00226{word-spacing:-9.386667pt;}
.ws0_c00226{word-spacing:-9.066667pt;}
.ws6_c00226{word-spacing:-4.800000pt;}
.ws3_c00226{word-spacing:-3.136000pt;}
.ws8_c00226{word-spacing:-2.560000pt;}
.ws5_c00226{word-spacing:-1.280000pt;}
.ws4_c00226{word-spacing:-0.768000pt;}
.ws2_c00226{word-spacing:0.000000pt;}
._0_c00226{margin-left:-426.965867pt;}
._4_c00226{margin-left:-8.000000pt;}
._3_c00226{margin-left:-5.760000pt;}
._1_c00226{margin-left:-3.733333pt;}
._5_c00226{margin-left:-2.453333pt;}
._2_c00226{margin-left:-1.280000pt;}
._9_c00226{width:1.813333pt;}
._7_c00226{width:3.520000pt;}
._6_c00226{width:4.800000pt;}
._8_c00226{width:8.853333pt;}
.fs1_c00226{font-size:37.333333pt;}
.fs0_c00226{font-size:53.333333pt;}
.fs3_c00226{font-size:64.000000pt;}
.fs4_c00226{font-size:106.666667pt;}
.fs2_c00226{font-size:320.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y1_c00226{bottom:36.666667pt;}
.y9_c00226{bottom:510.498400pt;}
.y8_c00226{bottom:529.170400pt;}
.y7_c00226{bottom:547.842400pt;}
.y6_c00226{bottom:590.514400pt;}
.y5_c00226{bottom:609.186400pt;}
.y4_c00226{bottom:627.858400pt;}
.y3_c00226{bottom:669.186400pt;}
.ye_c00226{bottom:787.853067pt;}
.yd_c00226{bottom:814.519733pt;}
.yc_c00226{bottom:841.186400pt;}
.yb_c00226{bottom:867.853067pt;}
.ya_c00226{bottom:894.519733pt;}
.y2_c00226{bottom:972.023733pt;}
.h2_c00226{height:48.000000pt;}
.h5_c00226{height:57.600000pt;}
.h4_c00226{height:59.072000pt;}
.h6_c00226{height:99.733333pt;}
.h3_c00226{height:288.000000pt;}
.h0_c00226{height:1122.520000pt;}
.h1_c00226{height:1122.666667pt;}
.w0_c00226{width:793.701333pt;}
.w1_c00226{width:794.000000pt;}
.x0_c00226{left:0.000000pt;}
.x2_c00226{left:72.258000pt;}
.x3_c00226{left:73.238800pt;}
.x5_c00226{left:99.811067pt;}
.x4_c00226{left:113.238800pt;}
.x1_c00226{left:701.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00227;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.161000;font-style: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);}
.m1_c00227{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls5_c00227{letter-spacing:-0.540000px;}
.ls4_c00227{letter-spacing:0.000000px;}
.ls0_c00227{letter-spacing:0.720000px;}
.ls1_c00227{letter-spacing:0.840000px;}
.ls3_c00227{letter-spacing:1.500000px;}
.ls2_c00227{letter-spacing:1.650000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00227{word-spacing:-21.060000px;}
.ws2_c00227{word-spacing:-17.640000px;}
.ws0_c00227{word-spacing:-10.200000px;}
.wse_c00227{word-spacing:-4.680000px;}
.ws7_c00227{word-spacing:-3.672000px;}
.wsa_c00227{word-spacing:-1.944000px;}
.wsc_c00227{word-spacing:-1.656000px;}
.ws10_c00227{word-spacing:-1.500000px;}
.ws5_c00227{word-spacing:-1.008000px;}
.ws4_c00227{word-spacing:-0.840000px;}
.wsb_c00227{word-spacing:-0.288000px;}
.ws3_c00227{word-spacing:0.000000px;}
.ws6_c00227{word-spacing:3.384000px;}
.wsf_c00227{word-spacing:5.760000px;}
.ws9_c00227{word-spacing:6.336000px;}
.ws8_c00227{word-spacing:9.144000px;}
.wsd_c00227{word-spacing:16.056000px;}
._0_c00227{margin-left:-480.336600px;}
._3_c00227{margin-left:-6.480000px;}
._1_c00227{margin-left:-4.200000px;}
._4_c00227{margin-left:-2.460000px;}
._2_c00227{margin-left:-1.440000px;}
.fc3_c00227{color:rgb(32,32,32);}
.fc2_c00227{color:rgb(233,83,14);}
.fc1_c00227{color:rgb(232,86,17);}
.fc4_c00227{color:rgb(157,157,156);}
.fc0_c00227{color:rgb(60,60,59);}
.fs1_c00227{font-size:42.000000px;}
.fs0_c00227{font-size:60.000000px;}
.fs5_c00227{font-size:66.000000px;}
.fs4_c00227{font-size:72.000000px;}
.fs3_c00227{font-size:84.000000px;}
.fs2_c00227{font-size:108.000000px;}
.y0_c00227{bottom:0.000000px;}
.y1_c00227{bottom:41.250000px;}
.y13_c00227{bottom:226.298700px;}
.y12_c00227{bottom:256.304700px;}
.y11_c00227{bottom:286.310700px;}
.y10_c00227{bottom:316.316700px;}
.yf_c00227{bottom:346.322700px;}
.ye_c00227{bottom:376.328700px;}
.yd_c00227{bottom:406.334700px;}
.yc_c00227{bottom:466.334700px;}
.yb_c00227{bottom:556.322700px;}
.ya_c00227{bottom:586.328700px;}
.y9_c00227{bottom:616.334700px;}
.y8_c00227{bottom:676.334700px;}
.y7_c00227{bottom:766.316700px;}
.y17_c00227{bottom:766.334700px;}
.y6_c00227{bottom:796.322700px;}
.y16_c00227{bottom:796.334700px;}
.y5_c00227{bottom:826.328700px;}
.y15_c00227{bottom:826.334700px;}
.y4_c00227{bottom:856.334700px;}
.y14_c00227{bottom:857.010900px;}
.y3_c00227{bottom:916.334700px;}
.y2_c00227{bottom:1006.334700px;}
.h6_c00227{height:50.292000px;}
.h2_c00227{height:54.000000px;}
.h5_c00227{height:64.800000px;}
.h4_c00227{height:78.540000px;}
.h3_c00227{height:100.980000px;}
.h0_c00227{height:1262.835000px;}
.h1_c00227{height:1263.000000px;}
.w0_c00227{width:892.914000px;}
.w1_c00227{width:893.250000px;}
.x0_c00227{left:0.000000px;}
.x2_c00227{left:82.500000px;}
.x3_c00227{left:90.000000px;}
.x4_c00227{left:106.500000px;}
.x5_c00227{left:675.611100px;}
.x1_c00227{left:787.013700px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls5_c00227{letter-spacing:-0.480000pt;}
.ls4_c00227{letter-spacing:0.000000pt;}
.ls0_c00227{letter-spacing:0.640000pt;}
.ls1_c00227{letter-spacing:0.746667pt;}
.ls3_c00227{letter-spacing:1.333333pt;}
.ls2_c00227{letter-spacing:1.466667pt;}
.ws1_c00227{word-spacing:-18.720000pt;}
.ws2_c00227{word-spacing:-15.680000pt;}
.ws0_c00227{word-spacing:-9.066667pt;}
.wse_c00227{word-spacing:-4.160000pt;}
.ws7_c00227{word-spacing:-3.264000pt;}
.wsa_c00227{word-spacing:-1.728000pt;}
.wsc_c00227{word-spacing:-1.472000pt;}
.ws10_c00227{word-spacing:-1.333333pt;}
.ws5_c00227{word-spacing:-0.896000pt;}
.ws4_c00227{word-spacing:-0.746667pt;}
.wsb_c00227{word-spacing:-0.256000pt;}
.ws3_c00227{word-spacing:0.000000pt;}
.ws6_c00227{word-spacing:3.008000pt;}
.wsf_c00227{word-spacing:5.120000pt;}
.ws9_c00227{word-spacing:5.632000pt;}
.ws8_c00227{word-spacing:8.128000pt;}
.wsd_c00227{word-spacing:14.272000pt;}
._0_c00227{margin-left:-426.965867pt;}
._3_c00227{margin-left:-5.760000pt;}
._1_c00227{margin-left:-3.733333pt;}
._4_c00227{margin-left:-2.186667pt;}
._2_c00227{margin-left:-1.280000pt;}
.fs1_c00227{font-size:37.333333pt;}
.fs0_c00227{font-size:53.333333pt;}
.fs5_c00227{font-size:58.666667pt;}
.fs4_c00227{font-size:64.000000pt;}
.fs3_c00227{font-size:74.666667pt;}
.fs2_c00227{font-size:96.000000pt;}
.y0_c00227{bottom:0.000000pt;}
.y1_c00227{bottom:36.666667pt;}
.y13_c00227{bottom:201.154400pt;}
.y12_c00227{bottom:227.826400pt;}
.y11_c00227{bottom:254.498400pt;}
.y10_c00227{bottom:281.170400pt;}
.yf_c00227{bottom:307.842400pt;}
.ye_c00227{bottom:334.514400pt;}
.yd_c00227{bottom:361.186400pt;}
.yc_c00227{bottom:414.519733pt;}
.yb_c00227{bottom:494.509067pt;}
.ya_c00227{bottom:521.181067pt;}
.y9_c00227{bottom:547.853067pt;}
.y8_c00227{bottom:601.186400pt;}
.y7_c00227{bottom:681.170400pt;}
.y17_c00227{bottom:681.186400pt;}
.y6_c00227{bottom:707.842400pt;}
.y16_c00227{bottom:707.853067pt;}
.y5_c00227{bottom:734.514400pt;}
.y15_c00227{bottom:734.519733pt;}
.y4_c00227{bottom:761.186400pt;}
.y14_c00227{bottom:761.787467pt;}
.y3_c00227{bottom:814.519733pt;}
.y2_c00227{bottom:894.519733pt;}
.h6_c00227{height:44.704000pt;}
.h2_c00227{height:48.000000pt;}
.h5_c00227{height:57.600000pt;}
.h4_c00227{height:69.813333pt;}
.h3_c00227{height:89.760000pt;}
.h0_c00227{height:1122.520000pt;}
.h1_c00227{height:1122.666667pt;}
.w0_c00227{width:793.701333pt;}
.w1_c00227{width:794.000000pt;}
.x0_c00227{left:0.000000pt;}
.x2_c00227{left:73.333333pt;}
.x3_c00227{left:80.000000pt;}
.x4_c00227{left:94.666667pt;}
.x5_c00227{left:600.543200pt;}
.x1_c00227{left:699.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.160000;font-style:normal;font-weight:normal;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_e12e76fc6151d647455519d2.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.199000;font-style: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);}
.m1_c00228{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls2_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:0.720000px;}
.ls1_c00228{letter-spacing:0.840000px;}
.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;}
}
.ws1_c00228{word-spacing:-17.640000px;}
.ws0_c00228{word-spacing:-10.200000px;}
.ws7_c00228{word-spacing:-1.512000px;}
.ws10_c00228{word-spacing:-1.152000px;}
.wsf_c00228{word-spacing:-0.936000px;}
.wsb_c00228{word-spacing:-0.864000px;}
.ws3_c00228{word-spacing:-0.840000px;}
.wse_c00228{word-spacing:-0.576000px;}
.ws8_c00228{word-spacing:-0.288000px;}
.ws2_c00228{word-spacing:0.000000px;}
.wsd_c00228{word-spacing:1.656000px;}
.wsa_c00228{word-spacing:2.088000px;}
.ws5_c00228{word-spacing:3.888000px;}
.ws6_c00228{word-spacing:5.544000px;}
.wsc_c00228{word-spacing:7.416000px;}
.ws9_c00228{word-spacing:8.208000px;}
.ws4_c00228{word-spacing:14.904000px;}
.ws11_c00228{word-spacing:16.344000px;}
.ws12_c00228{word-spacing:38.448000px;}
._0_c00228{margin-left:-480.336000px;}
._3_c00228{margin-left:-6.480000px;}
._1_c00228{margin-left:-4.200000px;}
._2_c00228{margin-left:-1.440000px;}
.fc2_c00228{color:rgb(32,32,32);}
.fc1_c00228{color:rgb(232,86,17);}
.fc0_c00228{color:rgb(60,60,59);}
.fs1_c00228{font-size:42.000000px;}
.fs0_c00228{font-size:60.000000px;}
.fs3_c00228{font-size:72.000000px;}
.fs2_c00228{font-size:84.000000px;}
.y0_c00228{bottom:0.000000px;}
.y1_c00228{bottom:41.250000px;}
.y16_c00228{bottom:196.328700px;}
.y15_c00228{bottom:226.334700px;}
.y14_c00228{bottom:286.334700px;}
.y13_c00228{bottom:376.310700px;}
.y12_c00228{bottom:406.316700px;}
.y11_c00228{bottom:436.322700px;}
.y10_c00228{bottom:466.328700px;}
.yf_c00228{bottom:496.334700px;}
.ye_c00228{bottom:556.334700px;}
.yd_c00228{bottom:646.274700px;}
.yc_c00228{bottom:676.280700px;}
.yb_c00228{bottom:706.286700px;}
.ya_c00228{bottom:736.292700px;}
.y9_c00228{bottom:766.298700px;}
.y8_c00228{bottom:796.304700px;}
.y7_c00228{bottom:826.310700px;}
.y6_c00228{bottom:856.316700px;}
.y5_c00228{bottom:886.322700px;}
.y4_c00228{bottom:916.328700px;}
.y3_c00228{bottom:946.334700px;}
.y2_c00228{bottom:1006.334700px;}
.h2_c00228{height:54.000000px;}
.h4_c00228{height:64.800000px;}
.h3_c00228{height:78.540000px;}
.h0_c00228{height:1262.835000px;}
.h1_c00228{height:1263.000000px;}
.w0_c00228{width:892.914000px;}
.w1_c00228{width:893.250000px;}
.x0_c00228{left:0.000000px;}
.x2_c00228{left:90.000000px;}
.x3_c00228{left:106.500000px;}
.x1_c00228{left:786.938550px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls2_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:0.640000pt;}
.ls1_c00228{letter-spacing:0.746667pt;}
.ws1_c00228{word-spacing:-15.680000pt;}
.ws0_c00228{word-spacing:-9.066667pt;}
.ws7_c00228{word-spacing:-1.344000pt;}
.ws10_c00228{word-spacing:-1.024000pt;}
.wsf_c00228{word-spacing:-0.832000pt;}
.wsb_c00228{word-spacing:-0.768000pt;}
.ws3_c00228{word-spacing:-0.746667pt;}
.wse_c00228{word-spacing:-0.512000pt;}
.ws8_c00228{word-spacing:-0.256000pt;}
.ws2_c00228{word-spacing:0.000000pt;}
.wsd_c00228{word-spacing:1.472000pt;}
.wsa_c00228{word-spacing:1.856000pt;}
.ws5_c00228{word-spacing:3.456000pt;}
.ws6_c00228{word-spacing:4.928000pt;}
.wsc_c00228{word-spacing:6.592000pt;}
.ws9_c00228{word-spacing:7.296000pt;}
.ws4_c00228{word-spacing:13.248000pt;}
.ws11_c00228{word-spacing:14.528000pt;}
.ws12_c00228{word-spacing:34.176000pt;}
._0_c00228{margin-left:-426.965333pt;}
._3_c00228{margin-left:-5.760000pt;}
._1_c00228{margin-left:-3.733333pt;}
._2_c00228{margin-left:-1.280000pt;}
.fs1_c00228{font-size:37.333333pt;}
.fs0_c00228{font-size:53.333333pt;}
.fs3_c00228{font-size:64.000000pt;}
.fs2_c00228{font-size:74.666667pt;}
.y0_c00228{bottom:0.000000pt;}
.y1_c00228{bottom:36.666667pt;}
.y16_c00228{bottom:174.514400pt;}
.y15_c00228{bottom:201.186400pt;}
.y14_c00228{bottom:254.519733pt;}
.y13_c00228{bottom:334.498400pt;}
.y12_c00228{bottom:361.170400pt;}
.y11_c00228{bottom:387.842400pt;}
.y10_c00228{bottom:414.514400pt;}
.yf_c00228{bottom:441.186400pt;}
.ye_c00228{bottom:494.519733pt;}
.yd_c00228{bottom:574.466400pt;}
.yc_c00228{bottom:601.138400pt;}
.yb_c00228{bottom:627.810400pt;}
.ya_c00228{bottom:654.482400pt;}
.y9_c00228{bottom:681.154400pt;}
.y8_c00228{bottom:707.826400pt;}
.y7_c00228{bottom:734.498400pt;}
.y6_c00228{bottom:761.170400pt;}
.y5_c00228{bottom:787.842400pt;}
.y4_c00228{bottom:814.514400pt;}
.y3_c00228{bottom:841.186400pt;}
.y2_c00228{bottom:894.519733pt;}
.h2_c00228{height:48.000000pt;}
.h4_c00228{height:57.600000pt;}
.h3_c00228{height:69.813333pt;}
.h0_c00228{height:1122.520000pt;}
.h1_c00228{height:1122.666667pt;}
.w0_c00228{width:793.701333pt;}
.w1_c00228{width:794.000000pt;}
.x0_c00228{left:0.000000pt;}
.x2_c00228{left:80.000000pt;}
.x3_c00228{left:94.666667pt;}
.x1_c00228{left:699.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_687f4f7c0414ae5fc6b8f254.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00229;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.161000;font-style: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);}
.m1_c00229{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls5_c00229{letter-spacing:-0.324000px;}
.ls4_c00229{letter-spacing:0.000000px;}
.ls0_c00229{letter-spacing:0.720000px;}
.ls1_c00229{letter-spacing:0.840000px;}
.ls3_c00229{letter-spacing:1.500000px;}
.ls2_c00229{letter-spacing:1.650000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00229{word-spacing:-21.276000px;}
.ws2_c00229{word-spacing:-17.640000px;}
.ws4_c00229{word-spacing:-14.850000px;}
.ws3_c00229{word-spacing:-12.960000px;}
.ws5_c00229{word-spacing:-11.700000px;}
.ws0_c00229{word-spacing:-10.200000px;}
.ws13_c00229{word-spacing:-1.500000px;}
.ws7_c00229{word-spacing:-0.840000px;}
.ws12_c00229{word-spacing:-0.432000px;}
.ws6_c00229{word-spacing:0.000000px;}
.wsa_c00229{word-spacing:4.320000px;}
.wsc_c00229{word-spacing:5.328000px;}
.ws9_c00229{word-spacing:6.048000px;}
.wsb_c00229{word-spacing:9.216000px;}
.ws8_c00229{word-spacing:9.648000px;}
.wse_c00229{word-spacing:13.032000px;}
.ws10_c00229{word-spacing:13.752000px;}
.ws11_c00229{word-spacing:14.688000px;}
.wsd_c00229{word-spacing:15.264000px;}
.wsf_c00229{word-spacing:16.056000px;}
._0_c00229{margin-left:-480.337200px;}
._4_c00229{margin-left:-5.878800px;}
._1_c00229{margin-left:-4.200000px;}
._3_c00229{margin-left:-2.340000px;}
._2_c00229{margin-left:-1.134000px;}
.fc3_c00229{color:rgb(32,32,32);}
.fc2_c00229{color:rgb(233,83,14);}
.fc1_c00229{color:rgb(232,86,17);}
.fc4_c00229{color:rgb(157,157,156);}
.fc0_c00229{color:rgb(60,60,59);}
.fs1_c00229{font-size:42.000000px;}
.fs0_c00229{font-size:60.000000px;}
.fs5_c00229{font-size:66.000000px;}
.fs4_c00229{font-size:72.000000px;}
.fs3_c00229{font-size:84.000000px;}
.fs2_c00229{font-size:108.000000px;}
.y0_c00229{bottom:0.000000px;}
.y1_c00229{bottom:41.250000px;}
.y13_c00229{bottom:226.298700px;}
.y12_c00229{bottom:256.304700px;}
.y11_c00229{bottom:286.310700px;}
.y10_c00229{bottom:316.316700px;}
.yf_c00229{bottom:346.322700px;}
.ye_c00229{bottom:376.328700px;}
.yd_c00229{bottom:406.334700px;}
.yc_c00229{bottom:466.334700px;}
.yb_c00229{bottom:556.322700px;}
.ya_c00229{bottom:586.328700px;}
.y9_c00229{bottom:616.334700px;}
.y8_c00229{bottom:676.334700px;}
.y18_c00229{bottom:736.334700px;}
.y7_c00229{bottom:766.316700px;}
.y17_c00229{bottom:766.334700px;}
.y6_c00229{bottom:796.322700px;}
.y16_c00229{bottom:796.334700px;}
.y5_c00229{bottom:826.328700px;}
.y15_c00229{bottom:826.334700px;}
.y4_c00229{bottom:856.334700px;}
.y14_c00229{bottom:857.010900px;}
.y3_c00229{bottom:916.334700px;}
.y2_c00229{bottom:1006.334700px;}
.h6_c00229{height:50.292000px;}
.h2_c00229{height:54.000000px;}
.h5_c00229{height:64.800000px;}
.h4_c00229{height:78.540000px;}
.h3_c00229{height:100.980000px;}
.h0_c00229{height:1262.835000px;}
.h1_c00229{height:1263.000000px;}
.w0_c00229{width:892.914000px;}
.w1_c00229{width:893.250000px;}
.x0_c00229{left:0.000000px;}
.x2_c00229{left:82.500000px;}
.x3_c00229{left:90.000000px;}
.x4_c00229{left:106.500000px;}
.x5_c00229{left:675.611100px;}
.x1_c00229{left:786.803850px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls5_c00229{letter-spacing:-0.288000pt;}
.ls4_c00229{letter-spacing:0.000000pt;}
.ls0_c00229{letter-spacing:0.640000pt;}
.ls1_c00229{letter-spacing:0.746667pt;}
.ls3_c00229{letter-spacing:1.333333pt;}
.ls2_c00229{letter-spacing:1.466667pt;}
.ws1_c00229{word-spacing:-18.912000pt;}
.ws2_c00229{word-spacing:-15.680000pt;}
.ws4_c00229{word-spacing:-13.200000pt;}
.ws3_c00229{word-spacing:-11.520000pt;}
.ws5_c00229{word-spacing:-10.400000pt;}
.ws0_c00229{word-spacing:-9.066667pt;}
.ws13_c00229{word-spacing:-1.333333pt;}
.ws7_c00229{word-spacing:-0.746667pt;}
.ws12_c00229{word-spacing:-0.384000pt;}
.ws6_c00229{word-spacing:0.000000pt;}
.wsa_c00229{word-spacing:3.840000pt;}
.wsc_c00229{word-spacing:4.736000pt;}
.ws9_c00229{word-spacing:5.376000pt;}
.wsb_c00229{word-spacing:8.192000pt;}
.ws8_c00229{word-spacing:8.576000pt;}
.wse_c00229{word-spacing:11.584000pt;}
.ws10_c00229{word-spacing:12.224000pt;}
.ws11_c00229{word-spacing:13.056000pt;}
.wsd_c00229{word-spacing:13.568000pt;}
.wsf_c00229{word-spacing:14.272000pt;}
._0_c00229{margin-left:-426.966400pt;}
._4_c00229{margin-left:-5.225600pt;}
._1_c00229{margin-left:-3.733333pt;}
._3_c00229{margin-left:-2.080000pt;}
._2_c00229{margin-left:-1.008000pt;}
.fs1_c00229{font-size:37.333333pt;}
.fs0_c00229{font-size:53.333333pt;}
.fs5_c00229{font-size:58.666667pt;}
.fs4_c00229{font-size:64.000000pt;}
.fs3_c00229{font-size:74.666667pt;}
.fs2_c00229{font-size:96.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y1_c00229{bottom:36.666667pt;}
.y13_c00229{bottom:201.154400pt;}
.y12_c00229{bottom:227.826400pt;}
.y11_c00229{bottom:254.498400pt;}
.y10_c00229{bottom:281.170400pt;}
.yf_c00229{bottom:307.842400pt;}
.ye_c00229{bottom:334.514400pt;}
.yd_c00229{bottom:361.186400pt;}
.yc_c00229{bottom:414.519733pt;}
.yb_c00229{bottom:494.509067pt;}
.ya_c00229{bottom:521.181067pt;}
.y9_c00229{bottom:547.853067pt;}
.y8_c00229{bottom:601.186400pt;}
.y18_c00229{bottom:654.519733pt;}
.y7_c00229{bottom:681.170400pt;}
.y17_c00229{bottom:681.186400pt;}
.y6_c00229{bottom:707.842400pt;}
.y16_c00229{bottom:707.853067pt;}
.y5_c00229{bottom:734.514400pt;}
.y15_c00229{bottom:734.519733pt;}
.y4_c00229{bottom:761.186400pt;}
.y14_c00229{bottom:761.787467pt;}
.y3_c00229{bottom:814.519733pt;}
.y2_c00229{bottom:894.519733pt;}
.h6_c00229{height:44.704000pt;}
.h2_c00229{height:48.000000pt;}
.h5_c00229{height:57.600000pt;}
.h4_c00229{height:69.813333pt;}
.h3_c00229{height:89.760000pt;}
.h0_c00229{height:1122.520000pt;}
.h1_c00229{height:1122.666667pt;}
.w0_c00229{width:793.701333pt;}
.w1_c00229{width:794.000000pt;}
.x0_c00229{left:0.000000pt;}
.x2_c00229{left:73.333333pt;}
.x3_c00229{left:80.000000pt;}
.x4_c00229{left:94.666667pt;}
.x5_c00229{left:600.543200pt;}
.x1_c00229{left:699.381200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d27c0a327cee97d787e3e2f6.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.199000;font-style: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);}
.m1_c00230{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls2_c00230{letter-spacing:0.000000px;}
.ls0_c00230{letter-spacing:0.720000px;}
.ls1_c00230{letter-spacing:0.840000px;}
.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;}
}
.ws1_c00230{word-spacing:-17.640000px;}
.ws0_c00230{word-spacing:-10.200000px;}
.ws3_c00230{word-spacing:-0.840000px;}
.wsc_c00230{word-spacing:-0.720000px;}
.ws10_c00230{word-spacing:-0.576000px;}
.wsb_c00230{word-spacing:-0.288000px;}
.ws2_c00230{word-spacing:0.000000px;}
.ws4_c00230{word-spacing:0.360000px;}
.wse_c00230{word-spacing:1.224000px;}
.ws6_c00230{word-spacing:2.304000px;}
.ws7_c00230{word-spacing:3.600000px;}
.ws9_c00230{word-spacing:4.032000px;}
.wsd_c00230{word-spacing:4.248000px;}
.ws5_c00230{word-spacing:9.000000px;}
.ws8_c00230{word-spacing:9.720000px;}
.wsf_c00230{word-spacing:10.008000px;}
.wsa_c00230{word-spacing:29.664000px;}
.ws11_c00230{word-spacing:38.448000px;}
._0_c00230{margin-left:-480.337800px;}
._4_c00230{margin-left:-7.149600px;}
._3_c00230{margin-left:-5.724000px;}
._1_c00230{margin-left:-4.200000px;}
._2_c00230{margin-left:-2.232000px;}
.fc2_c00230{color:rgb(32,32,32);}
.fc1_c00230{color:rgb(232,86,17);}
.fc0_c00230{color:rgb(60,60,59);}
.fs1_c00230{font-size:42.000000px;}
.fs0_c00230{font-size:60.000000px;}
.fs3_c00230{font-size:72.000000px;}
.fs2_c00230{font-size:84.000000px;}
.y0_c00230{bottom:0.000000px;}
.y1_c00230{bottom:41.250000px;}
.y15_c00230{bottom:226.328700px;}
.y14_c00230{bottom:256.334700px;}
.y13_c00230{bottom:316.334700px;}
.y12_c00230{bottom:406.310700px;}
.y11_c00230{bottom:436.316700px;}
.y10_c00230{bottom:466.322700px;}
.yf_c00230{bottom:496.328700px;}
.ye_c00230{bottom:526.334700px;}
.yd_c00230{bottom:586.334700px;}
.yc_c00230{bottom:676.280700px;}
.yb_c00230{bottom:706.286700px;}
.ya_c00230{bottom:736.292700px;}
.y9_c00230{bottom:766.298700px;}
.y8_c00230{bottom:796.304700px;}
.y7_c00230{bottom:826.310700px;}
.y6_c00230{bottom:856.316700px;}
.y5_c00230{bottom:886.322700px;}
.y4_c00230{bottom:916.328700px;}
.y3_c00230{bottom:946.334700px;}
.y2_c00230{bottom:1006.334700px;}
.h2_c00230{height:54.000000px;}
.h4_c00230{height:64.800000px;}
.h3_c00230{height:78.540000px;}
.h0_c00230{height:1262.835000px;}
.h1_c00230{height:1263.000000px;}
.w0_c00230{width:892.914000px;}
.w1_c00230{width:893.250000px;}
.x0_c00230{left:0.000000px;}
.x2_c00230{left:90.000000px;}
.x3_c00230{left:106.500000px;}
.x1_c00230{left:790.464000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls2_c00230{letter-spacing:0.000000pt;}
.ls0_c00230{letter-spacing:0.640000pt;}
.ls1_c00230{letter-spacing:0.746667pt;}
.ws1_c00230{word-spacing:-15.680000pt;}
.ws0_c00230{word-spacing:-9.066667pt;}
.ws3_c00230{word-spacing:-0.746667pt;}
.wsc_c00230{word-spacing:-0.640000pt;}
.ws10_c00230{word-spacing:-0.512000pt;}
.wsb_c00230{word-spacing:-0.256000pt;}
.ws2_c00230{word-spacing:0.000000pt;}
.ws4_c00230{word-spacing:0.320000pt;}
.wse_c00230{word-spacing:1.088000pt;}
.ws6_c00230{word-spacing:2.048000pt;}
.ws7_c00230{word-spacing:3.200000pt;}
.ws9_c00230{word-spacing:3.584000pt;}
.wsd_c00230{word-spacing:3.776000pt;}
.ws5_c00230{word-spacing:8.000000pt;}
.ws8_c00230{word-spacing:8.640000pt;}
.wsf_c00230{word-spacing:8.896000pt;}
.wsa_c00230{word-spacing:26.368000pt;}
.ws11_c00230{word-spacing:34.176000pt;}
._0_c00230{margin-left:-426.966933pt;}
._4_c00230{margin-left:-6.355200pt;}
._3_c00230{margin-left:-5.088000pt;}
._1_c00230{margin-left:-3.733333pt;}
._2_c00230{margin-left:-1.984000pt;}
.fs1_c00230{font-size:37.333333pt;}
.fs0_c00230{font-size:53.333333pt;}
.fs3_c00230{font-size:64.000000pt;}
.fs2_c00230{font-size:74.666667pt;}
.y0_c00230{bottom:0.000000pt;}
.y1_c00230{bottom:36.666667pt;}
.y15_c00230{bottom:201.181067pt;}
.y14_c00230{bottom:227.853067pt;}
.y13_c00230{bottom:281.186400pt;}
.y12_c00230{bottom:361.165067pt;}
.y11_c00230{bottom:387.837067pt;}
.y10_c00230{bottom:414.509067pt;}
.yf_c00230{bottom:441.181067pt;}
.ye_c00230{bottom:467.853067pt;}
.yd_c00230{bottom:521.186400pt;}
.yc_c00230{bottom:601.138400pt;}
.yb_c00230{bottom:627.810400pt;}
.ya_c00230{bottom:654.482400pt;}
.y9_c00230{bottom:681.154400pt;}
.y8_c00230{bottom:707.826400pt;}
.y7_c00230{bottom:734.498400pt;}
.y6_c00230{bottom:761.170400pt;}
.y5_c00230{bottom:787.842400pt;}
.y4_c00230{bottom:814.514400pt;}
.y3_c00230{bottom:841.186400pt;}
.y2_c00230{bottom:894.519733pt;}
.h2_c00230{height:48.000000pt;}
.h4_c00230{height:57.600000pt;}
.h3_c00230{height:69.813333pt;}
.h0_c00230{height:1122.520000pt;}
.h1_c00230{height:1122.666667pt;}
.w0_c00230{width:793.701333pt;}
.w1_c00230{width:794.000000pt;}
.x0_c00230{left:0.000000pt;}
.x2_c00230{left:80.000000pt;}
.x3_c00230{left:94.666667pt;}
.x1_c00230{left:702.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00231;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00231;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:1.155000;font-style: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);}
.m1_c00231{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls2_c00231{letter-spacing:0.000000px;}
.ls0_c00231{letter-spacing:0.864000px;}
.ls1_c00231{letter-spacing:1.200000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00231{word-spacing:-13.104000px;}
.ws0_c00231{word-spacing:-10.200000px;}
.ws5_c00231{word-spacing:-2.952000px;}
.ws3_c00231{word-spacing:-2.664000px;}
.ws4_c00231{word-spacing:-1.440000px;}
.ws2_c00231{word-spacing:0.000000px;}
._0_c00231{margin-left:-480.336600px;}
._4_c00231{margin-left:-6.480000px;}
._5_c00231{margin-left:-5.400000px;}
._1_c00231{margin-left:-4.200000px;}
._6_c00231{margin-left:-3.120000px;}
._2_c00231{margin-left:-1.440000px;}
._3_c00231{width:1.440000px;}
.fc3_c00231{color:rgb(255,255,255);}
.fc2_c00231{color:rgb(233,83,14);}
.fc1_c00231{color:rgb(232,86,17);}
.fc0_c00231{color:rgb(60,60,59);}
.fs1_c00231{font-size:42.000000px;}
.fs0_c00231{font-size:60.000000px;}
.fs3_c00231{font-size:72.000000px;}
.fs4_c00231{font-size:120.000000px;}
.fs2_c00231{font-size:360.000000px;}
.y0_c00231{bottom:0.000000px;}
.y1_c00231{bottom:41.250000px;}
.yc_c00231{bottom:484.292700px;}
.yb_c00231{bottom:505.298700px;}
.ya_c00231{bottom:526.304700px;}
.y9_c00231{bottom:574.310700px;}
.y8_c00231{bottom:595.316700px;}
.y7_c00231{bottom:616.322700px;}
.y6_c00231{bottom:664.328700px;}
.y5_c00231{bottom:685.334700px;}
.y4_c00231{bottom:706.340700px;}
.y3_c00231{bottom:752.834700px;}
.yf_c00231{bottom:946.334700px;}
.ye_c00231{bottom:976.334700px;}
.yd_c00231{bottom:1006.334700px;}
.y2_c00231{bottom:1093.526700px;}
.h2_c00231{height:54.000000px;}
.h5_c00231{height:64.800000px;}
.h4_c00231{height:66.456000px;}
.h6_c00231{height:112.200000px;}
.h3_c00231{height:324.000000px;}
.h0_c00231{height:1262.835000px;}
.h1_c00231{height:1263.000000px;}
.w0_c00231{width:892.914000px;}
.w1_c00231{width:893.250000px;}
.x0_c00231{left:0.000000px;}
.x2_c00231{left:81.290250px;}
.x3_c00231{left:82.393650px;}
.x5_c00231{left:112.287450px;}
.x4_c00231{left:127.393650px;}
.x1_c00231{left:787.988700px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls2_c00231{letter-spacing:0.000000pt;}
.ls0_c00231{letter-spacing:0.768000pt;}
.ls1_c00231{letter-spacing:1.066667pt;}
.ws1_c00231{word-spacing:-11.648000pt;}
.ws0_c00231{word-spacing:-9.066667pt;}
.ws5_c00231{word-spacing:-2.624000pt;}
.ws3_c00231{word-spacing:-2.368000pt;}
.ws4_c00231{word-spacing:-1.280000pt;}
.ws2_c00231{word-spacing:0.000000pt;}
._0_c00231{margin-left:-426.965867pt;}
._4_c00231{margin-left:-5.760000pt;}
._5_c00231{margin-left:-4.800000pt;}
._1_c00231{margin-left:-3.733333pt;}
._6_c00231{margin-left:-2.773333pt;}
._2_c00231{margin-left:-1.280000pt;}
._3_c00231{width:1.280000pt;}
.fs1_c00231{font-size:37.333333pt;}
.fs0_c00231{font-size:53.333333pt;}
.fs3_c00231{font-size:64.000000pt;}
.fs4_c00231{font-size:106.666667pt;}
.fs2_c00231{font-size:320.000000pt;}
.y0_c00231{bottom:0.000000pt;}
.y1_c00231{bottom:36.666667pt;}
.yc_c00231{bottom:430.482400pt;}
.yb_c00231{bottom:449.154400pt;}
.ya_c00231{bottom:467.826400pt;}
.y9_c00231{bottom:510.498400pt;}
.y8_c00231{bottom:529.170400pt;}
.y7_c00231{bottom:547.842400pt;}
.y6_c00231{bottom:590.514400pt;}
.y5_c00231{bottom:609.186400pt;}
.y4_c00231{bottom:627.858400pt;}
.y3_c00231{bottom:669.186400pt;}
.yf_c00231{bottom:841.186400pt;}
.ye_c00231{bottom:867.853067pt;}
.yd_c00231{bottom:894.519733pt;}
.y2_c00231{bottom:972.023733pt;}
.h2_c00231{height:48.000000pt;}
.h5_c00231{height:57.600000pt;}
.h4_c00231{height:59.072000pt;}
.h6_c00231{height:99.733333pt;}
.h3_c00231{height:288.000000pt;}
.h0_c00231{height:1122.520000pt;}
.h1_c00231{height:1122.666667pt;}
.w0_c00231{width:793.701333pt;}
.w1_c00231{width:794.000000pt;}
.x0_c00231{left:0.000000pt;}
.x2_c00231{left:72.258000pt;}
.x3_c00231{left:73.238800pt;}
.x5_c00231{left:99.811067pt;}
.x4_c00231{left:113.238800pt;}
.x1_c00231{left:700.434400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_ad675bc1451e3c319d92cfc3.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.161000;font-style: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);}
.m1_c00232{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls5_c00232{letter-spacing:-0.540000px;}
.ls4_c00232{letter-spacing:0.000000px;}
.ls0_c00232{letter-spacing:0.720000px;}
.ls1_c00232{letter-spacing:0.840000px;}
.ls3_c00232{letter-spacing:1.500000px;}
.ls2_c00232{letter-spacing:1.650000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00232{word-spacing:-21.060000px;}
.ws2_c00232{word-spacing:-17.640000px;}
.ws3_c00232{word-spacing:-11.700000px;}
.ws0_c00232{word-spacing:-10.200000px;}
.ws6_c00232{word-spacing:-2.592000px;}
.ws7_c00232{word-spacing:-1.872000px;}
.ws12_c00232{word-spacing:-1.800000px;}
.ws14_c00232{word-spacing:-1.500000px;}
.wsc_c00232{word-spacing:-1.440000px;}
.wsa_c00232{word-spacing:-1.224000px;}
.ws5_c00232{word-spacing:-0.840000px;}
.ws4_c00232{word-spacing:0.000000px;}
.ws11_c00232{word-spacing:2.664000px;}
.wse_c00232{word-spacing:4.032000px;}
.wsf_c00232{word-spacing:4.320000px;}
.ws8_c00232{word-spacing:6.984000px;}
.ws10_c00232{word-spacing:7.704000px;}
.ws13_c00232{word-spacing:11.016000px;}
.wsd_c00232{word-spacing:11.232000px;}
.wsb_c00232{word-spacing:12.312000px;}
.ws9_c00232{word-spacing:20.304000px;}
._0_c00232{margin-left:-480.337200px;}
._5_c00232{margin-left:-5.601600px;}
._1_c00232{margin-left:-4.200000px;}
._6_c00232{margin-left:-2.678400px;}
._2_c00232{margin-left:-1.432800px;}
._4_c00232{width:1.022400px;}
._3_c00232{width:5.918400px;}
.fc3_c00232{color:rgb(32,32,32);}
.fc2_c00232{color:rgb(233,83,14);}
.fc1_c00232{color:rgb(232,86,17);}
.fc4_c00232{color:rgb(157,157,156);}
.fc0_c00232{color:rgb(60,60,59);}
.fs1_c00232{font-size:42.000000px;}
.fs0_c00232{font-size:60.000000px;}
.fs5_c00232{font-size:66.000000px;}
.fs4_c00232{font-size:72.000000px;}
.fs3_c00232{font-size:84.000000px;}
.fs2_c00232{font-size:108.000000px;}
.y0_c00232{bottom:0.000000px;}
.y1_c00232{bottom:41.250000px;}
.y16_c00232{bottom:136.304700px;}
.y15_c00232{bottom:166.310700px;}
.y14_c00232{bottom:196.316700px;}
.y13_c00232{bottom:226.322700px;}
.y12_c00232{bottom:256.328700px;}
.y11_c00232{bottom:286.334700px;}
.y10_c00232{bottom:346.334700px;}
.yf_c00232{bottom:436.328700px;}
.ye_c00232{bottom:466.334700px;}
.yd_c00232{bottom:526.334700px;}
.yc_c00232{bottom:616.286700px;}
.yb_c00232{bottom:646.292700px;}
.ya_c00232{bottom:676.298700px;}
.y1d_c00232{bottom:676.334700px;}
.y9_c00232{bottom:706.304700px;}
.y1c_c00232{bottom:706.334700px;}
.y8_c00232{bottom:736.310700px;}
.y1b_c00232{bottom:736.334700px;}
.y7_c00232{bottom:766.316700px;}
.y1a_c00232{bottom:766.334700px;}
.y6_c00232{bottom:796.322700px;}
.y19_c00232{bottom:796.334700px;}
.y5_c00232{bottom:826.328700px;}
.y18_c00232{bottom:826.334700px;}
.y4_c00232{bottom:856.334700px;}
.y17_c00232{bottom:857.010900px;}
.y3_c00232{bottom:916.334700px;}
.y2_c00232{bottom:1006.334700px;}
.h6_c00232{height:50.292000px;}
.h2_c00232{height:54.000000px;}
.h5_c00232{height:64.800000px;}
.h4_c00232{height:78.540000px;}
.h3_c00232{height:100.980000px;}
.h0_c00232{height:1262.835000px;}
.h1_c00232{height:1263.000000px;}
.w0_c00232{width:892.914000px;}
.w1_c00232{width:893.250000px;}
.x0_c00232{left:0.000000px;}
.x2_c00232{left:82.500000px;}
.x3_c00232{left:90.000000px;}
.x4_c00232{left:106.500000px;}
.x5_c00232{left:675.611100px;}
.x1_c00232{left:787.838850px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls5_c00232{letter-spacing:-0.480000pt;}
.ls4_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:0.640000pt;}
.ls1_c00232{letter-spacing:0.746667pt;}
.ls3_c00232{letter-spacing:1.333333pt;}
.ls2_c00232{letter-spacing:1.466667pt;}
.ws1_c00232{word-spacing:-18.720000pt;}
.ws2_c00232{word-spacing:-15.680000pt;}
.ws3_c00232{word-spacing:-10.400000pt;}
.ws0_c00232{word-spacing:-9.066667pt;}
.ws6_c00232{word-spacing:-2.304000pt;}
.ws7_c00232{word-spacing:-1.664000pt;}
.ws12_c00232{word-spacing:-1.600000pt;}
.ws14_c00232{word-spacing:-1.333333pt;}
.wsc_c00232{word-spacing:-1.280000pt;}
.wsa_c00232{word-spacing:-1.088000pt;}
.ws5_c00232{word-spacing:-0.746667pt;}
.ws4_c00232{word-spacing:0.000000pt;}
.ws11_c00232{word-spacing:2.368000pt;}
.wse_c00232{word-spacing:3.584000pt;}
.wsf_c00232{word-spacing:3.840000pt;}
.ws8_c00232{word-spacing:6.208000pt;}
.ws10_c00232{word-spacing:6.848000pt;}
.ws13_c00232{word-spacing:9.792000pt;}
.wsd_c00232{word-spacing:9.984000pt;}
.wsb_c00232{word-spacing:10.944000pt;}
.ws9_c00232{word-spacing:18.048000pt;}
._0_c00232{margin-left:-426.966400pt;}
._5_c00232{margin-left:-4.979200pt;}
._1_c00232{margin-left:-3.733333pt;}
._6_c00232{margin-left:-2.380800pt;}
._2_c00232{margin-left:-1.273600pt;}
._4_c00232{width:0.908800pt;}
._3_c00232{width:5.260800pt;}
.fs1_c00232{font-size:37.333333pt;}
.fs0_c00232{font-size:53.333333pt;}
.fs5_c00232{font-size:58.666667pt;}
.fs4_c00232{font-size:64.000000pt;}
.fs3_c00232{font-size:74.666667pt;}
.fs2_c00232{font-size:96.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y1_c00232{bottom:36.666667pt;}
.y16_c00232{bottom:121.159733pt;}
.y15_c00232{bottom:147.831733pt;}
.y14_c00232{bottom:174.503733pt;}
.y13_c00232{bottom:201.175733pt;}
.y12_c00232{bottom:227.847733pt;}
.y11_c00232{bottom:254.519733pt;}
.y10_c00232{bottom:307.853067pt;}
.yf_c00232{bottom:387.847733pt;}
.ye_c00232{bottom:414.519733pt;}
.yd_c00232{bottom:467.853067pt;}
.yc_c00232{bottom:547.810400pt;}
.yb_c00232{bottom:574.482400pt;}
.ya_c00232{bottom:601.154400pt;}
.y1d_c00232{bottom:601.186400pt;}
.y9_c00232{bottom:627.826400pt;}
.y1c_c00232{bottom:627.853067pt;}
.y8_c00232{bottom:654.498400pt;}
.y1b_c00232{bottom:654.519733pt;}
.y7_c00232{bottom:681.170400pt;}
.y1a_c00232{bottom:681.186400pt;}
.y6_c00232{bottom:707.842400pt;}
.y19_c00232{bottom:707.853067pt;}
.y5_c00232{bottom:734.514400pt;}
.y18_c00232{bottom:734.519733pt;}
.y4_c00232{bottom:761.186400pt;}
.y17_c00232{bottom:761.787467pt;}
.y3_c00232{bottom:814.519733pt;}
.y2_c00232{bottom:894.519733pt;}
.h6_c00232{height:44.704000pt;}
.h2_c00232{height:48.000000pt;}
.h5_c00232{height:57.600000pt;}
.h4_c00232{height:69.813333pt;}
.h3_c00232{height:89.760000pt;}
.h0_c00232{height:1122.520000pt;}
.h1_c00232{height:1122.666667pt;}
.w0_c00232{width:793.701333pt;}
.w1_c00232{width:794.000000pt;}
.x0_c00232{left:0.000000pt;}
.x2_c00232{left:73.333333pt;}
.x3_c00232{left:80.000000pt;}
.x4_c00232{left:94.666667pt;}
.x5_c00232{left:600.543200pt;}
.x1_c00232{left:700.301200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.161000;font-style: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);}
.m1_c00233{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls3_c00233{letter-spacing:0.000000px;}
.ls1_c00233{letter-spacing:0.648000px;}
.ls0_c00233{letter-spacing:0.720000px;}
.ls4_c00233{letter-spacing:0.840000px;}
.ls2_c00233{letter-spacing:0.864000px;}
.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:-10.200000px;}
.ws9_c00233{word-spacing:-1.656000px;}
.ws2_c00233{word-spacing:-0.840000px;}
.ws8_c00233{word-spacing:-0.720000px;}
.ws1_c00233{word-spacing:0.000000px;}
.ws7_c00233{word-spacing:0.648000px;}
.ws3_c00233{word-spacing:0.792000px;}
.wsa_c00233{word-spacing:1.872000px;}
.ws4_c00233{word-spacing:5.184000px;}
.ws6_c00233{word-spacing:5.976000px;}
.ws5_c00233{word-spacing:6.048000px;}
._0_c00233{margin-left:-480.337200px;}
._1_c00233{margin-left:-4.200000px;}
._2_c00233{margin-left:-1.440000px;}
._3_c00233{width:1.368000px;}
.fc2_c00233{color:rgb(32,32,32);}
.fc1_c00233{color:rgb(232,86,17);}
.fc0_c00233{color:rgb(60,60,59);}
.fs1_c00233{font-size:42.000000px;}
.fs0_c00233{font-size:60.000000px;}
.fs3_c00233{font-size:72.000000px;}
.fs2_c00233{font-size:84.000000px;}
.y0_c00233{bottom:0.000000px;}
.y1_c00233{bottom:41.250000px;}
.yc_c00233{bottom:586.322700px;}
.yb_c00233{bottom:616.328700px;}
.ya_c00233{bottom:646.334700px;}
.y9_c00233{bottom:706.334700px;}
.y8_c00233{bottom:796.304700px;}
.y7_c00233{bottom:826.310700px;}
.y6_c00233{bottom:856.316700px;}
.y5_c00233{bottom:886.322700px;}
.y4_c00233{bottom:916.328700px;}
.y3_c00233{bottom:946.334700px;}
.y2_c00233{bottom:1006.334700px;}
.h2_c00233{height:54.000000px;}
.h4_c00233{height:64.800000px;}
.h3_c00233{height:78.540000px;}
.h0_c00233{height:1262.835000px;}
.h1_c00233{height:1263.000000px;}
.w0_c00233{width:892.914000px;}
.w1_c00233{width:893.250000px;}
.x0_c00233{left:0.000000px;}
.x2_c00233{left:90.000000px;}
.x3_c00233{left:106.500000px;}
.x1_c00233{left:786.863850px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls3_c00233{letter-spacing:0.000000pt;}
.ls1_c00233{letter-spacing:0.576000pt;}
.ls0_c00233{letter-spacing:0.640000pt;}
.ls4_c00233{letter-spacing:0.746667pt;}
.ls2_c00233{letter-spacing:0.768000pt;}
.ws0_c00233{word-spacing:-9.066667pt;}
.ws9_c00233{word-spacing:-1.472000pt;}
.ws2_c00233{word-spacing:-0.746667pt;}
.ws8_c00233{word-spacing:-0.640000pt;}
.ws1_c00233{word-spacing:0.000000pt;}
.ws7_c00233{word-spacing:0.576000pt;}
.ws3_c00233{word-spacing:0.704000pt;}
.wsa_c00233{word-spacing:1.664000pt;}
.ws4_c00233{word-spacing:4.608000pt;}
.ws6_c00233{word-spacing:5.312000pt;}
.ws5_c00233{word-spacing:5.376000pt;}
._0_c00233{margin-left:-426.966400pt;}
._1_c00233{margin-left:-3.733333pt;}
._2_c00233{margin-left:-1.280000pt;}
._3_c00233{width:1.216000pt;}
.fs1_c00233{font-size:37.333333pt;}
.fs0_c00233{font-size:53.333333pt;}
.fs3_c00233{font-size:64.000000pt;}
.fs2_c00233{font-size:74.666667pt;}
.y0_c00233{bottom:0.000000pt;}
.y1_c00233{bottom:36.666667pt;}
.yc_c00233{bottom:521.175733pt;}
.yb_c00233{bottom:547.847733pt;}
.ya_c00233{bottom:574.519733pt;}
.y9_c00233{bottom:627.853067pt;}
.y8_c00233{bottom:707.826400pt;}
.y7_c00233{bottom:734.498400pt;}
.y6_c00233{bottom:761.170400pt;}
.y5_c00233{bottom:787.842400pt;}
.y4_c00233{bottom:814.514400pt;}
.y3_c00233{bottom:841.186400pt;}
.y2_c00233{bottom:894.519733pt;}
.h2_c00233{height:48.000000pt;}
.h4_c00233{height:57.600000pt;}
.h3_c00233{height:69.813333pt;}
.h0_c00233{height:1122.520000pt;}
.h1_c00233{height:1122.666667pt;}
.w0_c00233{width:793.701333pt;}
.w1_c00233{width:794.000000pt;}
.x0_c00233{left:0.000000pt;}
.x2_c00233{left:80.000000pt;}
.x3_c00233{left:94.666667pt;}
.x1_c00233{left:699.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9336a84ddb46a296126c8b8f.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00234;src:url('chunks/assets/font_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00234;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00234;src:url('chunks/assets/font_ad675bc1451e3c319d92cfc3.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:1.161000;font-style: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);}
.m1_c00234{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls5_c00234{letter-spacing:-0.324000px;}
.ls4_c00234{letter-spacing:0.000000px;}
.ls0_c00234{letter-spacing:0.720000px;}
.ls1_c00234{letter-spacing:0.840000px;}
.ls3_c00234{letter-spacing:1.500000px;}
.ls2_c00234{letter-spacing:1.650000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00234{word-spacing:-21.276000px;}
.ws2_c00234{word-spacing:-17.640000px;}
.ws3_c00234{word-spacing:-14.850000px;}
.ws0_c00234{word-spacing:-10.200000px;}
.ws9_c00234{word-spacing:-2.880000px;}
.wse_c00234{word-spacing:-2.160000px;}
.ws5_c00234{word-spacing:-0.840000px;}
.ws7_c00234{word-spacing:-0.792000px;}
.ws4_c00234{word-spacing:0.000000px;}
.wsb_c00234{word-spacing:0.360000px;}
.ws10_c00234{word-spacing:0.576000px;}
.ws8_c00234{word-spacing:1.368000px;}
.wsa_c00234{word-spacing:2.016000px;}
.ws6_c00234{word-spacing:4.032000px;}
.wsd_c00234{word-spacing:5.328000px;}
.wsf_c00234{word-spacing:9.792000px;}
.wsc_c00234{word-spacing:13.536000px;}
._0_c00234{margin-left:-480.336600px;}
._5_c00234{margin-left:-6.282000px;}
._1_c00234{margin-left:-4.200000px;}
._3_c00234{margin-left:-2.358000px;}
._2_c00234{margin-left:-1.134000px;}
._4_c00234{width:1.227600px;}
.fc3_c00234{color:rgb(32,32,32);}
.fc2_c00234{color:rgb(233,83,14);}
.fc1_c00234{color:rgb(232,86,17);}
.fc4_c00234{color:rgb(157,157,156);}
.fc0_c00234{color:rgb(60,60,59);}
.fs1_c00234{font-size:42.000000px;}
.fs0_c00234{font-size:60.000000px;}
.fs5_c00234{font-size:66.000000px;}
.fs4_c00234{font-size:72.000000px;}
.fs3_c00234{font-size:84.000000px;}
.fs2_c00234{font-size:108.000000px;}
.y0_c00234{bottom:0.000000px;}
.y1_c00234{bottom:41.250000px;}
.y14_c00234{bottom:196.304700px;}
.y13_c00234{bottom:226.310700px;}
.y12_c00234{bottom:256.316700px;}
.y11_c00234{bottom:286.322700px;}
.y10_c00234{bottom:316.328700px;}
.yf_c00234{bottom:346.334700px;}
.ye_c00234{bottom:406.334700px;}
.yd_c00234{bottom:496.328700px;}
.yc_c00234{bottom:526.334700px;}
.yb_c00234{bottom:586.334700px;}
.ya_c00234{bottom:676.298700px;}
.y9_c00234{bottom:706.304700px;}
.y8_c00234{bottom:736.310700px;}
.y19_c00234{bottom:736.334700px;}
.y7_c00234{bottom:766.316700px;}
.y18_c00234{bottom:766.334700px;}
.y6_c00234{bottom:796.322700px;}
.y17_c00234{bottom:796.334700px;}
.y5_c00234{bottom:826.328700px;}
.y16_c00234{bottom:826.334700px;}
.y4_c00234{bottom:856.334700px;}
.y15_c00234{bottom:857.010900px;}
.y3_c00234{bottom:916.334700px;}
.y2_c00234{bottom:1006.334700px;}
.h6_c00234{height:50.292000px;}
.h2_c00234{height:54.000000px;}
.h5_c00234{height:64.800000px;}
.h4_c00234{height:78.540000px;}
.h3_c00234{height:100.980000px;}
.h0_c00234{height:1262.835000px;}
.h1_c00234{height:1263.000000px;}
.w0_c00234{width:892.914000px;}
.w1_c00234{width:893.250000px;}
.x0_c00234{left:0.000000px;}
.x2_c00234{left:82.500000px;}
.x3_c00234{left:90.000000px;}
.x4_c00234{left:106.500000px;}
.x5_c00234{left:675.611100px;}
.x1_c00234{left:787.913700px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls5_c00234{letter-spacing:-0.288000pt;}
.ls4_c00234{letter-spacing:0.000000pt;}
.ls0_c00234{letter-spacing:0.640000pt;}
.ls1_c00234{letter-spacing:0.746667pt;}
.ls3_c00234{letter-spacing:1.333333pt;}
.ls2_c00234{letter-spacing:1.466667pt;}
.ws1_c00234{word-spacing:-18.912000pt;}
.ws2_c00234{word-spacing:-15.680000pt;}
.ws3_c00234{word-spacing:-13.200000pt;}
.ws0_c00234{word-spacing:-9.066667pt;}
.ws9_c00234{word-spacing:-2.560000pt;}
.wse_c00234{word-spacing:-1.920000pt;}
.ws5_c00234{word-spacing:-0.746667pt;}
.ws7_c00234{word-spacing:-0.704000pt;}
.ws4_c00234{word-spacing:0.000000pt;}
.wsb_c00234{word-spacing:0.320000pt;}
.ws10_c00234{word-spacing:0.512000pt;}
.ws8_c00234{word-spacing:1.216000pt;}
.wsa_c00234{word-spacing:1.792000pt;}
.ws6_c00234{word-spacing:3.584000pt;}
.wsd_c00234{word-spacing:4.736000pt;}
.wsf_c00234{word-spacing:8.704000pt;}
.wsc_c00234{word-spacing:12.032000pt;}
._0_c00234{margin-left:-426.965867pt;}
._5_c00234{margin-left:-5.584000pt;}
._1_c00234{margin-left:-3.733333pt;}
._3_c00234{margin-left:-2.096000pt;}
._2_c00234{margin-left:-1.008000pt;}
._4_c00234{width:1.091200pt;}
.fs1_c00234{font-size:37.333333pt;}
.fs0_c00234{font-size:53.333333pt;}
.fs5_c00234{font-size:58.666667pt;}
.fs4_c00234{font-size:64.000000pt;}
.fs3_c00234{font-size:74.666667pt;}
.fs2_c00234{font-size:96.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y1_c00234{bottom:36.666667pt;}
.y14_c00234{bottom:174.493067pt;}
.y13_c00234{bottom:201.165067pt;}
.y12_c00234{bottom:227.837067pt;}
.y11_c00234{bottom:254.509067pt;}
.y10_c00234{bottom:281.181067pt;}
.yf_c00234{bottom:307.853067pt;}
.ye_c00234{bottom:361.186400pt;}
.yd_c00234{bottom:441.181067pt;}
.yc_c00234{bottom:467.853067pt;}
.yb_c00234{bottom:521.186400pt;}
.ya_c00234{bottom:601.154400pt;}
.y9_c00234{bottom:627.826400pt;}
.y8_c00234{bottom:654.498400pt;}
.y19_c00234{bottom:654.519733pt;}
.y7_c00234{bottom:681.170400pt;}
.y18_c00234{bottom:681.186400pt;}
.y6_c00234{bottom:707.842400pt;}
.y17_c00234{bottom:707.853067pt;}
.y5_c00234{bottom:734.514400pt;}
.y16_c00234{bottom:734.519733pt;}
.y4_c00234{bottom:761.186400pt;}
.y15_c00234{bottom:761.787467pt;}
.y3_c00234{bottom:814.519733pt;}
.y2_c00234{bottom:894.519733pt;}
.h6_c00234{height:44.704000pt;}
.h2_c00234{height:48.000000pt;}
.h5_c00234{height:57.600000pt;}
.h4_c00234{height:69.813333pt;}
.h3_c00234{height:89.760000pt;}
.h0_c00234{height:1122.520000pt;}
.h1_c00234{height:1122.666667pt;}
.w0_c00234{width:793.701333pt;}
.w1_c00234{width:794.000000pt;}
.x0_c00234{left:0.000000pt;}
.x2_c00234{left:73.333333pt;}
.x3_c00234{left:80.000000pt;}
.x4_c00234{left:94.666667pt;}
.x5_c00234{left:600.543200pt;}
.x1_c00234{left:700.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73c7dea85163a337c1490c92.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00235;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.199000;font-style: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);}
.m1_c00235{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls1_c00235{letter-spacing:0.000000px;}
.ls0_c00235{letter-spacing:0.720000px;}
.ls2_c00235{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws8_c00235{word-spacing:-4.752000px;}
.ws9_c00235{word-spacing:-2.520000px;}
.ws7_c00235{word-spacing:-2.448000px;}
.ws2_c00235{word-spacing:-0.840000px;}
.ws1_c00235{word-spacing:0.000000px;}
.ws6_c00235{word-spacing:3.240000px;}
.ws3_c00235{word-spacing:4.032000px;}
.ws5_c00235{word-spacing:5.544000px;}
.ws4_c00235{word-spacing:6.984000px;}
._0_c00235{margin-left:-480.336600px;}
._1_c00235{margin-left:-4.200000px;}
._3_c00235{margin-left:-2.901600px;}
._2_c00235{margin-left:-1.440000px;}
._4_c00235{width:1.144800px;}
._5_c00235{width:2.419200px;}
.fc2_c00235{color:rgb(32,32,32);}
.fc1_c00235{color:rgb(232,86,17);}
.fc0_c00235{color:rgb(60,60,59);}
.fs1_c00235{font-size:42.000000px;}
.fs0_c00235{font-size:60.000000px;}
.fs3_c00235{font-size:72.000000px;}
.fs2_c00235{font-size:84.000000px;}
.y0_c00235{bottom:0.000000px;}
.y1_c00235{bottom:41.250000px;}
.yc_c00235{bottom:586.322700px;}
.yb_c00235{bottom:616.328700px;}
.ya_c00235{bottom:646.334700px;}
.y9_c00235{bottom:706.334700px;}
.y8_c00235{bottom:796.304700px;}
.y7_c00235{bottom:826.310700px;}
.y6_c00235{bottom:856.316700px;}
.y5_c00235{bottom:886.322700px;}
.y4_c00235{bottom:916.328700px;}
.y3_c00235{bottom:946.334700px;}
.y2_c00235{bottom:1006.334700px;}
.h2_c00235{height:54.000000px;}
.h4_c00235{height:64.800000px;}
.h3_c00235{height:78.540000px;}
.h0_c00235{height:1262.835000px;}
.h1_c00235{height:1263.000000px;}
.w0_c00235{width:892.914000px;}
.w1_c00235{width:893.250000px;}
.x0_c00235{left:0.000000px;}
.x2_c00235{left:90.000000px;}
.x3_c00235{left:106.500000px;}
.x1_c00235{left:786.788700px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls1_c00235{letter-spacing:0.000000pt;}
.ls0_c00235{letter-spacing:0.640000pt;}
.ls2_c00235{letter-spacing:0.746667pt;}
.ws0_c00235{word-spacing:-9.066667pt;}
.ws8_c00235{word-spacing:-4.224000pt;}
.ws9_c00235{word-spacing:-2.240000pt;}
.ws7_c00235{word-spacing:-2.176000pt;}
.ws2_c00235{word-spacing:-0.746667pt;}
.ws1_c00235{word-spacing:0.000000pt;}
.ws6_c00235{word-spacing:2.880000pt;}
.ws3_c00235{word-spacing:3.584000pt;}
.ws5_c00235{word-spacing:4.928000pt;}
.ws4_c00235{word-spacing:6.208000pt;}
._0_c00235{margin-left:-426.965867pt;}
._1_c00235{margin-left:-3.733333pt;}
._3_c00235{margin-left:-2.579200pt;}
._2_c00235{margin-left:-1.280000pt;}
._4_c00235{width:1.017600pt;}
._5_c00235{width:2.150400pt;}
.fs1_c00235{font-size:37.333333pt;}
.fs0_c00235{font-size:53.333333pt;}
.fs3_c00235{font-size:64.000000pt;}
.fs2_c00235{font-size:74.666667pt;}
.y0_c00235{bottom:0.000000pt;}
.y1_c00235{bottom:36.666667pt;}
.yc_c00235{bottom:521.175733pt;}
.yb_c00235{bottom:547.847733pt;}
.ya_c00235{bottom:574.519733pt;}
.y9_c00235{bottom:627.853067pt;}
.y8_c00235{bottom:707.826400pt;}
.y7_c00235{bottom:734.498400pt;}
.y6_c00235{bottom:761.170400pt;}
.y5_c00235{bottom:787.842400pt;}
.y4_c00235{bottom:814.514400pt;}
.y3_c00235{bottom:841.186400pt;}
.y2_c00235{bottom:894.519733pt;}
.h2_c00235{height:48.000000pt;}
.h4_c00235{height:57.600000pt;}
.h3_c00235{height:69.813333pt;}
.h0_c00235{height:1122.520000pt;}
.h1_c00235{height:1122.666667pt;}
.w0_c00235{width:793.701333pt;}
.w1_c00235{width:794.000000pt;}
.x0_c00235{left:0.000000pt;}
.x2_c00235{left:80.000000pt;}
.x3_c00235{left:94.666667pt;}
.x1_c00235{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00236;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;line-height:1.155000;font-style: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);}
.m1_c00236{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls2_c00236{letter-spacing:0.000000px;}
.ls0_c00236{letter-spacing:0.864000px;}
.ls1_c00236{letter-spacing:1.200000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00236{word-spacing:-13.104000px;}
.ws0_c00236{word-spacing:-10.200000px;}
.ws3_c00236{word-spacing:-3.528000px;}
.ws6_c00236{word-spacing:-3.168000px;}
.ws5_c00236{word-spacing:-1.728000px;}
.ws4_c00236{word-spacing:-1.440000px;}
.ws7_c00236{word-spacing:-1.200000px;}
.ws2_c00236{word-spacing:0.000000px;}
._0_c00236{margin-left:-480.336600px;}
._5_c00236{margin-left:-8.704800px;}
._4_c00236{margin-left:-7.128000px;}
._7_c00236{margin-left:-5.760000px;}
._1_c00236{margin-left:-4.200000px;}
._6_c00236{margin-left:-2.592000px;}
._3_c00236{margin-left:-1.440000px;}
._2_c00236{width:2.088000px;}
._9_c00236{width:8.760000px;}
._8_c00236{width:10.200000px;}
.fc3_c00236{color:rgb(255,255,255);}
.fc2_c00236{color:rgb(233,83,14);}
.fc1_c00236{color:rgb(232,86,17);}
.fc0_c00236{color:rgb(60,60,59);}
.fs1_c00236{font-size:42.000000px;}
.fs0_c00236{font-size:60.000000px;}
.fs3_c00236{font-size:72.000000px;}
.fs4_c00236{font-size:120.000000px;}
.fs2_c00236{font-size:360.000000px;}
.y0_c00236{bottom:0.000000px;}
.y1_c00236{bottom:41.250000px;}
.yc_c00236{bottom:484.292700px;}
.yb_c00236{bottom:505.298700px;}
.ya_c00236{bottom:526.304700px;}
.y9_c00236{bottom:574.310700px;}
.y8_c00236{bottom:595.316700px;}
.y7_c00236{bottom:616.322700px;}
.y6_c00236{bottom:664.328700px;}
.y5_c00236{bottom:685.334700px;}
.y4_c00236{bottom:706.340700px;}
.y3_c00236{bottom:752.834700px;}
.y10_c00236{bottom:916.334700px;}
.yf_c00236{bottom:946.334700px;}
.ye_c00236{bottom:976.334700px;}
.yd_c00236{bottom:1006.334700px;}
.y2_c00236{bottom:1093.526700px;}
.h2_c00236{height:54.000000px;}
.h5_c00236{height:64.800000px;}
.h4_c00236{height:66.456000px;}
.h6_c00236{height:112.200000px;}
.h3_c00236{height:324.000000px;}
.h0_c00236{height:1262.835000px;}
.h1_c00236{height:1263.000000px;}
.w0_c00236{width:892.914000px;}
.w1_c00236{width:893.250000px;}
.x0_c00236{left:0.000000px;}
.x2_c00236{left:81.290250px;}
.x3_c00236{left:82.393650px;}
.x5_c00236{left:112.287450px;}
.x4_c00236{left:127.393650px;}
.x1_c00236{left:788.888700px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls2_c00236{letter-spacing:0.000000pt;}
.ls0_c00236{letter-spacing:0.768000pt;}
.ls1_c00236{letter-spacing:1.066667pt;}
.ws1_c00236{word-spacing:-11.648000pt;}
.ws0_c00236{word-spacing:-9.066667pt;}
.ws3_c00236{word-spacing:-3.136000pt;}
.ws6_c00236{word-spacing:-2.816000pt;}
.ws5_c00236{word-spacing:-1.536000pt;}
.ws4_c00236{word-spacing:-1.280000pt;}
.ws7_c00236{word-spacing:-1.066667pt;}
.ws2_c00236{word-spacing:0.000000pt;}
._0_c00236{margin-left:-426.965867pt;}
._5_c00236{margin-left:-7.737600pt;}
._4_c00236{margin-left:-6.336000pt;}
._7_c00236{margin-left:-5.120000pt;}
._1_c00236{margin-left:-3.733333pt;}
._6_c00236{margin-left:-2.304000pt;}
._3_c00236{margin-left:-1.280000pt;}
._2_c00236{width:1.856000pt;}
._9_c00236{width:7.786667pt;}
._8_c00236{width:9.066667pt;}
.fs1_c00236{font-size:37.333333pt;}
.fs0_c00236{font-size:53.333333pt;}
.fs3_c00236{font-size:64.000000pt;}
.fs4_c00236{font-size:106.666667pt;}
.fs2_c00236{font-size:320.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y1_c00236{bottom:36.666667pt;}
.yc_c00236{bottom:430.482400pt;}
.yb_c00236{bottom:449.154400pt;}
.ya_c00236{bottom:467.826400pt;}
.y9_c00236{bottom:510.498400pt;}
.y8_c00236{bottom:529.170400pt;}
.y7_c00236{bottom:547.842400pt;}
.y6_c00236{bottom:590.514400pt;}
.y5_c00236{bottom:609.186400pt;}
.y4_c00236{bottom:627.858400pt;}
.y3_c00236{bottom:669.186400pt;}
.y10_c00236{bottom:814.519733pt;}
.yf_c00236{bottom:841.186400pt;}
.ye_c00236{bottom:867.853067pt;}
.yd_c00236{bottom:894.519733pt;}
.y2_c00236{bottom:972.023733pt;}
.h2_c00236{height:48.000000pt;}
.h5_c00236{height:57.600000pt;}
.h4_c00236{height:59.072000pt;}
.h6_c00236{height:99.733333pt;}
.h3_c00236{height:288.000000pt;}
.h0_c00236{height:1122.520000pt;}
.h1_c00236{height:1122.666667pt;}
.w0_c00236{width:793.701333pt;}
.w1_c00236{width:794.000000pt;}
.x0_c00236{left:0.000000pt;}
.x2_c00236{left:72.258000pt;}
.x3_c00236{left:73.238800pt;}
.x5_c00236{left:99.811067pt;}
.x4_c00236{left:113.238800pt;}
.x1_c00236{left:701.234400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:1.024000;font-style: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);}
.m1_c00237{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls5_c00237{letter-spacing:-0.540000px;}
.ls4_c00237{letter-spacing:0.000000px;}
.ls0_c00237{letter-spacing:0.720000px;}
.ls1_c00237{letter-spacing:0.840000px;}
.ls3_c00237{letter-spacing:1.500000px;}
.ls2_c00237{letter-spacing:1.650000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00237{word-spacing:-21.060000px;}
.ws2_c00237{word-spacing:-17.640000px;}
.ws0_c00237{word-spacing:-10.200000px;}
.ws8_c00237{word-spacing:-4.536000px;}
.wsb_c00237{word-spacing:-2.448000px;}
.ws11_c00237{word-spacing:-1.500000px;}
.ws9_c00237{word-spacing:-1.440000px;}
.wse_c00237{word-spacing:-1.224000px;}
.wsd_c00237{word-spacing:-1.008000px;}
.ws4_c00237{word-spacing:-0.840000px;}
.ws10_c00237{word-spacing:-0.480000px;}
.ws6_c00237{word-spacing:-0.144000px;}
.ws3_c00237{word-spacing:0.000000px;}
.wsa_c00237{word-spacing:0.864000px;}
.ws5_c00237{word-spacing:1.368000px;}
.wsc_c00237{word-spacing:4.608000px;}
.ws7_c00237{word-spacing:9.072000px;}
.wsf_c00237{word-spacing:9.216000px;}
._0_c00237{margin-left:-480.337200px;}
._5_c00237{margin-left:-5.760000px;}
._1_c00237{margin-left:-4.200000px;}
._4_c00237{margin-left:-2.664000px;}
._2_c00237{margin-left:-1.576800px;}
._3_c00237{width:1.044000px;}
.fc3_c00237{color:rgb(32,32,32);}
.fc2_c00237{color:rgb(233,83,14);}
.fc1_c00237{color:rgb(232,86,17);}
.fc4_c00237{color:rgb(157,157,156);}
.fc0_c00237{color:rgb(60,60,59);}
.fs1_c00237{font-size:42.000000px;}
.fs0_c00237{font-size:60.000000px;}
.fs5_c00237{font-size:66.000000px;}
.fs4_c00237{font-size:72.000000px;}
.fs3_c00237{font-size:84.000000px;}
.fs2_c00237{font-size:108.000000px;}
.y0_c00237{bottom:0.000000px;}
.y1_c00237{bottom:41.250000px;}
.y11_c00237{bottom:376.316700px;}
.y10_c00237{bottom:406.322700px;}
.yf_c00237{bottom:436.328700px;}
.ye_c00237{bottom:466.334700px;}
.yd_c00237{bottom:526.334700px;}
.yc_c00237{bottom:616.286700px;}
.yb_c00237{bottom:646.292700px;}
.ya_c00237{bottom:676.298700px;}
.y9_c00237{bottom:706.304700px;}
.y8_c00237{bottom:736.310700px;}
.y16_c00237{bottom:736.334700px;}
.y7_c00237{bottom:766.316700px;}
.y15_c00237{bottom:766.334700px;}
.y6_c00237{bottom:796.322700px;}
.y14_c00237{bottom:796.334700px;}
.y5_c00237{bottom:826.328700px;}
.y13_c00237{bottom:826.334700px;}
.y4_c00237{bottom:856.334700px;}
.y12_c00237{bottom:857.010900px;}
.y3_c00237{bottom:916.334700px;}
.y2_c00237{bottom:1006.334700px;}
.h6_c00237{height:50.292000px;}
.h2_c00237{height:54.000000px;}
.h5_c00237{height:64.800000px;}
.h4_c00237{height:78.540000px;}
.h3_c00237{height:100.980000px;}
.h0_c00237{height:1262.835000px;}
.h1_c00237{height:1263.000000px;}
.w0_c00237{width:892.914000px;}
.w1_c00237{width:893.250000px;}
.x0_c00237{left:0.000000px;}
.x2_c00237{left:82.500000px;}
.x3_c00237{left:90.000000px;}
.x4_c00237{left:106.500000px;}
.x5_c00237{left:675.611100px;}
.x1_c00237{left:786.863850px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls5_c00237{letter-spacing:-0.480000pt;}
.ls4_c00237{letter-spacing:0.000000pt;}
.ls0_c00237{letter-spacing:0.640000pt;}
.ls1_c00237{letter-spacing:0.746667pt;}
.ls3_c00237{letter-spacing:1.333333pt;}
.ls2_c00237{letter-spacing:1.466667pt;}
.ws1_c00237{word-spacing:-18.720000pt;}
.ws2_c00237{word-spacing:-15.680000pt;}
.ws0_c00237{word-spacing:-9.066667pt;}
.ws8_c00237{word-spacing:-4.032000pt;}
.wsb_c00237{word-spacing:-2.176000pt;}
.ws11_c00237{word-spacing:-1.333333pt;}
.ws9_c00237{word-spacing:-1.280000pt;}
.wse_c00237{word-spacing:-1.088000pt;}
.wsd_c00237{word-spacing:-0.896000pt;}
.ws4_c00237{word-spacing:-0.746667pt;}
.ws10_c00237{word-spacing:-0.426667pt;}
.ws6_c00237{word-spacing:-0.128000pt;}
.ws3_c00237{word-spacing:0.000000pt;}
.wsa_c00237{word-spacing:0.768000pt;}
.ws5_c00237{word-spacing:1.216000pt;}
.wsc_c00237{word-spacing:4.096000pt;}
.ws7_c00237{word-spacing:8.064000pt;}
.wsf_c00237{word-spacing:8.192000pt;}
._0_c00237{margin-left:-426.966400pt;}
._5_c00237{margin-left:-5.120000pt;}
._1_c00237{margin-left:-3.733333pt;}
._4_c00237{margin-left:-2.368000pt;}
._2_c00237{margin-left:-1.401600pt;}
._3_c00237{width:0.928000pt;}
.fs1_c00237{font-size:37.333333pt;}
.fs0_c00237{font-size:53.333333pt;}
.fs5_c00237{font-size:58.666667pt;}
.fs4_c00237{font-size:64.000000pt;}
.fs3_c00237{font-size:74.666667pt;}
.fs2_c00237{font-size:96.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y1_c00237{bottom:36.666667pt;}
.y11_c00237{bottom:334.503733pt;}
.y10_c00237{bottom:361.175733pt;}
.yf_c00237{bottom:387.847733pt;}
.ye_c00237{bottom:414.519733pt;}
.yd_c00237{bottom:467.853067pt;}
.yc_c00237{bottom:547.810400pt;}
.yb_c00237{bottom:574.482400pt;}
.ya_c00237{bottom:601.154400pt;}
.y9_c00237{bottom:627.826400pt;}
.y8_c00237{bottom:654.498400pt;}
.y16_c00237{bottom:654.519733pt;}
.y7_c00237{bottom:681.170400pt;}
.y15_c00237{bottom:681.186400pt;}
.y6_c00237{bottom:707.842400pt;}
.y14_c00237{bottom:707.853067pt;}
.y5_c00237{bottom:734.514400pt;}
.y13_c00237{bottom:734.519733pt;}
.y4_c00237{bottom:761.186400pt;}
.y12_c00237{bottom:761.787467pt;}
.y3_c00237{bottom:814.519733pt;}
.y2_c00237{bottom:894.519733pt;}
.h6_c00237{height:44.704000pt;}
.h2_c00237{height:48.000000pt;}
.h5_c00237{height:57.600000pt;}
.h4_c00237{height:69.813333pt;}
.h3_c00237{height:89.760000pt;}
.h0_c00237{height:1122.520000pt;}
.h1_c00237{height:1122.666667pt;}
.w0_c00237{width:793.701333pt;}
.w1_c00237{width:794.000000pt;}
.x0_c00237{left:0.000000pt;}
.x2_c00237{left:73.333333pt;}
.x3_c00237{left:80.000000pt;}
.x4_c00237{left:94.666667pt;}
.x5_c00237{left:600.543200pt;}
.x1_c00237{left:699.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00238;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.199000;font-style: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);}
.m1_c00238{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls1_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:0.720000px;}
.ls2_c00238{letter-spacing:0.840000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00238{word-spacing:-10.200000px;}
.ws7_c00238{word-spacing:-2.736000px;}
.wsa_c00238{word-spacing:-1.872000px;}
.ws5_c00238{word-spacing:-1.296000px;}
.ws2_c00238{word-spacing:-0.840000px;}
.ws10_c00238{word-spacing:-0.720000px;}
.ws1_c00238{word-spacing:0.000000px;}
.ws8_c00238{word-spacing:0.216000px;}
.ws3_c00238{word-spacing:1.440000px;}
.wse_c00238{word-spacing:1.656000px;}
.wsd_c00238{word-spacing:2.304000px;}
.ws6_c00238{word-spacing:2.880000px;}
.wsf_c00238{word-spacing:4.752000px;}
.wsb_c00238{word-spacing:7.848000px;}
.ws9_c00238{word-spacing:10.296000px;}
.ws4_c00238{word-spacing:10.872000px;}
.wsc_c00238{word-spacing:12.168000px;}
._0_c00238{margin-left:-480.336600px;}
._1_c00238{margin-left:-4.200000px;}
._2_c00238{margin-left:-2.160000px;}
._5_c00238{margin-left:-1.116000px;}
._3_c00238{width:1.576800px;}
._4_c00238{width:3.283200px;}
.fc2_c00238{color:rgb(32,32,32);}
.fc1_c00238{color:rgb(232,86,17);}
.fc0_c00238{color:rgb(60,60,59);}
.fs1_c00238{font-size:42.000000px;}
.fs0_c00238{font-size:60.000000px;}
.fs3_c00238{font-size:72.000000px;}
.fs2_c00238{font-size:84.000000px;}
.y0_c00238{bottom:0.000000px;}
.y1_c00238{bottom:41.250000px;}
.y15_c00238{bottom:226.316700px;}
.y14_c00238{bottom:256.322700px;}
.y13_c00238{bottom:286.328700px;}
.y12_c00238{bottom:316.334700px;}
.y11_c00238{bottom:376.334700px;}
.y10_c00238{bottom:466.316700px;}
.yf_c00238{bottom:496.322700px;}
.ye_c00238{bottom:526.328700px;}
.yd_c00238{bottom:556.334700px;}
.yc_c00238{bottom:616.334700px;}
.yb_c00238{bottom:706.286700px;}
.ya_c00238{bottom:736.292700px;}
.y9_c00238{bottom:766.298700px;}
.y8_c00238{bottom:796.304700px;}
.y7_c00238{bottom:826.310700px;}
.y6_c00238{bottom:856.316700px;}
.y5_c00238{bottom:886.322700px;}
.y4_c00238{bottom:916.328700px;}
.y3_c00238{bottom:946.334700px;}
.y2_c00238{bottom:1006.334700px;}
.h2_c00238{height:54.000000px;}
.h4_c00238{height:64.800000px;}
.h3_c00238{height:78.540000px;}
.h0_c00238{height:1262.835000px;}
.h1_c00238{height:1263.000000px;}
.w0_c00238{width:892.914000px;}
.w1_c00238{width:893.250000px;}
.x0_c00238{left:0.000000px;}
.x2_c00238{left:90.000000px;}
.x3_c00238{left:106.500000px;}
.x1_c00238{left:786.788700px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls1_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:0.640000pt;}
.ls2_c00238{letter-spacing:0.746667pt;}
.ws0_c00238{word-spacing:-9.066667pt;}
.ws7_c00238{word-spacing:-2.432000pt;}
.wsa_c00238{word-spacing:-1.664000pt;}
.ws5_c00238{word-spacing:-1.152000pt;}
.ws2_c00238{word-spacing:-0.746667pt;}
.ws10_c00238{word-spacing:-0.640000pt;}
.ws1_c00238{word-spacing:0.000000pt;}
.ws8_c00238{word-spacing:0.192000pt;}
.ws3_c00238{word-spacing:1.280000pt;}
.wse_c00238{word-spacing:1.472000pt;}
.wsd_c00238{word-spacing:2.048000pt;}
.ws6_c00238{word-spacing:2.560000pt;}
.wsf_c00238{word-spacing:4.224000pt;}
.wsb_c00238{word-spacing:6.976000pt;}
.ws9_c00238{word-spacing:9.152000pt;}
.ws4_c00238{word-spacing:9.664000pt;}
.wsc_c00238{word-spacing:10.816000pt;}
._0_c00238{margin-left:-426.965867pt;}
._1_c00238{margin-left:-3.733333pt;}
._2_c00238{margin-left:-1.920000pt;}
._5_c00238{margin-left:-0.992000pt;}
._3_c00238{width:1.401600pt;}
._4_c00238{width:2.918400pt;}
.fs1_c00238{font-size:37.333333pt;}
.fs0_c00238{font-size:53.333333pt;}
.fs3_c00238{font-size:64.000000pt;}
.fs2_c00238{font-size:74.666667pt;}
.y0_c00238{bottom:0.000000pt;}
.y1_c00238{bottom:36.666667pt;}
.y15_c00238{bottom:201.170400pt;}
.y14_c00238{bottom:227.842400pt;}
.y13_c00238{bottom:254.514400pt;}
.y12_c00238{bottom:281.186400pt;}
.y11_c00238{bottom:334.519733pt;}
.y10_c00238{bottom:414.503733pt;}
.yf_c00238{bottom:441.175733pt;}
.ye_c00238{bottom:467.847733pt;}
.yd_c00238{bottom:494.519733pt;}
.yc_c00238{bottom:547.853067pt;}
.yb_c00238{bottom:627.810400pt;}
.ya_c00238{bottom:654.482400pt;}
.y9_c00238{bottom:681.154400pt;}
.y8_c00238{bottom:707.826400pt;}
.y7_c00238{bottom:734.498400pt;}
.y6_c00238{bottom:761.170400pt;}
.y5_c00238{bottom:787.842400pt;}
.y4_c00238{bottom:814.514400pt;}
.y3_c00238{bottom:841.186400pt;}
.y2_c00238{bottom:894.519733pt;}
.h2_c00238{height:48.000000pt;}
.h4_c00238{height:57.600000pt;}
.h3_c00238{height:69.813333pt;}
.h0_c00238{height:1122.520000pt;}
.h1_c00238{height:1122.666667pt;}
.w0_c00238{width:793.701333pt;}
.w1_c00238{width:794.000000pt;}
.x0_c00238{left:0.000000pt;}
.x2_c00238{left:80.000000pt;}
.x3_c00238{left:94.666667pt;}
.x1_c00238{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_687f4f7c0414ae5fc6b8f254.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.161000;font-style: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);}
.m1_c00239{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls5_c00239{letter-spacing:-0.324000px;}
.ls4_c00239{letter-spacing:0.000000px;}
.ls0_c00239{letter-spacing:0.720000px;}
.ls1_c00239{letter-spacing:0.840000px;}
.ls3_c00239{letter-spacing:1.500000px;}
.ls2_c00239{letter-spacing:1.650000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00239{word-spacing:-21.276000px;}
.ws2_c00239{word-spacing:-17.640000px;}
.ws3_c00239{word-spacing:-14.850000px;}
.ws0_c00239{word-spacing:-10.200000px;}
.ws10_c00239{word-spacing:-4.392000px;}
.ws7_c00239{word-spacing:-3.744000px;}
.wsd_c00239{word-spacing:-2.376000px;}
.wsb_c00239{word-spacing:-2.232000px;}
.wse_c00239{word-spacing:-2.016000px;}
.wsc_c00239{word-spacing:-1.872000px;}
.ws12_c00239{word-spacing:-1.500000px;}
.ws5_c00239{word-spacing:-0.840000px;}
.ws4_c00239{word-spacing:0.000000px;}
.ws8_c00239{word-spacing:1.152000px;}
.ws6_c00239{word-spacing:1.656000px;}
.wsa_c00239{word-spacing:4.536000px;}
.wsf_c00239{word-spacing:4.824000px;}
.ws11_c00239{word-spacing:5.400000px;}
.ws9_c00239{word-spacing:9.720000px;}
._0_c00239{margin-left:-480.337200px;}
._1_c00239{margin-left:-4.200000px;}
._3_c00239{margin-left:-2.160000px;}
._2_c00239{margin-left:-1.134000px;}
._4_c00239{width:1.101600px;}
._5_c00239{width:2.342400px;}
._6_c00239{width:4.968000px;}
.fc3_c00239{color:rgb(32,32,32);}
.fc2_c00239{color:rgb(233,83,14);}
.fc1_c00239{color:rgb(232,86,17);}
.fc4_c00239{color:rgb(157,157,156);}
.fc0_c00239{color:rgb(60,60,59);}
.fs1_c00239{font-size:42.000000px;}
.fs0_c00239{font-size:60.000000px;}
.fs5_c00239{font-size:66.000000px;}
.fs4_c00239{font-size:72.000000px;}
.fs3_c00239{font-size:84.000000px;}
.fs2_c00239{font-size:108.000000px;}
.y0_c00239{bottom:0.000000px;}
.y1_c00239{bottom:41.250000px;}
.y11_c00239{bottom:376.316700px;}
.y10_c00239{bottom:406.322700px;}
.yf_c00239{bottom:436.328700px;}
.ye_c00239{bottom:466.334700px;}
.yd_c00239{bottom:526.334700px;}
.yc_c00239{bottom:616.286700px;}
.yb_c00239{bottom:646.292700px;}
.ya_c00239{bottom:676.298700px;}
.y9_c00239{bottom:706.304700px;}
.y17_c00239{bottom:706.334700px;}
.y8_c00239{bottom:736.310700px;}
.y16_c00239{bottom:736.334700px;}
.y7_c00239{bottom:766.316700px;}
.y15_c00239{bottom:766.334700px;}
.y6_c00239{bottom:796.322700px;}
.y14_c00239{bottom:796.334700px;}
.y5_c00239{bottom:826.328700px;}
.y13_c00239{bottom:826.334700px;}
.y4_c00239{bottom:856.334700px;}
.y12_c00239{bottom:857.010900px;}
.y3_c00239{bottom:916.334700px;}
.y2_c00239{bottom:1006.334700px;}
.h6_c00239{height:50.292000px;}
.h2_c00239{height:54.000000px;}
.h5_c00239{height:64.800000px;}
.h4_c00239{height:78.540000px;}
.h3_c00239{height:100.980000px;}
.h0_c00239{height:1262.835000px;}
.h1_c00239{height:1263.000000px;}
.w0_c00239{width:892.914000px;}
.w1_c00239{width:893.250000px;}
.x0_c00239{left:0.000000px;}
.x2_c00239{left:82.500000px;}
.x3_c00239{left:90.000000px;}
.x4_c00239{left:106.500000px;}
.x5_c00239{left:675.611100px;}
.x1_c00239{left:785.828850px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls5_c00239{letter-spacing:-0.288000pt;}
.ls4_c00239{letter-spacing:0.000000pt;}
.ls0_c00239{letter-spacing:0.640000pt;}
.ls1_c00239{letter-spacing:0.746667pt;}
.ls3_c00239{letter-spacing:1.333333pt;}
.ls2_c00239{letter-spacing:1.466667pt;}
.ws1_c00239{word-spacing:-18.912000pt;}
.ws2_c00239{word-spacing:-15.680000pt;}
.ws3_c00239{word-spacing:-13.200000pt;}
.ws0_c00239{word-spacing:-9.066667pt;}
.ws10_c00239{word-spacing:-3.904000pt;}
.ws7_c00239{word-spacing:-3.328000pt;}
.wsd_c00239{word-spacing:-2.112000pt;}
.wsb_c00239{word-spacing:-1.984000pt;}
.wse_c00239{word-spacing:-1.792000pt;}
.wsc_c00239{word-spacing:-1.664000pt;}
.ws12_c00239{word-spacing:-1.333333pt;}
.ws5_c00239{word-spacing:-0.746667pt;}
.ws4_c00239{word-spacing:0.000000pt;}
.ws8_c00239{word-spacing:1.024000pt;}
.ws6_c00239{word-spacing:1.472000pt;}
.wsa_c00239{word-spacing:4.032000pt;}
.wsf_c00239{word-spacing:4.288000pt;}
.ws11_c00239{word-spacing:4.800000pt;}
.ws9_c00239{word-spacing:8.640000pt;}
._0_c00239{margin-left:-426.966400pt;}
._1_c00239{margin-left:-3.733333pt;}
._3_c00239{margin-left:-1.920000pt;}
._2_c00239{margin-left:-1.008000pt;}
._4_c00239{width:0.979200pt;}
._5_c00239{width:2.082133pt;}
._6_c00239{width:4.416000pt;}
.fs1_c00239{font-size:37.333333pt;}
.fs0_c00239{font-size:53.333333pt;}
.fs5_c00239{font-size:58.666667pt;}
.fs4_c00239{font-size:64.000000pt;}
.fs3_c00239{font-size:74.666667pt;}
.fs2_c00239{font-size:96.000000pt;}
.y0_c00239{bottom:0.000000pt;}
.y1_c00239{bottom:36.666667pt;}
.y11_c00239{bottom:334.503733pt;}
.y10_c00239{bottom:361.175733pt;}
.yf_c00239{bottom:387.847733pt;}
.ye_c00239{bottom:414.519733pt;}
.yd_c00239{bottom:467.853067pt;}
.yc_c00239{bottom:547.810400pt;}
.yb_c00239{bottom:574.482400pt;}
.ya_c00239{bottom:601.154400pt;}
.y9_c00239{bottom:627.826400pt;}
.y17_c00239{bottom:627.853067pt;}
.y8_c00239{bottom:654.498400pt;}
.y16_c00239{bottom:654.519733pt;}
.y7_c00239{bottom:681.170400pt;}
.y15_c00239{bottom:681.186400pt;}
.y6_c00239{bottom:707.842400pt;}
.y14_c00239{bottom:707.853067pt;}
.y5_c00239{bottom:734.514400pt;}
.y13_c00239{bottom:734.519733pt;}
.y4_c00239{bottom:761.186400pt;}
.y12_c00239{bottom:761.787467pt;}
.y3_c00239{bottom:814.519733pt;}
.y2_c00239{bottom:894.519733pt;}
.h6_c00239{height:44.704000pt;}
.h2_c00239{height:48.000000pt;}
.h5_c00239{height:57.600000pt;}
.h4_c00239{height:69.813333pt;}
.h3_c00239{height:89.760000pt;}
.h0_c00239{height:1122.520000pt;}
.h1_c00239{height:1122.666667pt;}
.w0_c00239{width:793.701333pt;}
.w1_c00239{width:794.000000pt;}
.x0_c00239{left:0.000000pt;}
.x2_c00239{left:73.333333pt;}
.x3_c00239{left:80.000000pt;}
.x4_c00239{left:94.666667pt;}
.x5_c00239{left:600.543200pt;}
.x1_c00239{left:698.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc04a28aa7b69d9b6e0497a8.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.199000;font-style: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);}
.m1_c00240{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls1_c00240{letter-spacing:0.000000px;}
.ls0_c00240{letter-spacing:0.720000px;}
.ls2_c00240{letter-spacing:0.840000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00240{word-spacing:-10.200000px;}
.ws2_c00240{word-spacing:-0.840000px;}
.ws1_c00240{word-spacing:0.000000px;}
.ws9_c00240{word-spacing:0.072000px;}
.wsa_c00240{word-spacing:2.016000px;}
.wsc_c00240{word-spacing:3.672000px;}
.wse_c00240{word-spacing:4.608000px;}
.ws6_c00240{word-spacing:9.216000px;}
.ws5_c00240{word-spacing:9.648000px;}
.wsb_c00240{word-spacing:10.800000px;}
.wsd_c00240{word-spacing:11.664000px;}
.ws3_c00240{word-spacing:16.200000px;}
.ws8_c00240{word-spacing:18.576000px;}
.ws4_c00240{word-spacing:19.656000px;}
.ws7_c00240{word-spacing:24.120000px;}
._0_c00240{margin-left:-480.337200px;}
._6_c00240{margin-left:-6.984000px;}
._3_c00240{margin-left:-5.644800px;}
._1_c00240{margin-left:-4.200000px;}
._4_c00240{margin-left:-3.086400px;}
._2_c00240{margin-left:-1.440000px;}
._5_c00240{width:1.221600px;}
.fc2_c00240{color:rgb(32,32,32);}
.fc1_c00240{color:rgb(232,86,17);}
.fc0_c00240{color:rgb(60,60,59);}
.fs1_c00240{font-size:42.000000px;}
.fs0_c00240{font-size:60.000000px;}
.fs3_c00240{font-size:72.000000px;}
.fs2_c00240{font-size:84.000000px;}
.y0_c00240{bottom:0.000000px;}
.y1_c00240{bottom:41.250000px;}
.y14_c00240{bottom:256.322700px;}
.y13_c00240{bottom:286.328700px;}
.y12_c00240{bottom:316.334700px;}
.y11_c00240{bottom:376.334700px;}
.y10_c00240{bottom:466.322700px;}
.yf_c00240{bottom:496.328700px;}
.ye_c00240{bottom:526.334700px;}
.yd_c00240{bottom:586.334700px;}
.yc_c00240{bottom:676.280700px;}
.yb_c00240{bottom:706.286700px;}
.ya_c00240{bottom:736.292700px;}
.y9_c00240{bottom:766.298700px;}
.y8_c00240{bottom:796.304700px;}
.y7_c00240{bottom:826.310700px;}
.y6_c00240{bottom:856.316700px;}
.y5_c00240{bottom:886.322700px;}
.y4_c00240{bottom:916.328700px;}
.y3_c00240{bottom:946.334700px;}
.y2_c00240{bottom:1006.334700px;}
.h2_c00240{height:54.000000px;}
.h4_c00240{height:64.800000px;}
.h3_c00240{height:78.540000px;}
.h0_c00240{height:1262.835000px;}
.h1_c00240{height:1263.000000px;}
.w0_c00240{width:892.914000px;}
.w1_c00240{width:893.250000px;}
.x0_c00240{left:0.000000px;}
.x2_c00240{left:90.000000px;}
.x3_c00240{left:106.500000px;}
.x1_c00240{left:789.488850px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls1_c00240{letter-spacing:0.000000pt;}
.ls0_c00240{letter-spacing:0.640000pt;}
.ls2_c00240{letter-spacing:0.746667pt;}
.ws0_c00240{word-spacing:-9.066667pt;}
.ws2_c00240{word-spacing:-0.746667pt;}
.ws1_c00240{word-spacing:0.000000pt;}
.ws9_c00240{word-spacing:0.064000pt;}
.wsa_c00240{word-spacing:1.792000pt;}
.wsc_c00240{word-spacing:3.264000pt;}
.wse_c00240{word-spacing:4.096000pt;}
.ws6_c00240{word-spacing:8.192000pt;}
.ws5_c00240{word-spacing:8.576000pt;}
.wsb_c00240{word-spacing:9.600000pt;}
.wsd_c00240{word-spacing:10.368000pt;}
.ws3_c00240{word-spacing:14.400000pt;}
.ws8_c00240{word-spacing:16.512000pt;}
.ws4_c00240{word-spacing:17.472000pt;}
.ws7_c00240{word-spacing:21.440000pt;}
._0_c00240{margin-left:-426.966400pt;}
._6_c00240{margin-left:-6.208000pt;}
._3_c00240{margin-left:-5.017600pt;}
._1_c00240{margin-left:-3.733333pt;}
._4_c00240{margin-left:-2.743467pt;}
._2_c00240{margin-left:-1.280000pt;}
._5_c00240{width:1.085867pt;}
.fs1_c00240{font-size:37.333333pt;}
.fs0_c00240{font-size:53.333333pt;}
.fs3_c00240{font-size:64.000000pt;}
.fs2_c00240{font-size:74.666667pt;}
.y0_c00240{bottom:0.000000pt;}
.y1_c00240{bottom:36.666667pt;}
.y14_c00240{bottom:227.842400pt;}
.y13_c00240{bottom:254.514400pt;}
.y12_c00240{bottom:281.186400pt;}
.y11_c00240{bottom:334.519733pt;}
.y10_c00240{bottom:414.509067pt;}
.yf_c00240{bottom:441.181067pt;}
.ye_c00240{bottom:467.853067pt;}
.yd_c00240{bottom:521.186400pt;}
.yc_c00240{bottom:601.138400pt;}
.yb_c00240{bottom:627.810400pt;}
.ya_c00240{bottom:654.482400pt;}
.y9_c00240{bottom:681.154400pt;}
.y8_c00240{bottom:707.826400pt;}
.y7_c00240{bottom:734.498400pt;}
.y6_c00240{bottom:761.170400pt;}
.y5_c00240{bottom:787.842400pt;}
.y4_c00240{bottom:814.514400pt;}
.y3_c00240{bottom:841.186400pt;}
.y2_c00240{bottom:894.519733pt;}
.h2_c00240{height:48.000000pt;}
.h4_c00240{height:57.600000pt;}
.h3_c00240{height:69.813333pt;}
.h0_c00240{height:1122.520000pt;}
.h1_c00240{height:1122.666667pt;}
.w0_c00240{width:793.701333pt;}
.w1_c00240{width:794.000000pt;}
.x0_c00240{left:0.000000pt;}
.x2_c00240{left:80.000000pt;}
.x3_c00240{left:94.666667pt;}
.x1_c00240{left:701.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.160000;font-style:normal;font-weight:normal;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_cd2d757d2082251c19f4c788.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00241;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00241{font-family:ff5_c00241;line-height:1.155000;font-style: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);}
.m1_c00241{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls2_c00241{letter-spacing:0.000000px;}
.ls0_c00241{letter-spacing:0.864000px;}
.ls1_c00241{letter-spacing:1.200000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00241{word-spacing:-13.104000px;}
.ws0_c00241{word-spacing:-10.200000px;}
.ws6_c00241{word-spacing:-4.464000px;}
.ws5_c00241{word-spacing:-3.240000px;}
.ws3_c00241{word-spacing:-2.304000px;}
.ws8_c00241{word-spacing:-2.040000px;}
.ws4_c00241{word-spacing:-1.440000px;}
.ws7_c00241{word-spacing:-0.864000px;}
.ws2_c00241{word-spacing:0.000000px;}
._0_c00241{margin-left:-480.336600px;}
._7_c00241{margin-left:-11.400000px;}
._9_c00241{margin-left:-10.104000px;}
._8_c00241{margin-left:-9.000000px;}
._4_c00241{margin-left:-7.344000px;}
._5_c00241{margin-left:-5.760000px;}
._1_c00241{margin-left:-4.200000px;}
._6_c00241{margin-left:-2.520000px;}
._2_c00241{margin-left:-1.440000px;}
._3_c00241{width:2.304000px;}
.fc3_c00241{color:rgb(255,255,255);}
.fc2_c00241{color:rgb(233,83,14);}
.fc1_c00241{color:rgb(232,86,17);}
.fc0_c00241{color:rgb(60,60,59);}
.fs1_c00241{font-size:42.000000px;}
.fs0_c00241{font-size:60.000000px;}
.fs3_c00241{font-size:72.000000px;}
.fs4_c00241{font-size:120.000000px;}
.fs2_c00241{font-size:360.000000px;}
.y0_c00241{bottom:0.000000px;}
.y1_c00241{bottom:41.250000px;}
.yf_c00241{bottom:394.274700px;}
.ye_c00241{bottom:415.280700px;}
.yd_c00241{bottom:436.286700px;}
.yc_c00241{bottom:484.292700px;}
.yb_c00241{bottom:505.298700px;}
.ya_c00241{bottom:526.304700px;}
.y9_c00241{bottom:574.310700px;}
.y8_c00241{bottom:595.316700px;}
.y7_c00241{bottom:616.322700px;}
.y6_c00241{bottom:664.328700px;}
.y5_c00241{bottom:685.334700px;}
.y4_c00241{bottom:706.340700px;}
.y3_c00241{bottom:752.834700px;}
.y12_c00241{bottom:946.334700px;}
.y11_c00241{bottom:976.334700px;}
.y10_c00241{bottom:1006.334700px;}
.y2_c00241{bottom:1093.526700px;}
.h2_c00241{height:54.000000px;}
.h5_c00241{height:64.800000px;}
.h4_c00241{height:66.456000px;}
.h6_c00241{height:112.200000px;}
.h3_c00241{height:324.000000px;}
.h0_c00241{height:1262.835000px;}
.h1_c00241{height:1263.000000px;}
.w0_c00241{width:892.914000px;}
.w1_c00241{width:893.250000px;}
.x0_c00241{left:0.000000px;}
.x2_c00241{left:81.290250px;}
.x3_c00241{left:82.393650px;}
.x5_c00241{left:112.287450px;}
.x4_c00241{left:127.393650px;}
.x1_c00241{left:787.013700px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls2_c00241{letter-spacing:0.000000pt;}
.ls0_c00241{letter-spacing:0.768000pt;}
.ls1_c00241{letter-spacing:1.066667pt;}
.ws1_c00241{word-spacing:-11.648000pt;}
.ws0_c00241{word-spacing:-9.066667pt;}
.ws6_c00241{word-spacing:-3.968000pt;}
.ws5_c00241{word-spacing:-2.880000pt;}
.ws3_c00241{word-spacing:-2.048000pt;}
.ws8_c00241{word-spacing:-1.813333pt;}
.ws4_c00241{word-spacing:-1.280000pt;}
.ws7_c00241{word-spacing:-0.768000pt;}
.ws2_c00241{word-spacing:0.000000pt;}
._0_c00241{margin-left:-426.965867pt;}
._7_c00241{margin-left:-10.133333pt;}
._9_c00241{margin-left:-8.981333pt;}
._8_c00241{margin-left:-8.000000pt;}
._4_c00241{margin-left:-6.528000pt;}
._5_c00241{margin-left:-5.120000pt;}
._1_c00241{margin-left:-3.733333pt;}
._6_c00241{margin-left:-2.240000pt;}
._2_c00241{margin-left:-1.280000pt;}
._3_c00241{width:2.048000pt;}
.fs1_c00241{font-size:37.333333pt;}
.fs0_c00241{font-size:53.333333pt;}
.fs3_c00241{font-size:64.000000pt;}
.fs4_c00241{font-size:106.666667pt;}
.fs2_c00241{font-size:320.000000pt;}
.y0_c00241{bottom:0.000000pt;}
.y1_c00241{bottom:36.666667pt;}
.yf_c00241{bottom:350.466400pt;}
.ye_c00241{bottom:369.138400pt;}
.yd_c00241{bottom:387.810400pt;}
.yc_c00241{bottom:430.482400pt;}
.yb_c00241{bottom:449.154400pt;}
.ya_c00241{bottom:467.826400pt;}
.y9_c00241{bottom:510.498400pt;}
.y8_c00241{bottom:529.170400pt;}
.y7_c00241{bottom:547.842400pt;}
.y6_c00241{bottom:590.514400pt;}
.y5_c00241{bottom:609.186400pt;}
.y4_c00241{bottom:627.858400pt;}
.y3_c00241{bottom:669.186400pt;}
.y12_c00241{bottom:841.186400pt;}
.y11_c00241{bottom:867.853067pt;}
.y10_c00241{bottom:894.519733pt;}
.y2_c00241{bottom:972.023733pt;}
.h2_c00241{height:48.000000pt;}
.h5_c00241{height:57.600000pt;}
.h4_c00241{height:59.072000pt;}
.h6_c00241{height:99.733333pt;}
.h3_c00241{height:288.000000pt;}
.h0_c00241{height:1122.520000pt;}
.h1_c00241{height:1122.666667pt;}
.w0_c00241{width:793.701333pt;}
.w1_c00241{width:794.000000pt;}
.x0_c00241{left:0.000000pt;}
.x2_c00241{left:72.258000pt;}
.x3_c00241{left:73.238800pt;}
.x5_c00241{left:99.811067pt;}
.x4_c00241{left:113.238800pt;}
.x1_c00241{left:699.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.199000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00242;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.024000;font-style: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);}
.m1_c00242{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls5_c00242{letter-spacing:-0.540000px;}
.ls4_c00242{letter-spacing:0.000000px;}
.ls0_c00242{letter-spacing:0.720000px;}
.ls1_c00242{letter-spacing:0.840000px;}
.ls3_c00242{letter-spacing:1.500000px;}
.ls2_c00242{letter-spacing:1.650000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00242{word-spacing:-21.060000px;}
.ws2_c00242{word-spacing:-17.640000px;}
.ws0_c00242{word-spacing:-10.200000px;}
.ws6_c00242{word-spacing:-2.448000px;}
.ws9_c00242{word-spacing:-1.584000px;}
.ws4_c00242{word-spacing:-0.840000px;}
.wsa_c00242{word-spacing:-0.720000px;}
.wsc_c00242{word-spacing:-0.648000px;}
.ws8_c00242{word-spacing:-0.216000px;}
.ws3_c00242{word-spacing:0.000000px;}
.wsb_c00242{word-spacing:0.648000px;}
.ws5_c00242{word-spacing:0.792000px;}
.wse_c00242{word-spacing:5.400000px;}
.wsf_c00242{word-spacing:7.272000px;}
.ws7_c00242{word-spacing:10.080000px;}
.wsd_c00242{word-spacing:10.152000px;}
._0_c00242{margin-left:-480.337200px;}
._1_c00242{margin-left:-4.200000px;}
._2_c00242{margin-left:-1.440000px;}
.fc3_c00242{color:rgb(32,32,32);}
.fc2_c00242{color:rgb(233,83,14);}
.fc1_c00242{color:rgb(232,86,17);}
.fc4_c00242{color:rgb(157,157,156);}
.fc0_c00242{color:rgb(60,60,59);}
.fs1_c00242{font-size:42.000000px;}
.fs0_c00242{font-size:60.000000px;}
.fs5_c00242{font-size:66.000000px;}
.fs4_c00242{font-size:72.000000px;}
.fs3_c00242{font-size:84.000000px;}
.fs2_c00242{font-size:108.000000px;}
.y0_c00242{bottom:0.000000px;}
.y1_c00242{bottom:41.250000px;}
.y12_c00242{bottom:256.310700px;}
.y11_c00242{bottom:286.316700px;}
.y10_c00242{bottom:316.322700px;}
.yf_c00242{bottom:346.328700px;}
.ye_c00242{bottom:376.334700px;}
.yd_c00242{bottom:436.334700px;}
.yc_c00242{bottom:526.328700px;}
.yb_c00242{bottom:556.334700px;}
.ya_c00242{bottom:616.334700px;}
.y9_c00242{bottom:706.304700px;}
.y8_c00242{bottom:736.310700px;}
.y7_c00242{bottom:766.316700px;}
.y6_c00242{bottom:796.322700px;}
.y15_c00242{bottom:796.334700px;}
.y5_c00242{bottom:826.328700px;}
.y14_c00242{bottom:826.334700px;}
.y4_c00242{bottom:856.334700px;}
.y13_c00242{bottom:857.010900px;}
.y3_c00242{bottom:916.334700px;}
.y2_c00242{bottom:1006.334700px;}
.h6_c00242{height:50.292000px;}
.h2_c00242{height:54.000000px;}
.h5_c00242{height:64.800000px;}
.h4_c00242{height:78.540000px;}
.h3_c00242{height:100.980000px;}
.h0_c00242{height:1262.835000px;}
.h1_c00242{height:1263.000000px;}
.w0_c00242{width:892.914000px;}
.w1_c00242{width:893.250000px;}
.x0_c00242{left:0.000000px;}
.x2_c00242{left:82.500000px;}
.x3_c00242{left:90.000000px;}
.x4_c00242{left:106.500000px;}
.x5_c00242{left:675.611100px;}
.x1_c00242{left:786.863850px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls5_c00242{letter-spacing:-0.480000pt;}
.ls4_c00242{letter-spacing:0.000000pt;}
.ls0_c00242{letter-spacing:0.640000pt;}
.ls1_c00242{letter-spacing:0.746667pt;}
.ls3_c00242{letter-spacing:1.333333pt;}
.ls2_c00242{letter-spacing:1.466667pt;}
.ws1_c00242{word-spacing:-18.720000pt;}
.ws2_c00242{word-spacing:-15.680000pt;}
.ws0_c00242{word-spacing:-9.066667pt;}
.ws6_c00242{word-spacing:-2.176000pt;}
.ws9_c00242{word-spacing:-1.408000pt;}
.ws4_c00242{word-spacing:-0.746667pt;}
.wsa_c00242{word-spacing:-0.640000pt;}
.wsc_c00242{word-spacing:-0.576000pt;}
.ws8_c00242{word-spacing:-0.192000pt;}
.ws3_c00242{word-spacing:0.000000pt;}
.wsb_c00242{word-spacing:0.576000pt;}
.ws5_c00242{word-spacing:0.704000pt;}
.wse_c00242{word-spacing:4.800000pt;}
.wsf_c00242{word-spacing:6.464000pt;}
.ws7_c00242{word-spacing:8.960000pt;}
.wsd_c00242{word-spacing:9.024000pt;}
._0_c00242{margin-left:-426.966400pt;}
._1_c00242{margin-left:-3.733333pt;}
._2_c00242{margin-left:-1.280000pt;}
.fs1_c00242{font-size:37.333333pt;}
.fs0_c00242{font-size:53.333333pt;}
.fs5_c00242{font-size:58.666667pt;}
.fs4_c00242{font-size:64.000000pt;}
.fs3_c00242{font-size:74.666667pt;}
.fs2_c00242{font-size:96.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y1_c00242{bottom:36.666667pt;}
.y12_c00242{bottom:227.831733pt;}
.y11_c00242{bottom:254.503733pt;}
.y10_c00242{bottom:281.175733pt;}
.yf_c00242{bottom:307.847733pt;}
.ye_c00242{bottom:334.519733pt;}
.yd_c00242{bottom:387.853067pt;}
.yc_c00242{bottom:467.847733pt;}
.yb_c00242{bottom:494.519733pt;}
.ya_c00242{bottom:547.853067pt;}
.y9_c00242{bottom:627.826400pt;}
.y8_c00242{bottom:654.498400pt;}
.y7_c00242{bottom:681.170400pt;}
.y6_c00242{bottom:707.842400pt;}
.y15_c00242{bottom:707.853067pt;}
.y5_c00242{bottom:734.514400pt;}
.y14_c00242{bottom:734.519733pt;}
.y4_c00242{bottom:761.186400pt;}
.y13_c00242{bottom:761.787467pt;}
.y3_c00242{bottom:814.519733pt;}
.y2_c00242{bottom:894.519733pt;}
.h6_c00242{height:44.704000pt;}
.h2_c00242{height:48.000000pt;}
.h5_c00242{height:57.600000pt;}
.h4_c00242{height:69.813333pt;}
.h3_c00242{height:89.760000pt;}
.h0_c00242{height:1122.520000pt;}
.h1_c00242{height:1122.666667pt;}
.w0_c00242{width:793.701333pt;}
.w1_c00242{width:794.000000pt;}
.x0_c00242{left:0.000000pt;}
.x2_c00242{left:73.333333pt;}
.x3_c00242{left:80.000000pt;}
.x4_c00242{left:94.666667pt;}
.x5_c00242{left:600.543200pt;}
.x1_c00242{left:699.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_69257c7cc4b5a0ad933e588a.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.161000;font-style: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);}
.m1_c00243{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls4_c00243{letter-spacing:0.000000px;}
.ls3_c00243{letter-spacing:0.576000px;}
.ls1_c00243{letter-spacing:0.684000px;}
.ls0_c00243{letter-spacing:0.720000px;}
.ls2_c00243{letter-spacing:0.792000px;}
.ls5_c00243{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws5_c00243{word-spacing:-1.944000px;}
.wse_c00243{word-spacing:-1.008000px;}
.ws2_c00243{word-spacing:-0.840000px;}
.ws6_c00243{word-spacing:-0.720000px;}
.wsa_c00243{word-spacing:-0.648000px;}
.wsf_c00243{word-spacing:-0.072000px;}
.ws1_c00243{word-spacing:0.000000px;}
.ws8_c00243{word-spacing:0.072000px;}
.wsd_c00243{word-spacing:0.648000px;}
.wsb_c00243{word-spacing:2.016000px;}
.wsc_c00243{word-spacing:2.880000px;}
.ws3_c00243{word-spacing:4.968000px;}
.ws4_c00243{word-spacing:6.192000px;}
.ws9_c00243{word-spacing:8.568000px;}
.ws7_c00243{word-spacing:9.000000px;}
._0_c00243{margin-left:-480.336600px;}
._4_c00243{margin-left:-7.272000px;}
._1_c00243{margin-left:-4.200000px;}
._2_c00243{margin-left:-1.440000px;}
._3_c00243{width:9.720000px;}
.fc2_c00243{color:rgb(32,32,32);}
.fc1_c00243{color:rgb(232,86,17);}
.fc0_c00243{color:rgb(60,60,59);}
.fs1_c00243{font-size:42.000000px;}
.fs0_c00243{font-size:60.000000px;}
.fs3_c00243{font-size:72.000000px;}
.fs2_c00243{font-size:84.000000px;}
.y0_c00243{bottom:0.000000px;}
.y1_c00243{bottom:41.250000px;}
.y11_c00243{bottom:436.328700px;}
.y10_c00243{bottom:466.334700px;}
.yf_c00243{bottom:526.334700px;}
.ye_c00243{bottom:616.268700px;}
.yd_c00243{bottom:646.274700px;}
.yc_c00243{bottom:676.280700px;}
.yb_c00243{bottom:706.286700px;}
.ya_c00243{bottom:736.292700px;}
.y9_c00243{bottom:766.298700px;}
.y8_c00243{bottom:796.304700px;}
.y7_c00243{bottom:826.310700px;}
.y6_c00243{bottom:856.316700px;}
.y5_c00243{bottom:886.322700px;}
.y4_c00243{bottom:916.328700px;}
.y3_c00243{bottom:946.334700px;}
.y2_c00243{bottom:1006.334700px;}
.h2_c00243{height:54.000000px;}
.h4_c00243{height:64.800000px;}
.h3_c00243{height:78.540000px;}
.h0_c00243{height:1262.835000px;}
.h1_c00243{height:1263.000000px;}
.w0_c00243{width:892.914000px;}
.w1_c00243{width:893.250000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:90.000000px;}
.x3_c00243{left:106.500000px;}
.x1_c00243{left:785.888700px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls4_c00243{letter-spacing:0.000000pt;}
.ls3_c00243{letter-spacing:0.512000pt;}
.ls1_c00243{letter-spacing:0.608000pt;}
.ls0_c00243{letter-spacing:0.640000pt;}
.ls2_c00243{letter-spacing:0.704000pt;}
.ls5_c00243{letter-spacing:0.746667pt;}
.ws0_c00243{word-spacing:-9.066667pt;}
.ws5_c00243{word-spacing:-1.728000pt;}
.wse_c00243{word-spacing:-0.896000pt;}
.ws2_c00243{word-spacing:-0.746667pt;}
.ws6_c00243{word-spacing:-0.640000pt;}
.wsa_c00243{word-spacing:-0.576000pt;}
.wsf_c00243{word-spacing:-0.064000pt;}
.ws1_c00243{word-spacing:0.000000pt;}
.ws8_c00243{word-spacing:0.064000pt;}
.wsd_c00243{word-spacing:0.576000pt;}
.wsb_c00243{word-spacing:1.792000pt;}
.wsc_c00243{word-spacing:2.560000pt;}
.ws3_c00243{word-spacing:4.416000pt;}
.ws4_c00243{word-spacing:5.504000pt;}
.ws9_c00243{word-spacing:7.616000pt;}
.ws7_c00243{word-spacing:8.000000pt;}
._0_c00243{margin-left:-426.965867pt;}
._4_c00243{margin-left:-6.464000pt;}
._1_c00243{margin-left:-3.733333pt;}
._2_c00243{margin-left:-1.280000pt;}
._3_c00243{width:8.640000pt;}
.fs1_c00243{font-size:37.333333pt;}
.fs0_c00243{font-size:53.333333pt;}
.fs3_c00243{font-size:64.000000pt;}
.fs2_c00243{font-size:74.666667pt;}
.y0_c00243{bottom:0.000000pt;}
.y1_c00243{bottom:36.666667pt;}
.y11_c00243{bottom:387.847733pt;}
.y10_c00243{bottom:414.519733pt;}
.yf_c00243{bottom:467.853067pt;}
.ye_c00243{bottom:547.794400pt;}
.yd_c00243{bottom:574.466400pt;}
.yc_c00243{bottom:601.138400pt;}
.yb_c00243{bottom:627.810400pt;}
.ya_c00243{bottom:654.482400pt;}
.y9_c00243{bottom:681.154400pt;}
.y8_c00243{bottom:707.826400pt;}
.y7_c00243{bottom:734.498400pt;}
.y6_c00243{bottom:761.170400pt;}
.y5_c00243{bottom:787.842400pt;}
.y4_c00243{bottom:814.514400pt;}
.y3_c00243{bottom:841.186400pt;}
.y2_c00243{bottom:894.519733pt;}
.h2_c00243{height:48.000000pt;}
.h4_c00243{height:57.600000pt;}
.h3_c00243{height:69.813333pt;}
.h0_c00243{height:1122.520000pt;}
.h1_c00243{height:1122.666667pt;}
.w0_c00243{width:793.701333pt;}
.w1_c00243{width:794.000000pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:80.000000pt;}
.x3_c00243{left:94.666667pt;}
.x1_c00243{left:698.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc04a28aa7b69d9b6e0497a8.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00244;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:1.161000;font-style: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);}
.m1_c00244{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls5_c00244{letter-spacing:-0.324000px;}
.ls4_c00244{letter-spacing:0.000000px;}
.ls0_c00244{letter-spacing:0.720000px;}
.ls1_c00244{letter-spacing:0.840000px;}
.ls3_c00244{letter-spacing:1.500000px;}
.ls2_c00244{letter-spacing:1.650000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00244{word-spacing:-21.276000px;}
.ws2_c00244{word-spacing:-17.640000px;}
.ws3_c00244{word-spacing:-14.850000px;}
.ws0_c00244{word-spacing:-10.200000px;}
.wsd_c00244{word-spacing:-3.888000px;}
.ws9_c00244{word-spacing:-1.728000px;}
.ws11_c00244{word-spacing:-1.500000px;}
.ws5_c00244{word-spacing:-0.840000px;}
.wsc_c00244{word-spacing:-0.720000px;}
.ws4_c00244{word-spacing:0.000000px;}
.wse_c00244{word-spacing:0.576000px;}
.wsf_c00244{word-spacing:1.368000px;}
.ws10_c00244{word-spacing:2.448000px;}
.wsb_c00244{word-spacing:4.104000px;}
.ws8_c00244{word-spacing:6.480000px;}
.ws6_c00244{word-spacing:6.984000px;}
.ws7_c00244{word-spacing:19.152000px;}
.wsa_c00244{word-spacing:20.736000px;}
._0_c00244{margin-left:-480.336000px;}
._5_c00244{margin-left:-7.070400px;}
._4_c00244{margin-left:-5.760000px;}
._1_c00244{margin-left:-4.200000px;}
._3_c00244{margin-left:-2.412000px;}
._2_c00244{margin-left:-1.134000px;}
.fc3_c00244{color:rgb(32,32,32);}
.fc2_c00244{color:rgb(233,83,14);}
.fc1_c00244{color:rgb(232,86,17);}
.fc4_c00244{color:rgb(157,157,156);}
.fc0_c00244{color:rgb(60,60,59);}
.fs1_c00244{font-size:42.000000px;}
.fs0_c00244{font-size:60.000000px;}
.fs5_c00244{font-size:66.000000px;}
.fs4_c00244{font-size:72.000000px;}
.fs3_c00244{font-size:84.000000px;}
.fs2_c00244{font-size:108.000000px;}
.y0_c00244{bottom:0.000000px;}
.y1_c00244{bottom:41.250000px;}
.y12_c00244{bottom:316.298700px;}
.y11_c00244{bottom:346.304700px;}
.y10_c00244{bottom:376.310700px;}
.yf_c00244{bottom:406.316700px;}
.ye_c00244{bottom:436.322700px;}
.yd_c00244{bottom:466.328700px;}
.yc_c00244{bottom:526.322700px;}
.yb_c00244{bottom:556.328700px;}
.ya_c00244{bottom:586.334700px;}
.y9_c00244{bottom:646.334700px;}
.y8_c00244{bottom:736.310700px;}
.y7_c00244{bottom:766.316700px;}
.y15_c00244{bottom:766.334700px;}
.y6_c00244{bottom:796.322700px;}
.y14_c00244{bottom:796.334700px;}
.y5_c00244{bottom:826.328700px;}
.y13_c00244{bottom:826.334700px;}
.y4_c00244{bottom:856.334700px;}
.y3_c00244{bottom:916.334700px;}
.y2_c00244{bottom:1006.334700px;}
.h6_c00244{height:50.292000px;}
.h2_c00244{height:54.000000px;}
.h5_c00244{height:64.800000px;}
.h4_c00244{height:78.540000px;}
.h3_c00244{height:100.980000px;}
.h0_c00244{height:1262.835000px;}
.h1_c00244{height:1263.000000px;}
.w0_c00244{width:892.914000px;}
.w1_c00244{width:893.250000px;}
.x0_c00244{left:0.000000px;}
.x2_c00244{left:82.500000px;}
.x3_c00244{left:90.000000px;}
.x4_c00244{left:106.500000px;}
.x5_c00244{left:675.611100px;}
.x1_c00244{left:786.938550px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls5_c00244{letter-spacing:-0.288000pt;}
.ls4_c00244{letter-spacing:0.000000pt;}
.ls0_c00244{letter-spacing:0.640000pt;}
.ls1_c00244{letter-spacing:0.746667pt;}
.ls3_c00244{letter-spacing:1.333333pt;}
.ls2_c00244{letter-spacing:1.466667pt;}
.ws1_c00244{word-spacing:-18.912000pt;}
.ws2_c00244{word-spacing:-15.680000pt;}
.ws3_c00244{word-spacing:-13.200000pt;}
.ws0_c00244{word-spacing:-9.066667pt;}
.wsd_c00244{word-spacing:-3.456000pt;}
.ws9_c00244{word-spacing:-1.536000pt;}
.ws11_c00244{word-spacing:-1.333333pt;}
.ws5_c00244{word-spacing:-0.746667pt;}
.wsc_c00244{word-spacing:-0.640000pt;}
.ws4_c00244{word-spacing:0.000000pt;}
.wse_c00244{word-spacing:0.512000pt;}
.wsf_c00244{word-spacing:1.216000pt;}
.ws10_c00244{word-spacing:2.176000pt;}
.wsb_c00244{word-spacing:3.648000pt;}
.ws8_c00244{word-spacing:5.760000pt;}
.ws6_c00244{word-spacing:6.208000pt;}
.ws7_c00244{word-spacing:17.024000pt;}
.wsa_c00244{word-spacing:18.432000pt;}
._0_c00244{margin-left:-426.965333pt;}
._5_c00244{margin-left:-6.284800pt;}
._4_c00244{margin-left:-5.120000pt;}
._1_c00244{margin-left:-3.733333pt;}
._3_c00244{margin-left:-2.144000pt;}
._2_c00244{margin-left:-1.008000pt;}
.fs1_c00244{font-size:37.333333pt;}
.fs0_c00244{font-size:53.333333pt;}
.fs5_c00244{font-size:58.666667pt;}
.fs4_c00244{font-size:64.000000pt;}
.fs3_c00244{font-size:74.666667pt;}
.fs2_c00244{font-size:96.000000pt;}
.y0_c00244{bottom:0.000000pt;}
.y1_c00244{bottom:36.666667pt;}
.y12_c00244{bottom:281.154400pt;}
.y11_c00244{bottom:307.826400pt;}
.y10_c00244{bottom:334.498400pt;}
.yf_c00244{bottom:361.170400pt;}
.ye_c00244{bottom:387.842400pt;}
.yd_c00244{bottom:414.514400pt;}
.yc_c00244{bottom:467.842400pt;}
.yb_c00244{bottom:494.514400pt;}
.ya_c00244{bottom:521.186400pt;}
.y9_c00244{bottom:574.519733pt;}
.y8_c00244{bottom:654.498400pt;}
.y7_c00244{bottom:681.170400pt;}
.y15_c00244{bottom:681.186400pt;}
.y6_c00244{bottom:707.842400pt;}
.y14_c00244{bottom:707.853067pt;}
.y5_c00244{bottom:734.514400pt;}
.y13_c00244{bottom:734.519733pt;}
.y4_c00244{bottom:761.186400pt;}
.y3_c00244{bottom:814.519733pt;}
.y2_c00244{bottom:894.519733pt;}
.h6_c00244{height:44.704000pt;}
.h2_c00244{height:48.000000pt;}
.h5_c00244{height:57.600000pt;}
.h4_c00244{height:69.813333pt;}
.h3_c00244{height:89.760000pt;}
.h0_c00244{height:1122.520000pt;}
.h1_c00244{height:1122.666667pt;}
.w0_c00244{width:793.701333pt;}
.w1_c00244{width:794.000000pt;}
.x0_c00244{left:0.000000pt;}
.x2_c00244{left:73.333333pt;}
.x3_c00244{left:80.000000pt;}
.x4_c00244{left:94.666667pt;}
.x5_c00244{left:600.543200pt;}
.x1_c00244{left:699.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54353bf4d35ff176b58704c8.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00245;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.199000;font-style: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);}
.m1_c00245{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls1_c00245{letter-spacing:0.000000px;}
.ls0_c00245{letter-spacing:0.720000px;}
.ls2_c00245{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsa_c00245{word-spacing:-3.312000px;}
.ws2_c00245{word-spacing:-0.840000px;}
.wsd_c00245{word-spacing:-0.072000px;}
.ws1_c00245{word-spacing:0.000000px;}
.ws7_c00245{word-spacing:1.512000px;}
.wsb_c00245{word-spacing:1.800000px;}
.ws9_c00245{word-spacing:1.944000px;}
.ws3_c00245{word-spacing:2.160000px;}
.ws8_c00245{word-spacing:2.736000px;}
.ws6_c00245{word-spacing:5.256000px;}
.ws4_c00245{word-spacing:6.264000px;}
.wsc_c00245{word-spacing:7.632000px;}
.ws5_c00245{word-spacing:13.392000px;}
._0_c00245{margin-left:-480.336600px;}
._1_c00245{margin-left:-4.200000px;}
._2_c00245{margin-left:-2.232000px;}
.fc2_c00245{color:rgb(32,32,32);}
.fc1_c00245{color:rgb(232,86,17);}
.fc0_c00245{color:rgb(60,60,59);}
.fs1_c00245{font-size:42.000000px;}
.fs0_c00245{font-size:60.000000px;}
.fs3_c00245{font-size:72.000000px;}
.fs2_c00245{font-size:84.000000px;}
.y0_c00245{bottom:0.000000px;}
.y1_c00245{bottom:41.250000px;}
.y11_c00245{bottom:436.328700px;}
.y10_c00245{bottom:466.334700px;}
.yf_c00245{bottom:526.334700px;}
.ye_c00245{bottom:616.268700px;}
.yd_c00245{bottom:646.274700px;}
.yc_c00245{bottom:676.280700px;}
.yb_c00245{bottom:706.286700px;}
.ya_c00245{bottom:736.292700px;}
.y9_c00245{bottom:766.298700px;}
.y8_c00245{bottom:796.304700px;}
.y7_c00245{bottom:826.310700px;}
.y6_c00245{bottom:856.316700px;}
.y5_c00245{bottom:886.322700px;}
.y4_c00245{bottom:916.328700px;}
.y3_c00245{bottom:946.334700px;}
.y2_c00245{bottom:1006.334700px;}
.h2_c00245{height:54.000000px;}
.h4_c00245{height:64.800000px;}
.h3_c00245{height:78.540000px;}
.h0_c00245{height:1262.835000px;}
.h1_c00245{height:1263.000000px;}
.w0_c00245{width:892.914000px;}
.w1_c00245{width:893.250000px;}
.x0_c00245{left:0.000000px;}
.x2_c00245{left:90.000000px;}
.x3_c00245{left:106.500000px;}
.x1_c00245{left:785.813700px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls1_c00245{letter-spacing:0.000000pt;}
.ls0_c00245{letter-spacing:0.640000pt;}
.ls2_c00245{letter-spacing:0.746667pt;}
.ws0_c00245{word-spacing:-9.066667pt;}
.wsa_c00245{word-spacing:-2.944000pt;}
.ws2_c00245{word-spacing:-0.746667pt;}
.wsd_c00245{word-spacing:-0.064000pt;}
.ws1_c00245{word-spacing:0.000000pt;}
.ws7_c00245{word-spacing:1.344000pt;}
.wsb_c00245{word-spacing:1.600000pt;}
.ws9_c00245{word-spacing:1.728000pt;}
.ws3_c00245{word-spacing:1.920000pt;}
.ws8_c00245{word-spacing:2.432000pt;}
.ws6_c00245{word-spacing:4.672000pt;}
.ws4_c00245{word-spacing:5.568000pt;}
.wsc_c00245{word-spacing:6.784000pt;}
.ws5_c00245{word-spacing:11.904000pt;}
._0_c00245{margin-left:-426.965867pt;}
._1_c00245{margin-left:-3.733333pt;}
._2_c00245{margin-left:-1.984000pt;}
.fs1_c00245{font-size:37.333333pt;}
.fs0_c00245{font-size:53.333333pt;}
.fs3_c00245{font-size:64.000000pt;}
.fs2_c00245{font-size:74.666667pt;}
.y0_c00245{bottom:0.000000pt;}
.y1_c00245{bottom:36.666667pt;}
.y11_c00245{bottom:387.847733pt;}
.y10_c00245{bottom:414.519733pt;}
.yf_c00245{bottom:467.853067pt;}
.ye_c00245{bottom:547.794400pt;}
.yd_c00245{bottom:574.466400pt;}
.yc_c00245{bottom:601.138400pt;}
.yb_c00245{bottom:627.810400pt;}
.ya_c00245{bottom:654.482400pt;}
.y9_c00245{bottom:681.154400pt;}
.y8_c00245{bottom:707.826400pt;}
.y7_c00245{bottom:734.498400pt;}
.y6_c00245{bottom:761.170400pt;}
.y5_c00245{bottom:787.842400pt;}
.y4_c00245{bottom:814.514400pt;}
.y3_c00245{bottom:841.186400pt;}
.y2_c00245{bottom:894.519733pt;}
.h2_c00245{height:48.000000pt;}
.h4_c00245{height:57.600000pt;}
.h3_c00245{height:69.813333pt;}
.h0_c00245{height:1122.520000pt;}
.h1_c00245{height:1122.666667pt;}
.w0_c00245{width:793.701333pt;}
.w1_c00245{width:794.000000pt;}
.x0_c00245{left:0.000000pt;}
.x2_c00245{left:80.000000pt;}
.x3_c00245{left:94.666667pt;}
.x1_c00245{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.160000;font-style:normal;font-weight:normal;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_d071661ec5c75d861a68aa6b.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_4829a453264cbee9cb480ba0.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00246;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00246{font-family:ff5_c00246;line-height:1.155000;font-style: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);}
.m1_c00246{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls2_c00246{letter-spacing:0.000000px;}
.ls0_c00246{letter-spacing:0.864000px;}
.ls1_c00246{letter-spacing:1.200000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00246{word-spacing:-13.104000px;}
.ws4_c00246{word-spacing:-10.440000px;}
.ws0_c00246{word-spacing:-10.200000px;}
.ws3_c00246{word-spacing:-2.880000px;}
.ws2_c00246{word-spacing:0.000000px;}
._0_c00246{margin-left:-480.336600px;}
._6_c00246{margin-left:-16.800000px;}
._7_c00246{margin-left:-12.360000px;}
._5_c00246{margin-left:-10.800000px;}
._4_c00246{margin-left:-9.000000px;}
._3_c00246{margin-left:-6.600000px;}
._1_c00246{margin-left:-4.200000px;}
._8_c00246{margin-left:-3.000000px;}
._2_c00246{margin-left:-1.440000px;}
.fc3_c00246{color:rgb(255,255,255);}
.fc2_c00246{color:rgb(233,83,14);}
.fc1_c00246{color:rgb(232,86,17);}
.fc0_c00246{color:rgb(60,60,59);}
.fs1_c00246{font-size:42.000000px;}
.fs0_c00246{font-size:60.000000px;}
.fs3_c00246{font-size:72.000000px;}
.fs4_c00246{font-size:120.000000px;}
.fs2_c00246{font-size:360.000000px;}
.y0_c00246{bottom:0.000000px;}
.y1_c00246{bottom:41.250000px;}
.y6_c00246{bottom:544.328700px;}
.y5_c00246{bottom:565.334700px;}
.y4_c00246{bottom:586.340700px;}
.y3_c00246{bottom:632.834700px;}
.ye_c00246{bottom:766.334700px;}
.yd_c00246{bottom:796.334700px;}
.yc_c00246{bottom:826.334700px;}
.yb_c00246{bottom:856.334700px;}
.ya_c00246{bottom:916.334700px;}
.y9_c00246{bottom:946.334700px;}
.y8_c00246{bottom:976.334700px;}
.y7_c00246{bottom:1006.334700px;}
.y2_c00246{bottom:1093.526700px;}
.h2_c00246{height:54.000000px;}
.h5_c00246{height:64.800000px;}
.h4_c00246{height:66.456000px;}
.h7_c00246{height:108.000000px;}
.h6_c00246{height:112.200000px;}
.h3_c00246{height:324.000000px;}
.h0_c00246{height:1262.835000px;}
.h1_c00246{height:1263.000000px;}
.w0_c00246{width:892.914000px;}
.w1_c00246{width:893.250000px;}
.x0_c00246{left:0.000000px;}
.x2_c00246{left:81.290250px;}
.x3_c00246{left:82.393650px;}
.x5_c00246{left:112.287450px;}
.x4_c00246{left:127.393650px;}
.x1_c00246{left:787.913700px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls2_c00246{letter-spacing:0.000000pt;}
.ls0_c00246{letter-spacing:0.768000pt;}
.ls1_c00246{letter-spacing:1.066667pt;}
.ws1_c00246{word-spacing:-11.648000pt;}
.ws4_c00246{word-spacing:-9.280000pt;}
.ws0_c00246{word-spacing:-9.066667pt;}
.ws3_c00246{word-spacing:-2.560000pt;}
.ws2_c00246{word-spacing:0.000000pt;}
._0_c00246{margin-left:-426.965867pt;}
._6_c00246{margin-left:-14.933333pt;}
._7_c00246{margin-left:-10.986667pt;}
._5_c00246{margin-left:-9.600000pt;}
._4_c00246{margin-left:-8.000000pt;}
._3_c00246{margin-left:-5.866667pt;}
._1_c00246{margin-left:-3.733333pt;}
._8_c00246{margin-left:-2.666667pt;}
._2_c00246{margin-left:-1.280000pt;}
.fs1_c00246{font-size:37.333333pt;}
.fs0_c00246{font-size:53.333333pt;}
.fs3_c00246{font-size:64.000000pt;}
.fs4_c00246{font-size:106.666667pt;}
.fs2_c00246{font-size:320.000000pt;}
.y0_c00246{bottom:0.000000pt;}
.y1_c00246{bottom:36.666667pt;}
.y6_c00246{bottom:483.847733pt;}
.y5_c00246{bottom:502.519733pt;}
.y4_c00246{bottom:521.191733pt;}
.y3_c00246{bottom:562.519733pt;}
.ye_c00246{bottom:681.186400pt;}
.yd_c00246{bottom:707.853067pt;}
.yc_c00246{bottom:734.519733pt;}
.yb_c00246{bottom:761.186400pt;}
.ya_c00246{bottom:814.519733pt;}
.y9_c00246{bottom:841.186400pt;}
.y8_c00246{bottom:867.853067pt;}
.y7_c00246{bottom:894.519733pt;}
.y2_c00246{bottom:972.023733pt;}
.h2_c00246{height:48.000000pt;}
.h5_c00246{height:57.600000pt;}
.h4_c00246{height:59.072000pt;}
.h7_c00246{height:96.000000pt;}
.h6_c00246{height:99.733333pt;}
.h3_c00246{height:288.000000pt;}
.h0_c00246{height:1122.520000pt;}
.h1_c00246{height:1122.666667pt;}
.w0_c00246{width:793.701333pt;}
.w1_c00246{width:794.000000pt;}
.x0_c00246{left:0.000000pt;}
.x2_c00246{left:72.258000pt;}
.x3_c00246{left:73.238800pt;}
.x5_c00246{left:99.811067pt;}
.x4_c00246{left:113.238800pt;}
.x1_c00246{left:700.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.161000;font-style: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);}
.m1_c00247{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls5_c00247{letter-spacing:-0.540000px;}
.ls4_c00247{letter-spacing:0.000000px;}
.ls0_c00247{letter-spacing:0.720000px;}
.ls1_c00247{letter-spacing:0.840000px;}
.ls3_c00247{letter-spacing:1.500000px;}
.ls2_c00247{letter-spacing:1.650000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00247{word-spacing:-21.060000px;}
.ws2_c00247{word-spacing:-17.640000px;}
.ws0_c00247{word-spacing:-10.200000px;}
.ws12_c00247{word-spacing:-1.500000px;}
.wsd_c00247{word-spacing:-1.440000px;}
.ws5_c00247{word-spacing:-1.224000px;}
.ws4_c00247{word-spacing:-0.840000px;}
.ws3_c00247{word-spacing:0.000000px;}
.ws8_c00247{word-spacing:0.360000px;}
.wse_c00247{word-spacing:1.152000px;}
.ws10_c00247{word-spacing:1.800000px;}
.ws11_c00247{word-spacing:1.872000px;}
.wsb_c00247{word-spacing:3.312000px;}
.wsc_c00247{word-spacing:3.672000px;}
.wsf_c00247{word-spacing:4.032000px;}
.ws6_c00247{word-spacing:5.616000px;}
.wsa_c00247{word-spacing:6.264000px;}
.ws7_c00247{word-spacing:6.984000px;}
.ws9_c00247{word-spacing:8.712000px;}
._0_c00247{margin-left:-480.336600px;}
._5_c00247{margin-left:-6.480000px;}
._1_c00247{margin-left:-4.200000px;}
._3_c00247{margin-left:-2.611200px;}
._2_c00247{margin-left:-1.440000px;}
._4_c00247{width:2.546400px;}
.fc3_c00247{color:rgb(32,32,32);}
.fc2_c00247{color:rgb(233,83,14);}
.fc1_c00247{color:rgb(232,86,17);}
.fc4_c00247{color:rgb(157,157,156);}
.fc0_c00247{color:rgb(60,60,59);}
.fs1_c00247{font-size:42.000000px;}
.fs0_c00247{font-size:60.000000px;}
.fs5_c00247{font-size:66.000000px;}
.fs4_c00247{font-size:72.000000px;}
.fs3_c00247{font-size:84.000000px;}
.fs2_c00247{font-size:108.000000px;}
.y0_c00247{bottom:0.000000px;}
.y1_c00247{bottom:41.250000px;}
.y15_c00247{bottom:166.292700px;}
.y14_c00247{bottom:196.298700px;}
.y13_c00247{bottom:226.304700px;}
.y12_c00247{bottom:256.310700px;}
.y11_c00247{bottom:286.316700px;}
.y10_c00247{bottom:316.322700px;}
.yf_c00247{bottom:346.328700px;}
.ye_c00247{bottom:376.334700px;}
.yd_c00247{bottom:436.334700px;}
.yc_c00247{bottom:526.316700px;}
.yb_c00247{bottom:556.322700px;}
.ya_c00247{bottom:586.328700px;}
.y9_c00247{bottom:616.334700px;}
.y8_c00247{bottom:676.334700px;}
.y1b_c00247{bottom:706.334700px;}
.y1a_c00247{bottom:736.334700px;}
.y7_c00247{bottom:766.316700px;}
.y19_c00247{bottom:766.334700px;}
.y6_c00247{bottom:796.322700px;}
.y18_c00247{bottom:796.334700px;}
.y5_c00247{bottom:826.328700px;}
.y17_c00247{bottom:826.334700px;}
.y4_c00247{bottom:856.334700px;}
.y16_c00247{bottom:857.010900px;}
.y3_c00247{bottom:916.334700px;}
.y2_c00247{bottom:1006.334700px;}
.h6_c00247{height:50.292000px;}
.h2_c00247{height:54.000000px;}
.h5_c00247{height:64.800000px;}
.h4_c00247{height:78.540000px;}
.h3_c00247{height:100.980000px;}
.h0_c00247{height:1262.835000px;}
.h1_c00247{height:1263.000000px;}
.w0_c00247{width:892.914000px;}
.w1_c00247{width:893.250000px;}
.x0_c00247{left:0.000000px;}
.x2_c00247{left:82.500000px;}
.x3_c00247{left:90.000000px;}
.x4_c00247{left:106.500000px;}
.x5_c00247{left:675.611100px;}
.x1_c00247{left:785.888700px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls5_c00247{letter-spacing:-0.480000pt;}
.ls4_c00247{letter-spacing:0.000000pt;}
.ls0_c00247{letter-spacing:0.640000pt;}
.ls1_c00247{letter-spacing:0.746667pt;}
.ls3_c00247{letter-spacing:1.333333pt;}
.ls2_c00247{letter-spacing:1.466667pt;}
.ws1_c00247{word-spacing:-18.720000pt;}
.ws2_c00247{word-spacing:-15.680000pt;}
.ws0_c00247{word-spacing:-9.066667pt;}
.ws12_c00247{word-spacing:-1.333333pt;}
.wsd_c00247{word-spacing:-1.280000pt;}
.ws5_c00247{word-spacing:-1.088000pt;}
.ws4_c00247{word-spacing:-0.746667pt;}
.ws3_c00247{word-spacing:0.000000pt;}
.ws8_c00247{word-spacing:0.320000pt;}
.wse_c00247{word-spacing:1.024000pt;}
.ws10_c00247{word-spacing:1.600000pt;}
.ws11_c00247{word-spacing:1.664000pt;}
.wsb_c00247{word-spacing:2.944000pt;}
.wsc_c00247{word-spacing:3.264000pt;}
.wsf_c00247{word-spacing:3.584000pt;}
.ws6_c00247{word-spacing:4.992000pt;}
.wsa_c00247{word-spacing:5.568000pt;}
.ws7_c00247{word-spacing:6.208000pt;}
.ws9_c00247{word-spacing:7.744000pt;}
._0_c00247{margin-left:-426.965867pt;}
._5_c00247{margin-left:-5.760000pt;}
._1_c00247{margin-left:-3.733333pt;}
._3_c00247{margin-left:-2.321067pt;}
._2_c00247{margin-left:-1.280000pt;}
._4_c00247{width:2.263467pt;}
.fs1_c00247{font-size:37.333333pt;}
.fs0_c00247{font-size:53.333333pt;}
.fs5_c00247{font-size:58.666667pt;}
.fs4_c00247{font-size:64.000000pt;}
.fs3_c00247{font-size:74.666667pt;}
.fs2_c00247{font-size:96.000000pt;}
.y0_c00247{bottom:0.000000pt;}
.y1_c00247{bottom:36.666667pt;}
.y15_c00247{bottom:147.815733pt;}
.y14_c00247{bottom:174.487733pt;}
.y13_c00247{bottom:201.159733pt;}
.y12_c00247{bottom:227.831733pt;}
.y11_c00247{bottom:254.503733pt;}
.y10_c00247{bottom:281.175733pt;}
.yf_c00247{bottom:307.847733pt;}
.ye_c00247{bottom:334.519733pt;}
.yd_c00247{bottom:387.853067pt;}
.yc_c00247{bottom:467.837067pt;}
.yb_c00247{bottom:494.509067pt;}
.ya_c00247{bottom:521.181067pt;}
.y9_c00247{bottom:547.853067pt;}
.y8_c00247{bottom:601.186400pt;}
.y1b_c00247{bottom:627.853067pt;}
.y1a_c00247{bottom:654.519733pt;}
.y7_c00247{bottom:681.170400pt;}
.y19_c00247{bottom:681.186400pt;}
.y6_c00247{bottom:707.842400pt;}
.y18_c00247{bottom:707.853067pt;}
.y5_c00247{bottom:734.514400pt;}
.y17_c00247{bottom:734.519733pt;}
.y4_c00247{bottom:761.186400pt;}
.y16_c00247{bottom:761.787467pt;}
.y3_c00247{bottom:814.519733pt;}
.y2_c00247{bottom:894.519733pt;}
.h6_c00247{height:44.704000pt;}
.h2_c00247{height:48.000000pt;}
.h5_c00247{height:57.600000pt;}
.h4_c00247{height:69.813333pt;}
.h3_c00247{height:89.760000pt;}
.h0_c00247{height:1122.520000pt;}
.h1_c00247{height:1122.666667pt;}
.w0_c00247{width:793.701333pt;}
.w1_c00247{width:794.000000pt;}
.x0_c00247{left:0.000000pt;}
.x2_c00247{left:73.333333pt;}
.x3_c00247{left:80.000000pt;}
.x4_c00247{left:94.666667pt;}
.x5_c00247{left:600.543200pt;}
.x1_c00247{left:698.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.199000;font-style: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);}
.m1_c00248{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls1_c00248{letter-spacing:0.000000px;}
.ls0_c00248{letter-spacing:0.720000px;}
.ls2_c00248{letter-spacing:0.840000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00248{word-spacing:-10.200000px;}
.wsc_c00248{word-spacing:-4.824000px;}
.ws10_c00248{word-spacing:-3.312000px;}
.wsd_c00248{word-spacing:-1.872000px;}
.ws2_c00248{word-spacing:-0.840000px;}
.wsb_c00248{word-spacing:-0.720000px;}
.ws1_c00248{word-spacing:0.000000px;}
.wsf_c00248{word-spacing:3.024000px;}
.ws5_c00248{word-spacing:4.032000px;}
.wsa_c00248{word-spacing:4.896000px;}
.ws6_c00248{word-spacing:5.040000px;}
.ws7_c00248{word-spacing:6.480000px;}
.wse_c00248{word-spacing:8.568000px;}
.ws3_c00248{word-spacing:10.296000px;}
.ws9_c00248{word-spacing:14.760000px;}
.ws8_c00248{word-spacing:14.832000px;}
.ws4_c00248{word-spacing:19.224000px;}
._0_c00248{margin-left:-480.336600px;}
._5_c00248{margin-left:-9.352800px;}
._1_c00248{margin-left:-4.200000px;}
._4_c00248{margin-left:-2.887200px;}
._2_c00248{margin-left:-1.440000px;}
._3_c00248{width:1.173600px;}
.fc2_c00248{color:rgb(32,32,32);}
.fc1_c00248{color:rgb(232,86,17);}
.fc0_c00248{color:rgb(60,60,59);}
.fs1_c00248{font-size:42.000000px;}
.fs0_c00248{font-size:60.000000px;}
.fs3_c00248{font-size:72.000000px;}
.fs2_c00248{font-size:84.000000px;}
.y0_c00248{bottom:0.000000px;}
.y1_c00248{bottom:41.250000px;}
.y11_c00248{bottom:436.310700px;}
.y10_c00248{bottom:466.316700px;}
.yf_c00248{bottom:496.322700px;}
.ye_c00248{bottom:526.328700px;}
.yd_c00248{bottom:556.334700px;}
.yc_c00248{bottom:616.334700px;}
.yb_c00248{bottom:706.286700px;}
.ya_c00248{bottom:736.292700px;}
.y9_c00248{bottom:766.298700px;}
.y8_c00248{bottom:796.304700px;}
.y7_c00248{bottom:826.310700px;}
.y6_c00248{bottom:856.316700px;}
.y5_c00248{bottom:886.322700px;}
.y4_c00248{bottom:916.328700px;}
.y3_c00248{bottom:946.334700px;}
.y2_c00248{bottom:1006.334700px;}
.h2_c00248{height:54.000000px;}
.h4_c00248{height:64.800000px;}
.h3_c00248{height:78.540000px;}
.h0_c00248{height:1262.835000px;}
.h1_c00248{height:1263.000000px;}
.w0_c00248{width:892.914000px;}
.w1_c00248{width:893.250000px;}
.x0_c00248{left:0.000000px;}
.x2_c00248{left:90.000000px;}
.x3_c00248{left:106.500000px;}
.x1_c00248{left:785.813700px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls1_c00248{letter-spacing:0.000000pt;}
.ls0_c00248{letter-spacing:0.640000pt;}
.ls2_c00248{letter-spacing:0.746667pt;}
.ws0_c00248{word-spacing:-9.066667pt;}
.wsc_c00248{word-spacing:-4.288000pt;}
.ws10_c00248{word-spacing:-2.944000pt;}
.wsd_c00248{word-spacing:-1.664000pt;}
.ws2_c00248{word-spacing:-0.746667pt;}
.wsb_c00248{word-spacing:-0.640000pt;}
.ws1_c00248{word-spacing:0.000000pt;}
.wsf_c00248{word-spacing:2.688000pt;}
.ws5_c00248{word-spacing:3.584000pt;}
.wsa_c00248{word-spacing:4.352000pt;}
.ws6_c00248{word-spacing:4.480000pt;}
.ws7_c00248{word-spacing:5.760000pt;}
.wse_c00248{word-spacing:7.616000pt;}
.ws3_c00248{word-spacing:9.152000pt;}
.ws9_c00248{word-spacing:13.120000pt;}
.ws8_c00248{word-spacing:13.184000pt;}
.ws4_c00248{word-spacing:17.088000pt;}
._0_c00248{margin-left:-426.965867pt;}
._5_c00248{margin-left:-8.313600pt;}
._1_c00248{margin-left:-3.733333pt;}
._4_c00248{margin-left:-2.566400pt;}
._2_c00248{margin-left:-1.280000pt;}
._3_c00248{width:1.043200pt;}
.fs1_c00248{font-size:37.333333pt;}
.fs0_c00248{font-size:53.333333pt;}
.fs3_c00248{font-size:64.000000pt;}
.fs2_c00248{font-size:74.666667pt;}
.y0_c00248{bottom:0.000000pt;}
.y1_c00248{bottom:36.666667pt;}
.y11_c00248{bottom:387.831733pt;}
.y10_c00248{bottom:414.503733pt;}
.yf_c00248{bottom:441.175733pt;}
.ye_c00248{bottom:467.847733pt;}
.yd_c00248{bottom:494.519733pt;}
.yc_c00248{bottom:547.853067pt;}
.yb_c00248{bottom:627.810400pt;}
.ya_c00248{bottom:654.482400pt;}
.y9_c00248{bottom:681.154400pt;}
.y8_c00248{bottom:707.826400pt;}
.y7_c00248{bottom:734.498400pt;}
.y6_c00248{bottom:761.170400pt;}
.y5_c00248{bottom:787.842400pt;}
.y4_c00248{bottom:814.514400pt;}
.y3_c00248{bottom:841.186400pt;}
.y2_c00248{bottom:894.519733pt;}
.h2_c00248{height:48.000000pt;}
.h4_c00248{height:57.600000pt;}
.h3_c00248{height:69.813333pt;}
.h0_c00248{height:1122.520000pt;}
.h1_c00248{height:1122.666667pt;}
.w0_c00248{width:793.701333pt;}
.w1_c00248{width:794.000000pt;}
.x0_c00248{left:0.000000pt;}
.x2_c00248{left:80.000000pt;}
.x3_c00248{left:94.666667pt;}
.x1_c00248{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_795c1aff8c99ee916373da00.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.160000;font-style:normal;font-weight:normal;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_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.161000;font-style: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);}
.m1_c00249{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls5_c00249{letter-spacing:-0.324000px;}
.ls4_c00249{letter-spacing:0.000000px;}
.ls0_c00249{letter-spacing:0.720000px;}
.ls1_c00249{letter-spacing:0.840000px;}
.ls3_c00249{letter-spacing:1.500000px;}
.ls2_c00249{letter-spacing:1.650000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00249{word-spacing:-21.276000px;}
.ws2_c00249{word-spacing:-14.850000px;}
.ws0_c00249{word-spacing:-10.200000px;}
.ws12_c00249{word-spacing:-4.320000px;}
.wsf_c00249{word-spacing:-2.952000px;}
.ws14_c00249{word-spacing:-1.500000px;}
.ws4_c00249{word-spacing:-0.840000px;}
.ws3_c00249{word-spacing:0.000000px;}
.ws13_c00249{word-spacing:0.360000px;}
.ws11_c00249{word-spacing:1.800000px;}
.ws9_c00249{word-spacing:1.872000px;}
.wsc_c00249{word-spacing:2.016000px;}
.wsb_c00249{word-spacing:3.312000px;}
.wsd_c00249{word-spacing:4.392000px;}
.ws10_c00249{word-spacing:7.344000px;}
.ws7_c00249{word-spacing:7.776000px;}
.wse_c00249{word-spacing:9.144000px;}
.ws8_c00249{word-spacing:11.592000px;}
.wsa_c00249{word-spacing:13.248000px;}
.ws6_c00249{word-spacing:15.120000px;}
.ws5_c00249{word-spacing:30.888000px;}
._0_c00249{margin-left:-480.336600px;}
._4_c00249{margin-left:-7.032000px;}
._5_c00249{margin-left:-5.983200px;}
._1_c00249{margin-left:-4.200000px;}
._3_c00249{margin-left:-2.152800px;}
._2_c00249{margin-left:-1.134000px;}
._7_c00249{width:1.152000px;}
._6_c00249{width:5.047200px;}
.fc3_c00249{color:rgb(32,32,32);}
.fc2_c00249{color:rgb(233,83,14);}
.fc1_c00249{color:rgb(232,86,17);}
.fc4_c00249{color:rgb(157,157,156);}
.fc0_c00249{color:rgb(60,60,59);}
.fs1_c00249{font-size:42.000000px;}
.fs0_c00249{font-size:60.000000px;}
.fs5_c00249{font-size:66.000000px;}
.fs4_c00249{font-size:72.000000px;}
.fs3_c00249{font-size:84.000000px;}
.fs2_c00249{font-size:108.000000px;}
.y0_c00249{bottom:0.000000px;}
.y1_c00249{bottom:41.250000px;}
.y16_c00249{bottom:136.310700px;}
.y15_c00249{bottom:166.316700px;}
.y14_c00249{bottom:196.322700px;}
.y13_c00249{bottom:226.328700px;}
.y12_c00249{bottom:256.334700px;}
.y11_c00249{bottom:316.334700px;}
.y10_c00249{bottom:406.316700px;}
.yf_c00249{bottom:436.322700px;}
.ye_c00249{bottom:466.328700px;}
.yd_c00249{bottom:496.334700px;}
.yc_c00249{bottom:556.334700px;}
.yb_c00249{bottom:646.292700px;}
.ya_c00249{bottom:676.298700px;}
.y9_c00249{bottom:706.304700px;}
.y1c_c00249{bottom:706.334700px;}
.y8_c00249{bottom:736.310700px;}
.y1b_c00249{bottom:736.334700px;}
.y7_c00249{bottom:766.316700px;}
.y1a_c00249{bottom:766.334700px;}
.y6_c00249{bottom:796.322700px;}
.y19_c00249{bottom:796.334700px;}
.y5_c00249{bottom:826.328700px;}
.y18_c00249{bottom:826.334700px;}
.y4_c00249{bottom:856.334700px;}
.y17_c00249{bottom:857.010900px;}
.y3_c00249{bottom:916.334700px;}
.y2_c00249{bottom:1006.334700px;}
.h6_c00249{height:50.292000px;}
.h2_c00249{height:54.000000px;}
.h5_c00249{height:64.800000px;}
.h4_c00249{height:78.540000px;}
.h3_c00249{height:100.980000px;}
.h0_c00249{height:1262.835000px;}
.h1_c00249{height:1263.000000px;}
.w0_c00249{width:892.914000px;}
.w1_c00249{width:893.250000px;}
.x0_c00249{left:0.000000px;}
.x2_c00249{left:82.500000px;}
.x3_c00249{left:90.000000px;}
.x4_c00249{left:106.500000px;}
.x5_c00249{left:675.611100px;}
.x1_c00249{left:786.878700px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls5_c00249{letter-spacing:-0.288000pt;}
.ls4_c00249{letter-spacing:0.000000pt;}
.ls0_c00249{letter-spacing:0.640000pt;}
.ls1_c00249{letter-spacing:0.746667pt;}
.ls3_c00249{letter-spacing:1.333333pt;}
.ls2_c00249{letter-spacing:1.466667pt;}
.ws1_c00249{word-spacing:-18.912000pt;}
.ws2_c00249{word-spacing:-13.200000pt;}
.ws0_c00249{word-spacing:-9.066667pt;}
.ws12_c00249{word-spacing:-3.840000pt;}
.wsf_c00249{word-spacing:-2.624000pt;}
.ws14_c00249{word-spacing:-1.333333pt;}
.ws4_c00249{word-spacing:-0.746667pt;}
.ws3_c00249{word-spacing:0.000000pt;}
.ws13_c00249{word-spacing:0.320000pt;}
.ws11_c00249{word-spacing:1.600000pt;}
.ws9_c00249{word-spacing:1.664000pt;}
.wsc_c00249{word-spacing:1.792000pt;}
.wsb_c00249{word-spacing:2.944000pt;}
.wsd_c00249{word-spacing:3.904000pt;}
.ws10_c00249{word-spacing:6.528000pt;}
.ws7_c00249{word-spacing:6.912000pt;}
.wse_c00249{word-spacing:8.128000pt;}
.ws8_c00249{word-spacing:10.304000pt;}
.wsa_c00249{word-spacing:11.776000pt;}
.ws6_c00249{word-spacing:13.440000pt;}
.ws5_c00249{word-spacing:27.456000pt;}
._0_c00249{margin-left:-426.965867pt;}
._4_c00249{margin-left:-6.250667pt;}
._5_c00249{margin-left:-5.318400pt;}
._1_c00249{margin-left:-3.733333pt;}
._3_c00249{margin-left:-1.913600pt;}
._2_c00249{margin-left:-1.008000pt;}
._7_c00249{width:1.024000pt;}
._6_c00249{width:4.486400pt;}
.fs1_c00249{font-size:37.333333pt;}
.fs0_c00249{font-size:53.333333pt;}
.fs5_c00249{font-size:58.666667pt;}
.fs4_c00249{font-size:64.000000pt;}
.fs3_c00249{font-size:74.666667pt;}
.fs2_c00249{font-size:96.000000pt;}
.y0_c00249{bottom:0.000000pt;}
.y1_c00249{bottom:36.666667pt;}
.y16_c00249{bottom:121.165067pt;}
.y15_c00249{bottom:147.837067pt;}
.y14_c00249{bottom:174.509067pt;}
.y13_c00249{bottom:201.181067pt;}
.y12_c00249{bottom:227.853067pt;}
.y11_c00249{bottom:281.186400pt;}
.y10_c00249{bottom:361.170400pt;}
.yf_c00249{bottom:387.842400pt;}
.ye_c00249{bottom:414.514400pt;}
.yd_c00249{bottom:441.186400pt;}
.yc_c00249{bottom:494.519733pt;}
.yb_c00249{bottom:574.482400pt;}
.ya_c00249{bottom:601.154400pt;}
.y9_c00249{bottom:627.826400pt;}
.y1c_c00249{bottom:627.853067pt;}
.y8_c00249{bottom:654.498400pt;}
.y1b_c00249{bottom:654.519733pt;}
.y7_c00249{bottom:681.170400pt;}
.y1a_c00249{bottom:681.186400pt;}
.y6_c00249{bottom:707.842400pt;}
.y19_c00249{bottom:707.853067pt;}
.y5_c00249{bottom:734.514400pt;}
.y18_c00249{bottom:734.519733pt;}
.y4_c00249{bottom:761.186400pt;}
.y17_c00249{bottom:761.787467pt;}
.y3_c00249{bottom:814.519733pt;}
.y2_c00249{bottom:894.519733pt;}
.h6_c00249{height:44.704000pt;}
.h2_c00249{height:48.000000pt;}
.h5_c00249{height:57.600000pt;}
.h4_c00249{height:69.813333pt;}
.h3_c00249{height:89.760000pt;}
.h0_c00249{height:1122.520000pt;}
.h1_c00249{height:1122.666667pt;}
.w0_c00249{width:793.701333pt;}
.w1_c00249{width:794.000000pt;}
.x0_c00249{left:0.000000pt;}
.x2_c00249{left:73.333333pt;}
.x3_c00249{left:80.000000pt;}
.x4_c00249{left:94.666667pt;}
.x5_c00249{left:600.543200pt;}
.x1_c00249{left:699.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.199000;font-style: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);}
.m1_c00250{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls1_c00250{letter-spacing:0.000000px;}
.ls0_c00250{letter-spacing:0.720000px;}
.ls2_c00250{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsa_c00250{word-spacing:-5.904000px;}
.ws9_c00250{word-spacing:-5.616000px;}
.ws8_c00250{word-spacing:-3.672000px;}
.wsb_c00250{word-spacing:-2.520000px;}
.wsd_c00250{word-spacing:-2.088000px;}
.ws2_c00250{word-spacing:-0.840000px;}
.ws1_c00250{word-spacing:0.000000px;}
.ws5_c00250{word-spacing:0.432000px;}
.ws3_c00250{word-spacing:2.592000px;}
.ws4_c00250{word-spacing:2.736000px;}
.wsc_c00250{word-spacing:5.040000px;}
.ws6_c00250{word-spacing:6.120000px;}
.ws7_c00250{word-spacing:9.936000px;}
._0_c00250{margin-left:-480.336600px;}
._3_c00250{margin-left:-6.120000px;}
._1_c00250{margin-left:-4.200000px;}
._2_c00250{margin-left:-2.160000px;}
._4_c00250{margin-left:-1.044000px;}
._7_c00250{width:1.375200px;}
._5_c00250{width:4.903200px;}
._6_c00250{width:6.343200px;}
.fc2_c00250{color:rgb(32,32,32);}
.fc1_c00250{color:rgb(232,86,17);}
.fc0_c00250{color:rgb(60,60,59);}
.fs1_c00250{font-size:42.000000px;}
.fs0_c00250{font-size:60.000000px;}
.fs3_c00250{font-size:72.000000px;}
.fs2_c00250{font-size:84.000000px;}
.y0_c00250{bottom:0.000000px;}
.y1_c00250{bottom:41.250000px;}
.yf_c00250{bottom:496.316700px;}
.ye_c00250{bottom:526.322700px;}
.yd_c00250{bottom:556.328700px;}
.yc_c00250{bottom:586.334700px;}
.yb_c00250{bottom:646.334700px;}
.ya_c00250{bottom:736.292700px;}
.y9_c00250{bottom:766.298700px;}
.y8_c00250{bottom:796.304700px;}
.y7_c00250{bottom:826.310700px;}
.y6_c00250{bottom:856.316700px;}
.y5_c00250{bottom:886.322700px;}
.y4_c00250{bottom:916.328700px;}
.y3_c00250{bottom:946.334700px;}
.y2_c00250{bottom:1006.334700px;}
.h2_c00250{height:54.000000px;}
.h4_c00250{height:64.800000px;}
.h3_c00250{height:78.540000px;}
.h0_c00250{height:1262.835000px;}
.h1_c00250{height:1263.000000px;}
.w0_c00250{width:892.914000px;}
.w1_c00250{width:893.250000px;}
.x0_c00250{left:0.000000px;}
.x2_c00250{left:90.000000px;}
.x3_c00250{left:106.500000px;}
.x1_c00250{left:790.538700px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls1_c00250{letter-spacing:0.000000pt;}
.ls0_c00250{letter-spacing:0.640000pt;}
.ls2_c00250{letter-spacing:0.746667pt;}
.ws0_c00250{word-spacing:-9.066667pt;}
.wsa_c00250{word-spacing:-5.248000pt;}
.ws9_c00250{word-spacing:-4.992000pt;}
.ws8_c00250{word-spacing:-3.264000pt;}
.wsb_c00250{word-spacing:-2.240000pt;}
.wsd_c00250{word-spacing:-1.856000pt;}
.ws2_c00250{word-spacing:-0.746667pt;}
.ws1_c00250{word-spacing:0.000000pt;}
.ws5_c00250{word-spacing:0.384000pt;}
.ws3_c00250{word-spacing:2.304000pt;}
.ws4_c00250{word-spacing:2.432000pt;}
.wsc_c00250{word-spacing:4.480000pt;}
.ws6_c00250{word-spacing:5.440000pt;}
.ws7_c00250{word-spacing:8.832000pt;}
._0_c00250{margin-left:-426.965867pt;}
._3_c00250{margin-left:-5.440000pt;}
._1_c00250{margin-left:-3.733333pt;}
._2_c00250{margin-left:-1.920000pt;}
._4_c00250{margin-left:-0.928000pt;}
._7_c00250{width:1.222400pt;}
._5_c00250{width:4.358400pt;}
._6_c00250{width:5.638400pt;}
.fs1_c00250{font-size:37.333333pt;}
.fs0_c00250{font-size:53.333333pt;}
.fs3_c00250{font-size:64.000000pt;}
.fs2_c00250{font-size:74.666667pt;}
.y0_c00250{bottom:0.000000pt;}
.y1_c00250{bottom:36.666667pt;}
.yf_c00250{bottom:441.170400pt;}
.ye_c00250{bottom:467.842400pt;}
.yd_c00250{bottom:494.514400pt;}
.yc_c00250{bottom:521.186400pt;}
.yb_c00250{bottom:574.519733pt;}
.ya_c00250{bottom:654.482400pt;}
.y9_c00250{bottom:681.154400pt;}
.y8_c00250{bottom:707.826400pt;}
.y7_c00250{bottom:734.498400pt;}
.y6_c00250{bottom:761.170400pt;}
.y5_c00250{bottom:787.842400pt;}
.y4_c00250{bottom:814.514400pt;}
.y3_c00250{bottom:841.186400pt;}
.y2_c00250{bottom:894.519733pt;}
.h2_c00250{height:48.000000pt;}
.h4_c00250{height:57.600000pt;}
.h3_c00250{height:69.813333pt;}
.h0_c00250{height:1122.520000pt;}
.h1_c00250{height:1122.666667pt;}
.w0_c00250{width:793.701333pt;}
.w1_c00250{width:794.000000pt;}
.x0_c00250{left:0.000000pt;}
.x2_c00250{left:80.000000pt;}
.x3_c00250{left:94.666667pt;}
.x1_c00250{left:702.701067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00251;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00251;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00251{font-family:ff5_c00251;line-height:1.155000;font-style: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);}
.m1_c00251{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls2_c00251{letter-spacing:0.000000px;}
.ls0_c00251{letter-spacing:0.864000px;}
.ls1_c00251{letter-spacing:1.200000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00251{word-spacing:-13.104000px;}
.ws0_c00251{word-spacing:-10.200000px;}
.ws5_c00251{word-spacing:-4.104000px;}
.ws6_c00251{word-spacing:-2.664000px;}
.ws3_c00251{word-spacing:-1.440000px;}
.ws7_c00251{word-spacing:-1.200000px;}
.ws4_c00251{word-spacing:-0.864000px;}
.ws2_c00251{word-spacing:0.000000px;}
._0_c00251{margin-left:-480.336000px;}
._6_c00251{margin-left:-10.800000px;}
._7_c00251{margin-left:-9.000000px;}
._4_c00251{margin-left:-5.760000px;}
._1_c00251{margin-left:-4.200000px;}
._8_c00251{margin-left:-2.760000px;}
._3_c00251{margin-left:-1.440000px;}
._2_c00251{width:1.440000px;}
._5_c00251{width:2.664000px;}
.fc3_c00251{color:rgb(255,255,255);}
.fc2_c00251{color:rgb(233,83,14);}
.fc1_c00251{color:rgb(232,86,17);}
.fc0_c00251{color:rgb(60,60,59);}
.fs1_c00251{font-size:42.000000px;}
.fs0_c00251{font-size:60.000000px;}
.fs3_c00251{font-size:72.000000px;}
.fs4_c00251{font-size:120.000000px;}
.fs2_c00251{font-size:360.000000px;}
.y0_c00251{bottom:0.000000px;}
.y1_c00251{bottom:41.250000px;}
.ye_c00251{bottom:454.304700px;}
.yd_c00251{bottom:475.310700px;}
.yc_c00251{bottom:496.316700px;}
.yb_c00251{bottom:538.310700px;}
.ya_c00251{bottom:559.316700px;}
.y9_c00251{bottom:580.322700px;}
.y8_c00251{bottom:622.316700px;}
.y7_c00251{bottom:643.322700px;}
.y6_c00251{bottom:664.328700px;}
.y5_c00251{bottom:685.334700px;}
.y4_c00251{bottom:706.340700px;}
.y3_c00251{bottom:752.834700px;}
.y12_c00251{bottom:916.334700px;}
.y11_c00251{bottom:946.334700px;}
.y10_c00251{bottom:976.334700px;}
.yf_c00251{bottom:1006.334700px;}
.y2_c00251{bottom:1093.526700px;}
.h2_c00251{height:54.000000px;}
.h5_c00251{height:64.800000px;}
.h4_c00251{height:66.456000px;}
.h6_c00251{height:112.200000px;}
.h3_c00251{height:324.000000px;}
.h0_c00251{height:1262.835000px;}
.h1_c00251{height:1263.000000px;}
.w0_c00251{width:892.914000px;}
.w1_c00251{width:893.250000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:81.290250px;}
.x3_c00251{left:82.393650px;}
.x5_c00251{left:112.287450px;}
.x4_c00251{left:127.393650px;}
.x1_c00251{left:788.063550px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls2_c00251{letter-spacing:0.000000pt;}
.ls0_c00251{letter-spacing:0.768000pt;}
.ls1_c00251{letter-spacing:1.066667pt;}
.ws1_c00251{word-spacing:-11.648000pt;}
.ws0_c00251{word-spacing:-9.066667pt;}
.ws5_c00251{word-spacing:-3.648000pt;}
.ws6_c00251{word-spacing:-2.368000pt;}
.ws3_c00251{word-spacing:-1.280000pt;}
.ws7_c00251{word-spacing:-1.066667pt;}
.ws4_c00251{word-spacing:-0.768000pt;}
.ws2_c00251{word-spacing:0.000000pt;}
._0_c00251{margin-left:-426.965333pt;}
._6_c00251{margin-left:-9.600000pt;}
._7_c00251{margin-left:-8.000000pt;}
._4_c00251{margin-left:-5.120000pt;}
._1_c00251{margin-left:-3.733333pt;}
._8_c00251{margin-left:-2.453333pt;}
._3_c00251{margin-left:-1.280000pt;}
._2_c00251{width:1.280000pt;}
._5_c00251{width:2.368000pt;}
.fs1_c00251{font-size:37.333333pt;}
.fs0_c00251{font-size:53.333333pt;}
.fs3_c00251{font-size:64.000000pt;}
.fs4_c00251{font-size:106.666667pt;}
.fs2_c00251{font-size:320.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y1_c00251{bottom:36.666667pt;}
.ye_c00251{bottom:403.826400pt;}
.yd_c00251{bottom:422.498400pt;}
.yc_c00251{bottom:441.170400pt;}
.yb_c00251{bottom:478.498400pt;}
.ya_c00251{bottom:497.170400pt;}
.y9_c00251{bottom:515.842400pt;}
.y8_c00251{bottom:553.170400pt;}
.y7_c00251{bottom:571.842400pt;}
.y6_c00251{bottom:590.514400pt;}
.y5_c00251{bottom:609.186400pt;}
.y4_c00251{bottom:627.858400pt;}
.y3_c00251{bottom:669.186400pt;}
.y12_c00251{bottom:814.519733pt;}
.y11_c00251{bottom:841.186400pt;}
.y10_c00251{bottom:867.853067pt;}
.yf_c00251{bottom:894.519733pt;}
.y2_c00251{bottom:972.023733pt;}
.h2_c00251{height:48.000000pt;}
.h5_c00251{height:57.600000pt;}
.h4_c00251{height:59.072000pt;}
.h6_c00251{height:99.733333pt;}
.h3_c00251{height:288.000000pt;}
.h0_c00251{height:1122.520000pt;}
.h1_c00251{height:1122.666667pt;}
.w0_c00251{width:793.701333pt;}
.w1_c00251{width:794.000000pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:72.258000pt;}
.x3_c00251{left:73.238800pt;}
.x5_c00251{left:99.811067pt;}
.x4_c00251{left:113.238800pt;}
.x1_c00251{left:700.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.160000;font-style:normal;font-weight:normal;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_9199441f23763687eab2a311.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls5_c00252{letter-spacing:-0.540000px;}
.ls4_c00252{letter-spacing:0.000000px;}
.ls1_c00252{letter-spacing:0.720000px;}
.ls0_c00252{letter-spacing:0.840000px;}
.ls3_c00252{letter-spacing:1.500000px;}
.ls2_c00252{letter-spacing:1.650000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00252{word-spacing:-21.060000px;}
.ws2_c00252{word-spacing:-17.640000px;}
.ws3_c00252{word-spacing:-11.700000px;}
.ws0_c00252{word-spacing:-10.200000px;}
.ws14_c00252{word-spacing:-1.500000px;}
.ws5_c00252{word-spacing:-0.840000px;}
.wsd_c00252{word-spacing:-0.720000px;}
.wsb_c00252{word-spacing:-0.504000px;}
.ws4_c00252{word-spacing:0.000000px;}
.wsc_c00252{word-spacing:1.656000px;}
.wse_c00252{word-spacing:2.232000px;}
.ws8_c00252{word-spacing:2.520000px;}
.ws13_c00252{word-spacing:3.168000px;}
.wsf_c00252{word-spacing:3.312000px;}
.wsa_c00252{word-spacing:5.472000px;}
.ws10_c00252{word-spacing:7.632000px;}
.ws11_c00252{word-spacing:9.216000px;}
.ws12_c00252{word-spacing:9.360000px;}
.ws7_c00252{word-spacing:14.616000px;}
.ws9_c00252{word-spacing:23.256000px;}
.ws6_c00252{word-spacing:26.208000px;}
._0_c00252{margin-left:-480.336600px;}
._4_c00252{margin-left:-5.760000px;}
._1_c00252{margin-left:-4.200000px;}
._2_c00252{margin-left:-2.160000px;}
._3_c00252{margin-left:-1.015200px;}
.fc3_c00252{color:rgb(32,32,32);}
.fc2_c00252{color:rgb(233,83,14);}
.fc1_c00252{color:rgb(232,86,17);}
.fc4_c00252{color:rgb(157,157,156);}
.fc0_c00252{color:rgb(60,60,59);}
.fs1_c00252{font-size:42.000000px;}
.fs0_c00252{font-size:60.000000px;}
.fs5_c00252{font-size:66.000000px;}
.fs4_c00252{font-size:72.000000px;}
.fs3_c00252{font-size:84.000000px;}
.fs2_c00252{font-size:108.000000px;}
.y0_c00252{bottom:0.000000px;}
.y1_c00252{bottom:41.250000px;}
.y15_c00252{bottom:166.298700px;}
.y14_c00252{bottom:196.304700px;}
.y13_c00252{bottom:226.310700px;}
.y12_c00252{bottom:256.316700px;}
.y11_c00252{bottom:286.322700px;}
.y10_c00252{bottom:316.328700px;}
.yf_c00252{bottom:346.334700px;}
.ye_c00252{bottom:406.334700px;}
.yd_c00252{bottom:496.322700px;}
.yc_c00252{bottom:526.328700px;}
.yb_c00252{bottom:556.334700px;}
.ya_c00252{bottom:616.334700px;}
.y1d_c00252{bottom:646.334700px;}
.y1c_c00252{bottom:676.334700px;}
.y9_c00252{bottom:706.304700px;}
.y1b_c00252{bottom:706.334700px;}
.y8_c00252{bottom:736.310700px;}
.y1a_c00252{bottom:736.334700px;}
.y7_c00252{bottom:766.316700px;}
.y19_c00252{bottom:766.334700px;}
.y6_c00252{bottom:796.322700px;}
.y18_c00252{bottom:796.334700px;}
.y5_c00252{bottom:826.328700px;}
.y17_c00252{bottom:826.334700px;}
.y4_c00252{bottom:856.334700px;}
.y16_c00252{bottom:857.010900px;}
.y3_c00252{bottom:916.334700px;}
.y2_c00252{bottom:1006.334700px;}
.h6_c00252{height:50.292000px;}
.h2_c00252{height:54.000000px;}
.h5_c00252{height:64.800000px;}
.h4_c00252{height:78.540000px;}
.h3_c00252{height:100.980000px;}
.h0_c00252{height:1262.835000px;}
.h1_c00252{height:1263.000000px;}
.w0_c00252{width:892.914000px;}
.w1_c00252{width:893.250000px;}
.x0_c00252{left:0.000000px;}
.x2_c00252{left:82.500000px;}
.x3_c00252{left:90.000000px;}
.x4_c00252{left:106.500000px;}
.x5_c00252{left:675.611100px;}
.x1_c00252{left:787.913700px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls5_c00252{letter-spacing:-0.480000pt;}
.ls4_c00252{letter-spacing:0.000000pt;}
.ls1_c00252{letter-spacing:0.640000pt;}
.ls0_c00252{letter-spacing:0.746667pt;}
.ls3_c00252{letter-spacing:1.333333pt;}
.ls2_c00252{letter-spacing:1.466667pt;}
.ws1_c00252{word-spacing:-18.720000pt;}
.ws2_c00252{word-spacing:-15.680000pt;}
.ws3_c00252{word-spacing:-10.400000pt;}
.ws0_c00252{word-spacing:-9.066667pt;}
.ws14_c00252{word-spacing:-1.333333pt;}
.ws5_c00252{word-spacing:-0.746667pt;}
.wsd_c00252{word-spacing:-0.640000pt;}
.wsb_c00252{word-spacing:-0.448000pt;}
.ws4_c00252{word-spacing:0.000000pt;}
.wsc_c00252{word-spacing:1.472000pt;}
.wse_c00252{word-spacing:1.984000pt;}
.ws8_c00252{word-spacing:2.240000pt;}
.ws13_c00252{word-spacing:2.816000pt;}
.wsf_c00252{word-spacing:2.944000pt;}
.wsa_c00252{word-spacing:4.864000pt;}
.ws10_c00252{word-spacing:6.784000pt;}
.ws11_c00252{word-spacing:8.192000pt;}
.ws12_c00252{word-spacing:8.320000pt;}
.ws7_c00252{word-spacing:12.992000pt;}
.ws9_c00252{word-spacing:20.672000pt;}
.ws6_c00252{word-spacing:23.296000pt;}
._0_c00252{margin-left:-426.965867pt;}
._4_c00252{margin-left:-5.120000pt;}
._1_c00252{margin-left:-3.733333pt;}
._2_c00252{margin-left:-1.920000pt;}
._3_c00252{margin-left:-0.902400pt;}
.fs1_c00252{font-size:37.333333pt;}
.fs0_c00252{font-size:53.333333pt;}
.fs5_c00252{font-size:58.666667pt;}
.fs4_c00252{font-size:64.000000pt;}
.fs3_c00252{font-size:74.666667pt;}
.fs2_c00252{font-size:96.000000pt;}
.y0_c00252{bottom:0.000000pt;}
.y1_c00252{bottom:36.666667pt;}
.y15_c00252{bottom:147.821067pt;}
.y14_c00252{bottom:174.493067pt;}
.y13_c00252{bottom:201.165067pt;}
.y12_c00252{bottom:227.837067pt;}
.y11_c00252{bottom:254.509067pt;}
.y10_c00252{bottom:281.181067pt;}
.yf_c00252{bottom:307.853067pt;}
.ye_c00252{bottom:361.186400pt;}
.yd_c00252{bottom:441.175733pt;}
.yc_c00252{bottom:467.847733pt;}
.yb_c00252{bottom:494.519733pt;}
.ya_c00252{bottom:547.853067pt;}
.y1d_c00252{bottom:574.519733pt;}
.y1c_c00252{bottom:601.186400pt;}
.y9_c00252{bottom:627.826400pt;}
.y1b_c00252{bottom:627.853067pt;}
.y8_c00252{bottom:654.498400pt;}
.y1a_c00252{bottom:654.519733pt;}
.y7_c00252{bottom:681.170400pt;}
.y19_c00252{bottom:681.186400pt;}
.y6_c00252{bottom:707.842400pt;}
.y18_c00252{bottom:707.853067pt;}
.y5_c00252{bottom:734.514400pt;}
.y17_c00252{bottom:734.519733pt;}
.y4_c00252{bottom:761.186400pt;}
.y16_c00252{bottom:761.787467pt;}
.y3_c00252{bottom:814.519733pt;}
.y2_c00252{bottom:894.519733pt;}
.h6_c00252{height:44.704000pt;}
.h2_c00252{height:48.000000pt;}
.h5_c00252{height:57.600000pt;}
.h4_c00252{height:69.813333pt;}
.h3_c00252{height:89.760000pt;}
.h0_c00252{height:1122.520000pt;}
.h1_c00252{height:1122.666667pt;}
.w0_c00252{width:793.701333pt;}
.w1_c00252{width:794.000000pt;}
.x0_c00252{left:0.000000pt;}
.x2_c00252{left:73.333333pt;}
.x3_c00252{left:80.000000pt;}
.x4_c00252{left:94.666667pt;}
.x5_c00252{left:600.543200pt;}
.x1_c00252{left:700.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00253;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.199000;font-style: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);}
.m1_c00253{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls1_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:0.720000px;}
.ls2_c00253{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsd_c00253{word-spacing:-5.472000px;}
.ws5_c00253{word-spacing:-5.184000px;}
.wsb_c00253{word-spacing:-3.168000px;}
.wsf_c00253{word-spacing:-2.520000px;}
.ws9_c00253{word-spacing:-2.304000px;}
.ws2_c00253{word-spacing:-0.840000px;}
.ws8_c00253{word-spacing:-0.216000px;}
.ws1_c00253{word-spacing:0.000000px;}
.ws4_c00253{word-spacing:1.008000px;}
.wsa_c00253{word-spacing:1.656000px;}
.wse_c00253{word-spacing:1.800000px;}
.ws6_c00253{word-spacing:2.520000px;}
.ws7_c00253{word-spacing:7.632000px;}
.wsc_c00253{word-spacing:10.656000px;}
.ws3_c00253{word-spacing:16.200000px;}
._0_c00253{margin-left:-480.336000px;}
._5_c00253{margin-left:-8.640000px;}
._2_c00253{margin-left:-5.856000px;}
._1_c00253{margin-left:-4.200000px;}
._6_c00253{margin-left:-2.536800px;}
._3_c00253{margin-left:-1.382400px;}
._8_c00253{width:1.684800px;}
._7_c00253{width:3.312000px;}
._4_c00253{width:5.385600px;}
._9_c00253{width:7.020000px;}
.fc2_c00253{color:rgb(32,32,32);}
.fc1_c00253{color:rgb(232,86,17);}
.fc0_c00253{color:rgb(60,60,59);}
.fs1_c00253{font-size:42.000000px;}
.fs0_c00253{font-size:60.000000px;}
.fs3_c00253{font-size:72.000000px;}
.fs2_c00253{font-size:84.000000px;}
.y0_c00253{bottom:0.000000px;}
.y1_c00253{bottom:41.250000px;}
.y12_c00253{bottom:406.316700px;}
.y11_c00253{bottom:436.322700px;}
.y10_c00253{bottom:466.328700px;}
.yf_c00253{bottom:496.334700px;}
.ye_c00253{bottom:556.334700px;}
.yd_c00253{bottom:646.274700px;}
.yc_c00253{bottom:676.280700px;}
.yb_c00253{bottom:706.286700px;}
.ya_c00253{bottom:736.292700px;}
.y9_c00253{bottom:766.298700px;}
.y8_c00253{bottom:796.304700px;}
.y7_c00253{bottom:826.310700px;}
.y6_c00253{bottom:856.316700px;}
.y5_c00253{bottom:886.322700px;}
.y4_c00253{bottom:916.328700px;}
.y3_c00253{bottom:946.334700px;}
.y2_c00253{bottom:1006.334700px;}
.h2_c00253{height:54.000000px;}
.h4_c00253{height:64.800000px;}
.h3_c00253{height:78.540000px;}
.h0_c00253{height:1262.835000px;}
.h1_c00253{height:1263.000000px;}
.w0_c00253{width:892.914000px;}
.w1_c00253{width:893.250000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:90.000000px;}
.x3_c00253{left:106.500000px;}
.x1_c00253{left:786.938550px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls1_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:0.640000pt;}
.ls2_c00253{letter-spacing:0.746667pt;}
.ws0_c00253{word-spacing:-9.066667pt;}
.wsd_c00253{word-spacing:-4.864000pt;}
.ws5_c00253{word-spacing:-4.608000pt;}
.wsb_c00253{word-spacing:-2.816000pt;}
.wsf_c00253{word-spacing:-2.240000pt;}
.ws9_c00253{word-spacing:-2.048000pt;}
.ws2_c00253{word-spacing:-0.746667pt;}
.ws8_c00253{word-spacing:-0.192000pt;}
.ws1_c00253{word-spacing:0.000000pt;}
.ws4_c00253{word-spacing:0.896000pt;}
.wsa_c00253{word-spacing:1.472000pt;}
.wse_c00253{word-spacing:1.600000pt;}
.ws6_c00253{word-spacing:2.240000pt;}
.ws7_c00253{word-spacing:6.784000pt;}
.wsc_c00253{word-spacing:9.472000pt;}
.ws3_c00253{word-spacing:14.400000pt;}
._0_c00253{margin-left:-426.965333pt;}
._5_c00253{margin-left:-7.680000pt;}
._2_c00253{margin-left:-5.205333pt;}
._1_c00253{margin-left:-3.733333pt;}
._6_c00253{margin-left:-2.254933pt;}
._3_c00253{margin-left:-1.228800pt;}
._8_c00253{width:1.497600pt;}
._7_c00253{width:2.944000pt;}
._4_c00253{width:4.787200pt;}
._9_c00253{width:6.240000pt;}
.fs1_c00253{font-size:37.333333pt;}
.fs0_c00253{font-size:53.333333pt;}
.fs3_c00253{font-size:64.000000pt;}
.fs2_c00253{font-size:74.666667pt;}
.y0_c00253{bottom:0.000000pt;}
.y1_c00253{bottom:36.666667pt;}
.y12_c00253{bottom:361.170400pt;}
.y11_c00253{bottom:387.842400pt;}
.y10_c00253{bottom:414.514400pt;}
.yf_c00253{bottom:441.186400pt;}
.ye_c00253{bottom:494.519733pt;}
.yd_c00253{bottom:574.466400pt;}
.yc_c00253{bottom:601.138400pt;}
.yb_c00253{bottom:627.810400pt;}
.ya_c00253{bottom:654.482400pt;}
.y9_c00253{bottom:681.154400pt;}
.y8_c00253{bottom:707.826400pt;}
.y7_c00253{bottom:734.498400pt;}
.y6_c00253{bottom:761.170400pt;}
.y5_c00253{bottom:787.842400pt;}
.y4_c00253{bottom:814.514400pt;}
.y3_c00253{bottom:841.186400pt;}
.y2_c00253{bottom:894.519733pt;}
.h2_c00253{height:48.000000pt;}
.h4_c00253{height:57.600000pt;}
.h3_c00253{height:69.813333pt;}
.h0_c00253{height:1122.520000pt;}
.h1_c00253{height:1122.666667pt;}
.w0_c00253{width:793.701333pt;}
.w1_c00253{width:794.000000pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:80.000000pt;}
.x3_c00253{left:94.666667pt;}
.x1_c00253{left:699.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a14ed4c9fb7f88b5185abe5a.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.160000;font-style:normal;font-weight:normal;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_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.161000;font-style: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);}
.m1_c00254{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls5_c00254{letter-spacing:-0.324000px;}
.ls4_c00254{letter-spacing:0.000000px;}
.ls0_c00254{letter-spacing:0.720000px;}
.ls1_c00254{letter-spacing:0.840000px;}
.ls3_c00254{letter-spacing:1.500000px;}
.ls2_c00254{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00254{word-spacing:-21.276000px;}
.ws2_c00254{word-spacing:-17.640000px;}
.ws3_c00254{word-spacing:-14.850000px;}
.ws0_c00254{word-spacing:-10.200000px;}
.ws9_c00254{word-spacing:-1.728000px;}
.ws11_c00254{word-spacing:-1.500000px;}
.ws5_c00254{word-spacing:-0.840000px;}
.wsa_c00254{word-spacing:-0.360000px;}
.ws4_c00254{word-spacing:0.000000px;}
.wsf_c00254{word-spacing:0.360000px;}
.wsd_c00254{word-spacing:0.864000px;}
.wsc_c00254{word-spacing:2.304000px;}
.ws7_c00254{word-spacing:3.312000px;}
.ws10_c00254{word-spacing:3.888000px;}
.wse_c00254{word-spacing:3.960000px;}
.ws8_c00254{word-spacing:4.824000px;}
.wsb_c00254{word-spacing:5.472000px;}
.ws6_c00254{word-spacing:20.016000px;}
._0_c00254{margin-left:-480.336000px;}
._7_c00254{margin-left:-6.364800px;}
._1_c00254{margin-left:-4.200000px;}
._5_c00254{margin-left:-2.268000px;}
._2_c00254{margin-left:-1.134000px;}
._4_c00254{width:1.321200px;}
._3_c00254{width:2.962800px;}
._6_c00254{width:4.179600px;}
.fc3_c00254{color:rgb(32,32,32);}
.fc2_c00254{color:rgb(233,83,14);}
.fc1_c00254{color:rgb(232,86,17);}
.fc4_c00254{color:rgb(157,157,156);}
.fc0_c00254{color:rgb(60,60,59);}
.fs1_c00254{font-size:42.000000px;}
.fs0_c00254{font-size:60.000000px;}
.fs5_c00254{font-size:66.000000px;}
.fs4_c00254{font-size:72.000000px;}
.fs3_c00254{font-size:84.000000px;}
.fs2_c00254{font-size:108.000000px;}
.y0_c00254{bottom:0.000000px;}
.y1_c00254{bottom:41.250000px;}
.y12_c00254{bottom:256.304700px;}
.y11_c00254{bottom:286.310700px;}
.y10_c00254{bottom:316.316700px;}
.yf_c00254{bottom:346.322700px;}
.ye_c00254{bottom:376.328700px;}
.yd_c00254{bottom:406.334700px;}
.yc_c00254{bottom:466.334700px;}
.yb_c00254{bottom:556.328700px;}
.ya_c00254{bottom:586.334700px;}
.y9_c00254{bottom:646.334700px;}
.y19_c00254{bottom:676.334700px;}
.y18_c00254{bottom:706.334700px;}
.y8_c00254{bottom:736.310700px;}
.y17_c00254{bottom:736.334700px;}
.y7_c00254{bottom:766.316700px;}
.y16_c00254{bottom:766.334700px;}
.y6_c00254{bottom:796.322700px;}
.y15_c00254{bottom:796.334700px;}
.y5_c00254{bottom:826.328700px;}
.y14_c00254{bottom:826.334700px;}
.y4_c00254{bottom:856.334700px;}
.y13_c00254{bottom:857.010900px;}
.y3_c00254{bottom:916.334700px;}
.y2_c00254{bottom:1006.334700px;}
.h6_c00254{height:50.292000px;}
.h2_c00254{height:54.000000px;}
.h5_c00254{height:64.800000px;}
.h4_c00254{height:78.540000px;}
.h3_c00254{height:100.980000px;}
.h0_c00254{height:1262.835000px;}
.h1_c00254{height:1263.000000px;}
.w0_c00254{width:892.914000px;}
.w1_c00254{width:893.250000px;}
.x0_c00254{left:0.000000px;}
.x2_c00254{left:82.500000px;}
.x3_c00254{left:90.000000px;}
.x4_c00254{left:106.500000px;}
.x5_c00254{left:675.611100px;}
.x1_c00254{left:787.988550px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls5_c00254{letter-spacing:-0.288000pt;}
.ls4_c00254{letter-spacing:0.000000pt;}
.ls0_c00254{letter-spacing:0.640000pt;}
.ls1_c00254{letter-spacing:0.746667pt;}
.ls3_c00254{letter-spacing:1.333333pt;}
.ls2_c00254{letter-spacing:1.466667pt;}
.ws1_c00254{word-spacing:-18.912000pt;}
.ws2_c00254{word-spacing:-15.680000pt;}
.ws3_c00254{word-spacing:-13.200000pt;}
.ws0_c00254{word-spacing:-9.066667pt;}
.ws9_c00254{word-spacing:-1.536000pt;}
.ws11_c00254{word-spacing:-1.333333pt;}
.ws5_c00254{word-spacing:-0.746667pt;}
.wsa_c00254{word-spacing:-0.320000pt;}
.ws4_c00254{word-spacing:0.000000pt;}
.wsf_c00254{word-spacing:0.320000pt;}
.wsd_c00254{word-spacing:0.768000pt;}
.wsc_c00254{word-spacing:2.048000pt;}
.ws7_c00254{word-spacing:2.944000pt;}
.ws10_c00254{word-spacing:3.456000pt;}
.wse_c00254{word-spacing:3.520000pt;}
.ws8_c00254{word-spacing:4.288000pt;}
.wsb_c00254{word-spacing:4.864000pt;}
.ws6_c00254{word-spacing:17.792000pt;}
._0_c00254{margin-left:-426.965333pt;}
._7_c00254{margin-left:-5.657600pt;}
._1_c00254{margin-left:-3.733333pt;}
._5_c00254{margin-left:-2.016000pt;}
._2_c00254{margin-left:-1.008000pt;}
._4_c00254{width:1.174400pt;}
._3_c00254{width:2.633600pt;}
._6_c00254{width:3.715200pt;}
.fs1_c00254{font-size:37.333333pt;}
.fs0_c00254{font-size:53.333333pt;}
.fs5_c00254{font-size:58.666667pt;}
.fs4_c00254{font-size:64.000000pt;}
.fs3_c00254{font-size:74.666667pt;}
.fs2_c00254{font-size:96.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y1_c00254{bottom:36.666667pt;}
.y12_c00254{bottom:227.826400pt;}
.y11_c00254{bottom:254.498400pt;}
.y10_c00254{bottom:281.170400pt;}
.yf_c00254{bottom:307.842400pt;}
.ye_c00254{bottom:334.514400pt;}
.yd_c00254{bottom:361.186400pt;}
.yc_c00254{bottom:414.519733pt;}
.yb_c00254{bottom:494.514400pt;}
.ya_c00254{bottom:521.186400pt;}
.y9_c00254{bottom:574.519733pt;}
.y19_c00254{bottom:601.186400pt;}
.y18_c00254{bottom:627.853067pt;}
.y8_c00254{bottom:654.498400pt;}
.y17_c00254{bottom:654.519733pt;}
.y7_c00254{bottom:681.170400pt;}
.y16_c00254{bottom:681.186400pt;}
.y6_c00254{bottom:707.842400pt;}
.y15_c00254{bottom:707.853067pt;}
.y5_c00254{bottom:734.514400pt;}
.y14_c00254{bottom:734.519733pt;}
.y4_c00254{bottom:761.186400pt;}
.y13_c00254{bottom:761.787467pt;}
.y3_c00254{bottom:814.519733pt;}
.y2_c00254{bottom:894.519733pt;}
.h6_c00254{height:44.704000pt;}
.h2_c00254{height:48.000000pt;}
.h5_c00254{height:57.600000pt;}
.h4_c00254{height:69.813333pt;}
.h3_c00254{height:89.760000pt;}
.h0_c00254{height:1122.520000pt;}
.h1_c00254{height:1122.666667pt;}
.w0_c00254{width:793.701333pt;}
.w1_c00254{width:794.000000pt;}
.x0_c00254{left:0.000000pt;}
.x2_c00254{left:73.333333pt;}
.x3_c00254{left:80.000000pt;}
.x4_c00254{left:94.666667pt;}
.x5_c00254{left:600.543200pt;}
.x1_c00254{left:700.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f08c7ce23c7def97997f978d.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.199000;font-style: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);}
.m1_c00255{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls1_c00255{letter-spacing:0.000000px;}
.ls0_c00255{letter-spacing:0.720000px;}
.ls2_c00255{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws7_c00255{word-spacing:-2.520000px;}
.wsa_c00255{word-spacing:-2.376000px;}
.ws2_c00255{word-spacing:-0.840000px;}
.ws1_c00255{word-spacing:0.000000px;}
.ws8_c00255{word-spacing:0.072000px;}
.ws3_c00255{word-spacing:2.016000px;}
.ws9_c00255{word-spacing:2.520000px;}
.wsc_c00255{word-spacing:2.736000px;}
.wse_c00255{word-spacing:2.808000px;}
.ws6_c00255{word-spacing:5.112000px;}
.wsb_c00255{word-spacing:12.096000px;}
.wsd_c00255{word-spacing:12.672000px;}
.ws5_c00255{word-spacing:15.120000px;}
.ws4_c00255{word-spacing:24.192000px;}
._0_c00255{margin-left:-480.336000px;}
._4_c00255{margin-left:-8.640000px;}
._1_c00255{margin-left:-4.200000px;}
._3_c00255{margin-left:-2.368800px;}
._2_c00255{margin-left:-1.130400px;}
._5_c00255{width:1.245600px;}
.fc2_c00255{color:rgb(32,32,32);}
.fc1_c00255{color:rgb(232,86,17);}
.fc0_c00255{color:rgb(60,60,59);}
.fs1_c00255{font-size:42.000000px;}
.fs0_c00255{font-size:60.000000px;}
.fs3_c00255{font-size:72.000000px;}
.fs2_c00255{font-size:84.000000px;}
.y0_c00255{bottom:0.000000px;}
.y1_c00255{bottom:41.250000px;}
.y11_c00255{bottom:436.316700px;}
.y10_c00255{bottom:466.322700px;}
.yf_c00255{bottom:496.328700px;}
.ye_c00255{bottom:526.334700px;}
.yd_c00255{bottom:586.334700px;}
.yc_c00255{bottom:676.280700px;}
.yb_c00255{bottom:706.286700px;}
.ya_c00255{bottom:736.292700px;}
.y9_c00255{bottom:766.298700px;}
.y8_c00255{bottom:796.304700px;}
.y7_c00255{bottom:826.310700px;}
.y6_c00255{bottom:856.316700px;}
.y5_c00255{bottom:886.322700px;}
.y4_c00255{bottom:916.328700px;}
.y3_c00255{bottom:946.334700px;}
.y2_c00255{bottom:1006.334700px;}
.h2_c00255{height:54.000000px;}
.h4_c00255{height:64.800000px;}
.h3_c00255{height:78.540000px;}
.h0_c00255{height:1262.835000px;}
.h1_c00255{height:1263.000000px;}
.w0_c00255{width:892.914000px;}
.w1_c00255{width:893.250000px;}
.x0_c00255{left:0.000000px;}
.x2_c00255{left:90.000000px;}
.x3_c00255{left:106.500000px;}
.x1_c00255{left:786.863550px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls1_c00255{letter-spacing:0.000000pt;}
.ls0_c00255{letter-spacing:0.640000pt;}
.ls2_c00255{letter-spacing:0.746667pt;}
.ws0_c00255{word-spacing:-9.066667pt;}
.ws7_c00255{word-spacing:-2.240000pt;}
.wsa_c00255{word-spacing:-2.112000pt;}
.ws2_c00255{word-spacing:-0.746667pt;}
.ws1_c00255{word-spacing:0.000000pt;}
.ws8_c00255{word-spacing:0.064000pt;}
.ws3_c00255{word-spacing:1.792000pt;}
.ws9_c00255{word-spacing:2.240000pt;}
.wsc_c00255{word-spacing:2.432000pt;}
.wse_c00255{word-spacing:2.496000pt;}
.ws6_c00255{word-spacing:4.544000pt;}
.wsb_c00255{word-spacing:10.752000pt;}
.wsd_c00255{word-spacing:11.264000pt;}
.ws5_c00255{word-spacing:13.440000pt;}
.ws4_c00255{word-spacing:21.504000pt;}
._0_c00255{margin-left:-426.965333pt;}
._4_c00255{margin-left:-7.680000pt;}
._1_c00255{margin-left:-3.733333pt;}
._3_c00255{margin-left:-2.105600pt;}
._2_c00255{margin-left:-1.004800pt;}
._5_c00255{width:1.107200pt;}
.fs1_c00255{font-size:37.333333pt;}
.fs0_c00255{font-size:53.333333pt;}
.fs3_c00255{font-size:64.000000pt;}
.fs2_c00255{font-size:74.666667pt;}
.y0_c00255{bottom:0.000000pt;}
.y1_c00255{bottom:36.666667pt;}
.y11_c00255{bottom:387.837067pt;}
.y10_c00255{bottom:414.509067pt;}
.yf_c00255{bottom:441.181067pt;}
.ye_c00255{bottom:467.853067pt;}
.yd_c00255{bottom:521.186400pt;}
.yc_c00255{bottom:601.138400pt;}
.yb_c00255{bottom:627.810400pt;}
.ya_c00255{bottom:654.482400pt;}
.y9_c00255{bottom:681.154400pt;}
.y8_c00255{bottom:707.826400pt;}
.y7_c00255{bottom:734.498400pt;}
.y6_c00255{bottom:761.170400pt;}
.y5_c00255{bottom:787.842400pt;}
.y4_c00255{bottom:814.514400pt;}
.y3_c00255{bottom:841.186400pt;}
.y2_c00255{bottom:894.519733pt;}
.h2_c00255{height:48.000000pt;}
.h4_c00255{height:57.600000pt;}
.h3_c00255{height:69.813333pt;}
.h0_c00255{height:1122.520000pt;}
.h1_c00255{height:1122.666667pt;}
.w0_c00255{width:793.701333pt;}
.w1_c00255{width:794.000000pt;}
.x0_c00255{left:0.000000pt;}
.x2_c00255{left:80.000000pt;}
.x3_c00255{left:94.666667pt;}
.x1_c00255{left:699.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00256;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00256;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;line-height:1.155000;font-style: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);}
.m1_c00256{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls2_c00256{letter-spacing:0.000000px;}
.ls0_c00256{letter-spacing:0.864000px;}
.ls1_c00256{letter-spacing:1.200000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00256{word-spacing:-13.104000px;}
.ws0_c00256{word-spacing:-10.200000px;}
.ws8_c00256{word-spacing:-9.240000px;}
.ws7_c00256{word-spacing:-3.600000px;}
.ws6_c00256{word-spacing:-2.016000px;}
.ws4_c00256{word-spacing:-1.440000px;}
.ws5_c00256{word-spacing:-0.864000px;}
.ws3_c00256{word-spacing:-0.504000px;}
.ws2_c00256{word-spacing:0.000000px;}
._0_c00256{margin-left:-480.336000px;}
._2_c00256{margin-left:-8.712000px;}
._5_c00256{margin-left:-6.480000px;}
._1_c00256{margin-left:-4.200000px;}
._3_c00256{margin-left:-2.016000px;}
._4_c00256{width:2.016000px;}
._6_c00256{width:9.240000px;}
.fc3_c00256{color:rgb(255,255,255);}
.fc2_c00256{color:rgb(233,83,14);}
.fc1_c00256{color:rgb(232,86,17);}
.fc0_c00256{color:rgb(60,60,59);}
.fs1_c00256{font-size:42.000000px;}
.fs0_c00256{font-size:60.000000px;}
.fs3_c00256{font-size:72.000000px;}
.fs4_c00256{font-size:120.000000px;}
.fs2_c00256{font-size:360.000000px;}
.y0_c00256{bottom:0.000000px;}
.y1_c00256{bottom:41.250000px;}
.yb_c00256{bottom:514.298700px;}
.ya_c00256{bottom:535.304700px;}
.y9_c00256{bottom:556.310700px;}
.y8_c00256{bottom:622.316700px;}
.y7_c00256{bottom:643.322700px;}
.y6_c00256{bottom:664.328700px;}
.y5_c00256{bottom:685.334700px;}
.y4_c00256{bottom:706.340700px;}
.y3_c00256{bottom:752.834700px;}
.yd_c00256{bottom:976.334700px;}
.yc_c00256{bottom:1006.334700px;}
.y2_c00256{bottom:1093.526700px;}
.h2_c00256{height:54.000000px;}
.h5_c00256{height:64.800000px;}
.h4_c00256{height:66.456000px;}
.h6_c00256{height:112.200000px;}
.h3_c00256{height:324.000000px;}
.h0_c00256{height:1262.835000px;}
.h1_c00256{height:1263.000000px;}
.w0_c00256{width:892.914000px;}
.w1_c00256{width:893.250000px;}
.x0_c00256{left:0.000000px;}
.x2_c00256{left:81.290250px;}
.x3_c00256{left:82.393650px;}
.x5_c00256{left:112.287450px;}
.x4_c00256{left:127.393650px;}
.x1_c00256{left:788.963550px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls2_c00256{letter-spacing:0.000000pt;}
.ls0_c00256{letter-spacing:0.768000pt;}
.ls1_c00256{letter-spacing:1.066667pt;}
.ws1_c00256{word-spacing:-11.648000pt;}
.ws0_c00256{word-spacing:-9.066667pt;}
.ws8_c00256{word-spacing:-8.213333pt;}
.ws7_c00256{word-spacing:-3.200000pt;}
.ws6_c00256{word-spacing:-1.792000pt;}
.ws4_c00256{word-spacing:-1.280000pt;}
.ws5_c00256{word-spacing:-0.768000pt;}
.ws3_c00256{word-spacing:-0.448000pt;}
.ws2_c00256{word-spacing:0.000000pt;}
._0_c00256{margin-left:-426.965333pt;}
._2_c00256{margin-left:-7.744000pt;}
._5_c00256{margin-left:-5.760000pt;}
._1_c00256{margin-left:-3.733333pt;}
._3_c00256{margin-left:-1.792000pt;}
._4_c00256{width:1.792000pt;}
._6_c00256{width:8.213333pt;}
.fs1_c00256{font-size:37.333333pt;}
.fs0_c00256{font-size:53.333333pt;}
.fs3_c00256{font-size:64.000000pt;}
.fs4_c00256{font-size:106.666667pt;}
.fs2_c00256{font-size:320.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y1_c00256{bottom:36.666667pt;}
.yb_c00256{bottom:457.154400pt;}
.ya_c00256{bottom:475.826400pt;}
.y9_c00256{bottom:494.498400pt;}
.y8_c00256{bottom:553.170400pt;}
.y7_c00256{bottom:571.842400pt;}
.y6_c00256{bottom:590.514400pt;}
.y5_c00256{bottom:609.186400pt;}
.y4_c00256{bottom:627.858400pt;}
.y3_c00256{bottom:669.186400pt;}
.yd_c00256{bottom:867.853067pt;}
.yc_c00256{bottom:894.519733pt;}
.y2_c00256{bottom:972.023733pt;}
.h2_c00256{height:48.000000pt;}
.h5_c00256{height:57.600000pt;}
.h4_c00256{height:59.072000pt;}
.h6_c00256{height:99.733333pt;}
.h3_c00256{height:288.000000pt;}
.h0_c00256{height:1122.520000pt;}
.h1_c00256{height:1122.666667pt;}
.w0_c00256{width:793.701333pt;}
.w1_c00256{width:794.000000pt;}
.x0_c00256{left:0.000000pt;}
.x2_c00256{left:72.258000pt;}
.x3_c00256{left:73.238800pt;}
.x5_c00256{left:99.811067pt;}
.x4_c00256{left:113.238800pt;}
.x1_c00256{left:701.300933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00257;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:1.161000;font-style: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);}
.m1_c00257{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls5_c00257{letter-spacing:-0.540000px;}
.ls4_c00257{letter-spacing:0.000000px;}
.ls0_c00257{letter-spacing:0.720000px;}
.ls1_c00257{letter-spacing:0.840000px;}
.ls3_c00257{letter-spacing:1.500000px;}
.ls2_c00257{letter-spacing:1.650000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00257{word-spacing:-21.060000px;}
.ws2_c00257{word-spacing:-17.640000px;}
.ws3_c00257{word-spacing:-14.850000px;}
.ws0_c00257{word-spacing:-10.200000px;}
.wsd_c00257{word-spacing:-3.384000px;}
.wsc_c00257{word-spacing:-1.800000px;}
.ws18_c00257{word-spacing:-1.500000px;}
.ws5_c00257{word-spacing:-0.840000px;}
.ws16_c00257{word-spacing:-0.720000px;}
.wsb_c00257{word-spacing:-0.504000px;}
.ws4_c00257{word-spacing:0.000000px;}
.ws8_c00257{word-spacing:3.240000px;}
.ws17_c00257{word-spacing:3.312000px;}
.wsa_c00257{word-spacing:4.680000px;}
.ws9_c00257{word-spacing:4.968000px;}
.ws14_c00257{word-spacing:6.264000px;}
.wse_c00257{word-spacing:6.552000px;}
.ws11_c00257{word-spacing:7.272000px;}
.ws7_c00257{word-spacing:7.344000px;}
.ws10_c00257{word-spacing:9.648000px;}
.ws6_c00257{word-spacing:11.952000px;}
.ws12_c00257{word-spacing:12.168000px;}
.ws13_c00257{word-spacing:16.920000px;}
.ws15_c00257{word-spacing:17.424000px;}
.wsf_c00257{word-spacing:26.280000px;}
._0_c00257{margin-left:-480.336000px;}
._1_c00257{margin-left:-4.200000px;}
._2_c00257{margin-left:-1.440000px;}
.fc3_c00257{color:rgb(32,32,32);}
.fc2_c00257{color:rgb(233,83,14);}
.fc1_c00257{color:rgb(232,86,17);}
.fc4_c00257{color:rgb(157,157,156);}
.fc0_c00257{color:rgb(60,60,59);}
.fs1_c00257{font-size:42.000000px;}
.fs0_c00257{font-size:60.000000px;}
.fs5_c00257{font-size:66.000000px;}
.fs4_c00257{font-size:72.000000px;}
.fs3_c00257{font-size:84.000000px;}
.fs2_c00257{font-size:108.000000px;}
.y0_c00257{bottom:0.000000px;}
.y1_c00257{bottom:41.250000px;}
.y18_c00257{bottom:166.328700px;}
.y17_c00257{bottom:196.334700px;}
.y16_c00257{bottom:256.334700px;}
.y15_c00257{bottom:346.232700px;}
.y14_c00257{bottom:376.238700px;}
.y13_c00257{bottom:406.244700px;}
.y12_c00257{bottom:436.250700px;}
.y11_c00257{bottom:466.256700px;}
.y10_c00257{bottom:496.262700px;}
.yf_c00257{bottom:526.268700px;}
.ye_c00257{bottom:556.274700px;}
.yd_c00257{bottom:586.280700px;}
.yc_c00257{bottom:616.286700px;}
.yb_c00257{bottom:646.292700px;}
.ya_c00257{bottom:676.298700px;}
.y9_c00257{bottom:706.304700px;}
.y8_c00257{bottom:736.310700px;}
.y1d_c00257{bottom:736.334700px;}
.y7_c00257{bottom:766.316700px;}
.y1c_c00257{bottom:766.334700px;}
.y6_c00257{bottom:796.322700px;}
.y1b_c00257{bottom:796.334700px;}
.y5_c00257{bottom:826.328700px;}
.y1a_c00257{bottom:826.334700px;}
.y4_c00257{bottom:856.334700px;}
.y19_c00257{bottom:857.010900px;}
.y3_c00257{bottom:916.334700px;}
.y2_c00257{bottom:1006.334700px;}
.h6_c00257{height:50.292000px;}
.h2_c00257{height:54.000000px;}
.h5_c00257{height:64.800000px;}
.h4_c00257{height:78.540000px;}
.h3_c00257{height:100.980000px;}
.h0_c00257{height:1262.835000px;}
.h1_c00257{height:1263.000000px;}
.w0_c00257{width:892.914000px;}
.w1_c00257{width:893.250000px;}
.x0_c00257{left:0.000000px;}
.x2_c00257{left:82.500000px;}
.x3_c00257{left:90.000000px;}
.x4_c00257{left:106.500000px;}
.x5_c00257{left:675.611100px;}
.x1_c00257{left:786.938550px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls5_c00257{letter-spacing:-0.480000pt;}
.ls4_c00257{letter-spacing:0.000000pt;}
.ls0_c00257{letter-spacing:0.640000pt;}
.ls1_c00257{letter-spacing:0.746667pt;}
.ls3_c00257{letter-spacing:1.333333pt;}
.ls2_c00257{letter-spacing:1.466667pt;}
.ws1_c00257{word-spacing:-18.720000pt;}
.ws2_c00257{word-spacing:-15.680000pt;}
.ws3_c00257{word-spacing:-13.200000pt;}
.ws0_c00257{word-spacing:-9.066667pt;}
.wsd_c00257{word-spacing:-3.008000pt;}
.wsc_c00257{word-spacing:-1.600000pt;}
.ws18_c00257{word-spacing:-1.333333pt;}
.ws5_c00257{word-spacing:-0.746667pt;}
.ws16_c00257{word-spacing:-0.640000pt;}
.wsb_c00257{word-spacing:-0.448000pt;}
.ws4_c00257{word-spacing:0.000000pt;}
.ws8_c00257{word-spacing:2.880000pt;}
.ws17_c00257{word-spacing:2.944000pt;}
.wsa_c00257{word-spacing:4.160000pt;}
.ws9_c00257{word-spacing:4.416000pt;}
.ws14_c00257{word-spacing:5.568000pt;}
.wse_c00257{word-spacing:5.824000pt;}
.ws11_c00257{word-spacing:6.464000pt;}
.ws7_c00257{word-spacing:6.528000pt;}
.ws10_c00257{word-spacing:8.576000pt;}
.ws6_c00257{word-spacing:10.624000pt;}
.ws12_c00257{word-spacing:10.816000pt;}
.ws13_c00257{word-spacing:15.040000pt;}
.ws15_c00257{word-spacing:15.488000pt;}
.wsf_c00257{word-spacing:23.360000pt;}
._0_c00257{margin-left:-426.965333pt;}
._1_c00257{margin-left:-3.733333pt;}
._2_c00257{margin-left:-1.280000pt;}
.fs1_c00257{font-size:37.333333pt;}
.fs0_c00257{font-size:53.333333pt;}
.fs5_c00257{font-size:58.666667pt;}
.fs4_c00257{font-size:64.000000pt;}
.fs3_c00257{font-size:74.666667pt;}
.fs2_c00257{font-size:96.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y1_c00257{bottom:36.666667pt;}
.y18_c00257{bottom:147.847733pt;}
.y17_c00257{bottom:174.519733pt;}
.y16_c00257{bottom:227.853067pt;}
.y15_c00257{bottom:307.762400pt;}
.y14_c00257{bottom:334.434400pt;}
.y13_c00257{bottom:361.106400pt;}
.y12_c00257{bottom:387.778400pt;}
.y11_c00257{bottom:414.450400pt;}
.y10_c00257{bottom:441.122400pt;}
.yf_c00257{bottom:467.794400pt;}
.ye_c00257{bottom:494.466400pt;}
.yd_c00257{bottom:521.138400pt;}
.yc_c00257{bottom:547.810400pt;}
.yb_c00257{bottom:574.482400pt;}
.ya_c00257{bottom:601.154400pt;}
.y9_c00257{bottom:627.826400pt;}
.y8_c00257{bottom:654.498400pt;}
.y1d_c00257{bottom:654.519733pt;}
.y7_c00257{bottom:681.170400pt;}
.y1c_c00257{bottom:681.186400pt;}
.y6_c00257{bottom:707.842400pt;}
.y1b_c00257{bottom:707.853067pt;}
.y5_c00257{bottom:734.514400pt;}
.y1a_c00257{bottom:734.519733pt;}
.y4_c00257{bottom:761.186400pt;}
.y19_c00257{bottom:761.787467pt;}
.y3_c00257{bottom:814.519733pt;}
.y2_c00257{bottom:894.519733pt;}
.h6_c00257{height:44.704000pt;}
.h2_c00257{height:48.000000pt;}
.h5_c00257{height:57.600000pt;}
.h4_c00257{height:69.813333pt;}
.h3_c00257{height:89.760000pt;}
.h0_c00257{height:1122.520000pt;}
.h1_c00257{height:1122.666667pt;}
.w0_c00257{width:793.701333pt;}
.w1_c00257{width:794.000000pt;}
.x0_c00257{left:0.000000pt;}
.x2_c00257{left:73.333333pt;}
.x3_c00257{left:80.000000pt;}
.x4_c00257{left:94.666667pt;}
.x5_c00257{left:600.543200pt;}
.x1_c00257{left:699.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.160000;font-style:normal;font-weight:normal;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_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.199000;font-style: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);}
.m1_c00258{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls2_c00258{letter-spacing:0.000000px;}
.ls1_c00258{letter-spacing:0.720000px;}
.ls0_c00258{letter-spacing:0.840000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00258{word-spacing:-12.960000px;}
.ws0_c00258{word-spacing:-10.200000px;}
.ws5_c00258{word-spacing:-0.840000px;}
.ws2_c00258{word-spacing:0.000000px;}
.wse_c00258{word-spacing:0.792000px;}
.wsc_c00258{word-spacing:1.368000px;}
.wsd_c00258{word-spacing:2.232000px;}
.wsb_c00258{word-spacing:3.384000px;}
.ws3_c00258{word-spacing:4.824000px;}
.wsa_c00258{word-spacing:5.256000px;}
.ws4_c00258{word-spacing:6.840000px;}
.ws6_c00258{word-spacing:8.136000px;}
.ws9_c00258{word-spacing:12.384000px;}
.ws7_c00258{word-spacing:15.552000px;}
.ws8_c00258{word-spacing:18.216000px;}
._0_c00258{margin-left:-480.336000px;}
._1_c00258{margin-left:-4.200000px;}
._2_c00258{margin-left:-1.440000px;}
.fc2_c00258{color:rgb(32,32,32);}
.fc1_c00258{color:rgb(232,86,17);}
.fc0_c00258{color:rgb(60,60,59);}
.fs1_c00258{font-size:42.000000px;}
.fs0_c00258{font-size:60.000000px;}
.fs3_c00258{font-size:72.000000px;}
.fs2_c00258{font-size:84.000000px;}
.y0_c00258{bottom:0.000000px;}
.y1_c00258{bottom:41.250000px;}
.y13_c00258{bottom:286.316700px;}
.y12_c00258{bottom:316.322700px;}
.y11_c00258{bottom:346.328700px;}
.y10_c00258{bottom:376.334700px;}
.yf_c00258{bottom:436.334700px;}
.ye_c00258{bottom:526.292700px;}
.yd_c00258{bottom:556.298700px;}
.yc_c00258{bottom:586.304700px;}
.yb_c00258{bottom:616.310700px;}
.ya_c00258{bottom:646.316700px;}
.y9_c00258{bottom:676.322700px;}
.y8_c00258{bottom:706.328700px;}
.y7_c00258{bottom:736.334700px;}
.y6_c00258{bottom:796.334700px;}
.y5_c00258{bottom:886.322700px;}
.y4_c00258{bottom:916.328700px;}
.y3_c00258{bottom:946.334700px;}
.y2_c00258{bottom:1006.334700px;}
.h2_c00258{height:54.000000px;}
.h4_c00258{height:64.800000px;}
.h3_c00258{height:78.540000px;}
.h0_c00258{height:1262.835000px;}
.h1_c00258{height:1263.000000px;}
.w0_c00258{width:892.914000px;}
.w1_c00258{width:893.250000px;}
.x0_c00258{left:0.000000px;}
.x2_c00258{left:90.000000px;}
.x3_c00258{left:106.500000px;}
.x1_c00258{left:786.863550px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls2_c00258{letter-spacing:0.000000pt;}
.ls1_c00258{letter-spacing:0.640000pt;}
.ls0_c00258{letter-spacing:0.746667pt;}
.ws1_c00258{word-spacing:-11.520000pt;}
.ws0_c00258{word-spacing:-9.066667pt;}
.ws5_c00258{word-spacing:-0.746667pt;}
.ws2_c00258{word-spacing:0.000000pt;}
.wse_c00258{word-spacing:0.704000pt;}
.wsc_c00258{word-spacing:1.216000pt;}
.wsd_c00258{word-spacing:1.984000pt;}
.wsb_c00258{word-spacing:3.008000pt;}
.ws3_c00258{word-spacing:4.288000pt;}
.wsa_c00258{word-spacing:4.672000pt;}
.ws4_c00258{word-spacing:6.080000pt;}
.ws6_c00258{word-spacing:7.232000pt;}
.ws9_c00258{word-spacing:11.008000pt;}
.ws7_c00258{word-spacing:13.824000pt;}
.ws8_c00258{word-spacing:16.192000pt;}
._0_c00258{margin-left:-426.965333pt;}
._1_c00258{margin-left:-3.733333pt;}
._2_c00258{margin-left:-1.280000pt;}
.fs1_c00258{font-size:37.333333pt;}
.fs0_c00258{font-size:53.333333pt;}
.fs3_c00258{font-size:64.000000pt;}
.fs2_c00258{font-size:74.666667pt;}
.y0_c00258{bottom:0.000000pt;}
.y1_c00258{bottom:36.666667pt;}
.y13_c00258{bottom:254.503733pt;}
.y12_c00258{bottom:281.175733pt;}
.y11_c00258{bottom:307.847733pt;}
.y10_c00258{bottom:334.519733pt;}
.yf_c00258{bottom:387.853067pt;}
.ye_c00258{bottom:467.815733pt;}
.yd_c00258{bottom:494.487733pt;}
.yc_c00258{bottom:521.159733pt;}
.yb_c00258{bottom:547.831733pt;}
.ya_c00258{bottom:574.503733pt;}
.y9_c00258{bottom:601.175733pt;}
.y8_c00258{bottom:627.847733pt;}
.y7_c00258{bottom:654.519733pt;}
.y6_c00258{bottom:707.853067pt;}
.y5_c00258{bottom:787.842400pt;}
.y4_c00258{bottom:814.514400pt;}
.y3_c00258{bottom:841.186400pt;}
.y2_c00258{bottom:894.519733pt;}
.h2_c00258{height:48.000000pt;}
.h4_c00258{height:57.600000pt;}
.h3_c00258{height:69.813333pt;}
.h0_c00258{height:1122.520000pt;}
.h1_c00258{height:1122.666667pt;}
.w0_c00258{width:793.701333pt;}
.w1_c00258{width:794.000000pt;}
.x0_c00258{left:0.000000pt;}
.x2_c00258{left:80.000000pt;}
.x3_c00258{left:94.666667pt;}
.x1_c00258{left:699.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a378ba6f218df5456748c66d.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.160000;font-style:normal;font-weight:normal;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_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:1.161000;font-style: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);}
.m1_c00259{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls6_c00259{letter-spacing:-0.324000px;}
.ls5_c00259{letter-spacing:0.000000px;}
.ls1_c00259{letter-spacing:0.720000px;}
.ls2_c00259{letter-spacing:0.840000px;}
.ls4_c00259{letter-spacing:1.500000px;}
.ls3_c00259{letter-spacing:1.650000px;}
.ls0_c00259{letter-spacing:12.888000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00259{word-spacing:-21.276000px;}
.ws2_c00259{word-spacing:-17.640000px;}
.ws3_c00259{word-spacing:-14.850000px;}
.ws0_c00259{word-spacing:-10.200000px;}
.ws12_c00259{word-spacing:-4.968000px;}
.ws16_c00259{word-spacing:-2.160000px;}
.ws17_c00259{word-spacing:-1.500000px;}
.ws5_c00259{word-spacing:-0.840000px;}
.wsc_c00259{word-spacing:-0.720000px;}
.ws11_c00259{word-spacing:-0.360000px;}
.ws4_c00259{word-spacing:0.000000px;}
.ws7_c00259{word-spacing:1.872000px;}
.ws8_c00259{word-spacing:3.672000px;}
.ws13_c00259{word-spacing:3.960000px;}
.wse_c00259{word-spacing:4.752000px;}
.wsa_c00259{word-spacing:5.832000px;}
.ws14_c00259{word-spacing:6.624000px;}
.ws9_c00259{word-spacing:8.424000px;}
.wsd_c00259{word-spacing:9.432000px;}
.wsf_c00259{word-spacing:10.296000px;}
.ws6_c00259{word-spacing:10.368000px;}
.ws15_c00259{word-spacing:10.584000px;}
.wsb_c00259{word-spacing:13.392000px;}
.ws10_c00259{word-spacing:14.760000px;}
._0_c00259{margin-left:-480.336600px;}
._4_c00259{margin-left:-5.706000px;}
._1_c00259{margin-left:-4.200000px;}
._3_c00259{margin-left:-2.343600px;}
._2_c00259{margin-left:-1.134000px;}
.fc3_c00259{color:rgb(32,32,32);}
.fc2_c00259{color:rgb(233,83,14);}
.fc1_c00259{color:rgb(232,86,17);}
.fc4_c00259{color:rgb(157,157,156);}
.fc0_c00259{color:rgb(60,60,59);}
.fs1_c00259{font-size:42.000000px;}
.fs0_c00259{font-size:60.000000px;}
.fs5_c00259{font-size:66.000000px;}
.fs4_c00259{font-size:72.000000px;}
.fs3_c00259{font-size:84.000000px;}
.fs2_c00259{font-size:108.000000px;}
.y0_c00259{bottom:0.000000px;}
.y1_c00259{bottom:41.250000px;}
.y17_c00259{bottom:196.328700px;}
.y16_c00259{bottom:226.334700px;}
.y15_c00259{bottom:286.334700px;}
.y14_c00259{bottom:376.238700px;}
.y13_c00259{bottom:406.244700px;}
.y12_c00259{bottom:436.250700px;}
.y11_c00259{bottom:466.256700px;}
.y10_c00259{bottom:496.262700px;}
.yf_c00259{bottom:526.268700px;}
.ye_c00259{bottom:556.274700px;}
.yd_c00259{bottom:586.280700px;}
.yc_c00259{bottom:616.286700px;}
.yb_c00259{bottom:646.292700px;}
.ya_c00259{bottom:676.298700px;}
.y9_c00259{bottom:706.304700px;}
.y8_c00259{bottom:736.310700px;}
.y1c_c00259{bottom:736.334700px;}
.y7_c00259{bottom:766.316700px;}
.y1b_c00259{bottom:766.334700px;}
.y6_c00259{bottom:796.322700px;}
.y1a_c00259{bottom:796.334700px;}
.y5_c00259{bottom:826.328700px;}
.y19_c00259{bottom:826.334700px;}
.y4_c00259{bottom:856.334700px;}
.y18_c00259{bottom:857.010900px;}
.y3_c00259{bottom:916.334700px;}
.y2_c00259{bottom:1006.334700px;}
.h7_c00259{height:50.292000px;}
.h2_c00259{height:54.000000px;}
.h6_c00259{height:64.800000px;}
.h5_c00259{height:67.320000px;}
.h4_c00259{height:78.540000px;}
.h3_c00259{height:100.980000px;}
.h0_c00259{height:1262.835000px;}
.h1_c00259{height:1263.000000px;}
.w0_c00259{width:892.914000px;}
.w1_c00259{width:893.250000px;}
.x0_c00259{left:0.000000px;}
.x2_c00259{left:82.500000px;}
.x3_c00259{left:90.000000px;}
.x4_c00259{left:106.500000px;}
.x5_c00259{left:675.611100px;}
.x1_c00259{left:785.753700px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls6_c00259{letter-spacing:-0.288000pt;}
.ls5_c00259{letter-spacing:0.000000pt;}
.ls1_c00259{letter-spacing:0.640000pt;}
.ls2_c00259{letter-spacing:0.746667pt;}
.ls4_c00259{letter-spacing:1.333333pt;}
.ls3_c00259{letter-spacing:1.466667pt;}
.ls0_c00259{letter-spacing:11.456000pt;}
.ws1_c00259{word-spacing:-18.912000pt;}
.ws2_c00259{word-spacing:-15.680000pt;}
.ws3_c00259{word-spacing:-13.200000pt;}
.ws0_c00259{word-spacing:-9.066667pt;}
.ws12_c00259{word-spacing:-4.416000pt;}
.ws16_c00259{word-spacing:-1.920000pt;}
.ws17_c00259{word-spacing:-1.333333pt;}
.ws5_c00259{word-spacing:-0.746667pt;}
.wsc_c00259{word-spacing:-0.640000pt;}
.ws11_c00259{word-spacing:-0.320000pt;}
.ws4_c00259{word-spacing:0.000000pt;}
.ws7_c00259{word-spacing:1.664000pt;}
.ws8_c00259{word-spacing:3.264000pt;}
.ws13_c00259{word-spacing:3.520000pt;}
.wse_c00259{word-spacing:4.224000pt;}
.wsa_c00259{word-spacing:5.184000pt;}
.ws14_c00259{word-spacing:5.888000pt;}
.ws9_c00259{word-spacing:7.488000pt;}
.wsd_c00259{word-spacing:8.384000pt;}
.wsf_c00259{word-spacing:9.152000pt;}
.ws6_c00259{word-spacing:9.216000pt;}
.ws15_c00259{word-spacing:9.408000pt;}
.wsb_c00259{word-spacing:11.904000pt;}
.ws10_c00259{word-spacing:13.120000pt;}
._0_c00259{margin-left:-426.965867pt;}
._4_c00259{margin-left:-5.072000pt;}
._1_c00259{margin-left:-3.733333pt;}
._3_c00259{margin-left:-2.083200pt;}
._2_c00259{margin-left:-1.008000pt;}
.fs1_c00259{font-size:37.333333pt;}
.fs0_c00259{font-size:53.333333pt;}
.fs5_c00259{font-size:58.666667pt;}
.fs4_c00259{font-size:64.000000pt;}
.fs3_c00259{font-size:74.666667pt;}
.fs2_c00259{font-size:96.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.y1_c00259{bottom:36.666667pt;}
.y17_c00259{bottom:174.514400pt;}
.y16_c00259{bottom:201.186400pt;}
.y15_c00259{bottom:254.519733pt;}
.y14_c00259{bottom:334.434400pt;}
.y13_c00259{bottom:361.106400pt;}
.y12_c00259{bottom:387.778400pt;}
.y11_c00259{bottom:414.450400pt;}
.y10_c00259{bottom:441.122400pt;}
.yf_c00259{bottom:467.794400pt;}
.ye_c00259{bottom:494.466400pt;}
.yd_c00259{bottom:521.138400pt;}
.yc_c00259{bottom:547.810400pt;}
.yb_c00259{bottom:574.482400pt;}
.ya_c00259{bottom:601.154400pt;}
.y9_c00259{bottom:627.826400pt;}
.y8_c00259{bottom:654.498400pt;}
.y1c_c00259{bottom:654.519733pt;}
.y7_c00259{bottom:681.170400pt;}
.y1b_c00259{bottom:681.186400pt;}
.y6_c00259{bottom:707.842400pt;}
.y1a_c00259{bottom:707.853067pt;}
.y5_c00259{bottom:734.514400pt;}
.y19_c00259{bottom:734.519733pt;}
.y4_c00259{bottom:761.186400pt;}
.y18_c00259{bottom:761.787467pt;}
.y3_c00259{bottom:814.519733pt;}
.y2_c00259{bottom:894.519733pt;}
.h7_c00259{height:44.704000pt;}
.h2_c00259{height:48.000000pt;}
.h6_c00259{height:57.600000pt;}
.h5_c00259{height:59.840000pt;}
.h4_c00259{height:69.813333pt;}
.h3_c00259{height:89.760000pt;}
.h0_c00259{height:1122.520000pt;}
.h1_c00259{height:1122.666667pt;}
.w0_c00259{width:793.701333pt;}
.w1_c00259{width:794.000000pt;}
.x0_c00259{left:0.000000pt;}
.x2_c00259{left:73.333333pt;}
.x3_c00259{left:80.000000pt;}
.x4_c00259{left:94.666667pt;}
.x5_c00259{left:600.543200pt;}
.x1_c00259{left:698.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a378ba6f218df5456748c66d.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.160000;font-style:normal;font-weight:normal;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_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.199000;font-style: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);}
.m1_c00260{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls1_c00260{letter-spacing:0.000000px;}
.ls0_c00260{letter-spacing:0.720000px;}
.ls2_c00260{letter-spacing:0.840000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:-10.200000px;}
.ws2_c00260{word-spacing:-1.584000px;}
.ws4_c00260{word-spacing:-0.840000px;}
.wsb_c00260{word-spacing:-0.720000px;}
.ws1_c00260{word-spacing:0.000000px;}
.ws7_c00260{word-spacing:2.088000px;}
.ws8_c00260{word-spacing:2.592000px;}
.wsd_c00260{word-spacing:3.312000px;}
.wse_c00260{word-spacing:4.176000px;}
.ws9_c00260{word-spacing:4.608000px;}
.ws5_c00260{word-spacing:4.680000px;}
.wsa_c00260{word-spacing:7.704000px;}
.ws3_c00260{word-spacing:7.920000px;}
.ws6_c00260{word-spacing:8.280000px;}
.wsc_c00260{word-spacing:15.768000px;}
._0_c00260{margin-left:-480.337200px;}
._4_c00260{margin-left:-5.760000px;}
._1_c00260{margin-left:-4.200000px;}
._2_c00260{margin-left:-2.880000px;}
._3_c00260{margin-left:-1.440000px;}
.fc2_c00260{color:rgb(32,32,32);}
.fc1_c00260{color:rgb(232,86,17);}
.fc0_c00260{color:rgb(60,60,59);}
.fs1_c00260{font-size:42.000000px;}
.fs0_c00260{font-size:60.000000px;}
.fs3_c00260{font-size:72.000000px;}
.fs2_c00260{font-size:84.000000px;}
.y0_c00260{bottom:0.000000px;}
.y1_c00260{bottom:41.250000px;}
.y12_c00260{bottom:316.316700px;}
.y11_c00260{bottom:346.322700px;}
.y10_c00260{bottom:376.328700px;}
.yf_c00260{bottom:406.334700px;}
.ye_c00260{bottom:466.334700px;}
.yd_c00260{bottom:556.298700px;}
.yc_c00260{bottom:586.304700px;}
.yb_c00260{bottom:616.310700px;}
.ya_c00260{bottom:646.316700px;}
.y9_c00260{bottom:676.322700px;}
.y8_c00260{bottom:706.328700px;}
.y7_c00260{bottom:736.334700px;}
.y6_c00260{bottom:796.334700px;}
.y5_c00260{bottom:886.322700px;}
.y4_c00260{bottom:916.328700px;}
.y3_c00260{bottom:946.334700px;}
.y2_c00260{bottom:1006.334700px;}
.h2_c00260{height:54.000000px;}
.h4_c00260{height:64.800000px;}
.h3_c00260{height:78.540000px;}
.h0_c00260{height:1262.835000px;}
.h1_c00260{height:1263.000000px;}
.w0_c00260{width:892.914000px;}
.w1_c00260{width:893.250000px;}
.x0_c00260{left:0.000000px;}
.x2_c00260{left:90.000000px;}
.x3_c00260{left:106.500000px;}
.x1_c00260{left:789.413850px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls1_c00260{letter-spacing:0.000000pt;}
.ls0_c00260{letter-spacing:0.640000pt;}
.ls2_c00260{letter-spacing:0.746667pt;}
.ws0_c00260{word-spacing:-9.066667pt;}
.ws2_c00260{word-spacing:-1.408000pt;}
.ws4_c00260{word-spacing:-0.746667pt;}
.wsb_c00260{word-spacing:-0.640000pt;}
.ws1_c00260{word-spacing:0.000000pt;}
.ws7_c00260{word-spacing:1.856000pt;}
.ws8_c00260{word-spacing:2.304000pt;}
.wsd_c00260{word-spacing:2.944000pt;}
.wse_c00260{word-spacing:3.712000pt;}
.ws9_c00260{word-spacing:4.096000pt;}
.ws5_c00260{word-spacing:4.160000pt;}
.wsa_c00260{word-spacing:6.848000pt;}
.ws3_c00260{word-spacing:7.040000pt;}
.ws6_c00260{word-spacing:7.360000pt;}
.wsc_c00260{word-spacing:14.016000pt;}
._0_c00260{margin-left:-426.966400pt;}
._4_c00260{margin-left:-5.120000pt;}
._1_c00260{margin-left:-3.733333pt;}
._2_c00260{margin-left:-2.560000pt;}
._3_c00260{margin-left:-1.280000pt;}
.fs1_c00260{font-size:37.333333pt;}
.fs0_c00260{font-size:53.333333pt;}
.fs3_c00260{font-size:64.000000pt;}
.fs2_c00260{font-size:74.666667pt;}
.y0_c00260{bottom:0.000000pt;}
.y1_c00260{bottom:36.666667pt;}
.y12_c00260{bottom:281.170400pt;}
.y11_c00260{bottom:307.842400pt;}
.y10_c00260{bottom:334.514400pt;}
.yf_c00260{bottom:361.186400pt;}
.ye_c00260{bottom:414.519733pt;}
.yd_c00260{bottom:494.487733pt;}
.yc_c00260{bottom:521.159733pt;}
.yb_c00260{bottom:547.831733pt;}
.ya_c00260{bottom:574.503733pt;}
.y9_c00260{bottom:601.175733pt;}
.y8_c00260{bottom:627.847733pt;}
.y7_c00260{bottom:654.519733pt;}
.y6_c00260{bottom:707.853067pt;}
.y5_c00260{bottom:787.842400pt;}
.y4_c00260{bottom:814.514400pt;}
.y3_c00260{bottom:841.186400pt;}
.y2_c00260{bottom:894.519733pt;}
.h2_c00260{height:48.000000pt;}
.h4_c00260{height:57.600000pt;}
.h3_c00260{height:69.813333pt;}
.h0_c00260{height:1122.520000pt;}
.h1_c00260{height:1122.666667pt;}
.w0_c00260{width:793.701333pt;}
.w1_c00260{width:794.000000pt;}
.x0_c00260{left:0.000000pt;}
.x2_c00260{left:80.000000pt;}
.x3_c00260{left:94.666667pt;}
.x1_c00260{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00261;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00261;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00261;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00261{font-family:ff5_c00261;line-height:1.155000;font-style: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);}
.m1_c00261{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls2_c00261{letter-spacing:0.000000px;}
.ls0_c00261{letter-spacing:0.864000px;}
.ls1_c00261{letter-spacing:1.200000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00261{word-spacing:-13.104000px;}
.ws0_c00261{word-spacing:-10.200000px;}
.ws8_c00261{word-spacing:-9.240000px;}
.ws7_c00261{word-spacing:-5.040000px;}
.ws5_c00261{word-spacing:-3.528000px;}
.ws4_c00261{word-spacing:-2.664000px;}
.ws6_c00261{word-spacing:-2.016000px;}
.ws3_c00261{word-spacing:-0.864000px;}
.ws2_c00261{word-spacing:0.000000px;}
._0_c00261{margin-left:-480.336000px;}
._9_c00261{margin-left:-9.696000px;}
._7_c00261{margin-left:-8.496000px;}
._5_c00261{margin-left:-7.056000px;}
._6_c00261{margin-left:-5.760000px;}
._1_c00261{margin-left:-4.200000px;}
._2_c00261{margin-left:-2.304000px;}
._3_c00261{margin-left:-1.152000px;}
._4_c00261{width:3.528000px;}
._8_c00261{width:5.904000px;}
.fc3_c00261{color:rgb(255,255,255);}
.fc2_c00261{color:rgb(233,83,14);}
.fc1_c00261{color:rgb(232,86,17);}
.fc0_c00261{color:rgb(60,60,59);}
.fs1_c00261{font-size:42.000000px;}
.fs0_c00261{font-size:60.000000px;}
.fs3_c00261{font-size:72.000000px;}
.fs4_c00261{font-size:120.000000px;}
.fs2_c00261{font-size:360.000000px;}
.y0_c00261{bottom:0.000000px;}
.y1_c00261{bottom:41.250000px;}
.y12_c00261{bottom:304.256700px;}
.y11_c00261{bottom:325.262700px;}
.y10_c00261{bottom:346.268700px;}
.yf_c00261{bottom:394.274700px;}
.ye_c00261{bottom:415.280700px;}
.yd_c00261{bottom:436.286700px;}
.yc_c00261{bottom:484.292700px;}
.yb_c00261{bottom:505.298700px;}
.ya_c00261{bottom:526.304700px;}
.y9_c00261{bottom:574.310700px;}
.y8_c00261{bottom:595.316700px;}
.y7_c00261{bottom:616.322700px;}
.y6_c00261{bottom:664.328700px;}
.y5_c00261{bottom:685.334700px;}
.y4_c00261{bottom:706.340700px;}
.y3_c00261{bottom:752.834700px;}
.y16_c00261{bottom:916.334700px;}
.y15_c00261{bottom:946.334700px;}
.y14_c00261{bottom:976.334700px;}
.y13_c00261{bottom:1006.334700px;}
.y2_c00261{bottom:1093.526700px;}
.h2_c00261{height:54.000000px;}
.h5_c00261{height:64.800000px;}
.h4_c00261{height:66.456000px;}
.h6_c00261{height:112.200000px;}
.h3_c00261{height:324.000000px;}
.h0_c00261{height:1262.835000px;}
.h1_c00261{height:1263.000000px;}
.w0_c00261{width:892.914000px;}
.w1_c00261{width:893.250000px;}
.x0_c00261{left:0.000000px;}
.x2_c00261{left:81.290250px;}
.x3_c00261{left:82.393650px;}
.x5_c00261{left:112.287450px;}
.x4_c00261{left:127.393650px;}
.x1_c00261{left:786.938550px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls2_c00261{letter-spacing:0.000000pt;}
.ls0_c00261{letter-spacing:0.768000pt;}
.ls1_c00261{letter-spacing:1.066667pt;}
.ws1_c00261{word-spacing:-11.648000pt;}
.ws0_c00261{word-spacing:-9.066667pt;}
.ws8_c00261{word-spacing:-8.213333pt;}
.ws7_c00261{word-spacing:-4.480000pt;}
.ws5_c00261{word-spacing:-3.136000pt;}
.ws4_c00261{word-spacing:-2.368000pt;}
.ws6_c00261{word-spacing:-1.792000pt;}
.ws3_c00261{word-spacing:-0.768000pt;}
.ws2_c00261{word-spacing:0.000000pt;}
._0_c00261{margin-left:-426.965333pt;}
._9_c00261{margin-left:-8.618667pt;}
._7_c00261{margin-left:-7.552000pt;}
._5_c00261{margin-left:-6.272000pt;}
._6_c00261{margin-left:-5.120000pt;}
._1_c00261{margin-left:-3.733333pt;}
._2_c00261{margin-left:-2.048000pt;}
._3_c00261{margin-left:-1.024000pt;}
._4_c00261{width:3.136000pt;}
._8_c00261{width:5.248000pt;}
.fs1_c00261{font-size:37.333333pt;}
.fs0_c00261{font-size:53.333333pt;}
.fs3_c00261{font-size:64.000000pt;}
.fs4_c00261{font-size:106.666667pt;}
.fs2_c00261{font-size:320.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y1_c00261{bottom:36.666667pt;}
.y12_c00261{bottom:270.450400pt;}
.y11_c00261{bottom:289.122400pt;}
.y10_c00261{bottom:307.794400pt;}
.yf_c00261{bottom:350.466400pt;}
.ye_c00261{bottom:369.138400pt;}
.yd_c00261{bottom:387.810400pt;}
.yc_c00261{bottom:430.482400pt;}
.yb_c00261{bottom:449.154400pt;}
.ya_c00261{bottom:467.826400pt;}
.y9_c00261{bottom:510.498400pt;}
.y8_c00261{bottom:529.170400pt;}
.y7_c00261{bottom:547.842400pt;}
.y6_c00261{bottom:590.514400pt;}
.y5_c00261{bottom:609.186400pt;}
.y4_c00261{bottom:627.858400pt;}
.y3_c00261{bottom:669.186400pt;}
.y16_c00261{bottom:814.519733pt;}
.y15_c00261{bottom:841.186400pt;}
.y14_c00261{bottom:867.853067pt;}
.y13_c00261{bottom:894.519733pt;}
.y2_c00261{bottom:972.023733pt;}
.h2_c00261{height:48.000000pt;}
.h5_c00261{height:57.600000pt;}
.h4_c00261{height:59.072000pt;}
.h6_c00261{height:99.733333pt;}
.h3_c00261{height:288.000000pt;}
.h0_c00261{height:1122.520000pt;}
.h1_c00261{height:1122.666667pt;}
.w0_c00261{width:793.701333pt;}
.w1_c00261{width:794.000000pt;}
.x0_c00261{left:0.000000pt;}
.x2_c00261{left:72.258000pt;}
.x3_c00261{left:73.238800pt;}
.x5_c00261{left:99.811067pt;}
.x4_c00261{left:113.238800pt;}
.x1_c00261{left:699.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00262;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.161000;font-style: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);}
.m1_c00262{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls5_c00262{letter-spacing:-0.540000px;}
.ls4_c00262{letter-spacing:0.000000px;}
.ls0_c00262{letter-spacing:0.720000px;}
.ls1_c00262{letter-spacing:0.840000px;}
.ls3_c00262{letter-spacing:1.500000px;}
.ls2_c00262{letter-spacing:1.650000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00262{word-spacing:-21.060000px;}
.ws2_c00262{word-spacing:-17.640000px;}
.ws3_c00262{word-spacing:-11.700000px;}
.ws0_c00262{word-spacing:-10.200000px;}
.ws17_c00262{word-spacing:-2.664000px;}
.wsb_c00262{word-spacing:-1.728000px;}
.ws18_c00262{word-spacing:-1.500000px;}
.ws5_c00262{word-spacing:-0.840000px;}
.wsf_c00262{word-spacing:-0.432000px;}
.ws4_c00262{word-spacing:0.000000px;}
.ws9_c00262{word-spacing:0.936000px;}
.ws8_c00262{word-spacing:2.376000px;}
.wsc_c00262{word-spacing:2.664000px;}
.wsd_c00262{word-spacing:3.672000px;}
.wse_c00262{word-spacing:4.248000px;}
.ws15_c00262{word-spacing:4.752000px;}
.wsa_c00262{word-spacing:6.552000px;}
.ws7_c00262{word-spacing:7.560000px;}
.ws16_c00262{word-spacing:8.712000px;}
.ws14_c00262{word-spacing:9.216000px;}
.ws11_c00262{word-spacing:9.432000px;}
.ws6_c00262{word-spacing:11.592000px;}
.ws10_c00262{word-spacing:15.624000px;}
.ws13_c00262{word-spacing:24.552000px;}
.ws12_c00262{word-spacing:24.696000px;}
._0_c00262{margin-left:-480.336600px;}
._6_c00262{margin-left:-5.635200px;}
._1_c00262{margin-left:-4.200000px;}
._3_c00262{margin-left:-2.752800px;}
._2_c00262{margin-left:-1.440000px;}
._4_c00262{width:1.605600px;}
._7_c00262{width:4.106400px;}
._5_c00262{width:5.220000px;}
.fc3_c00262{color:rgb(32,32,32);}
.fc2_c00262{color:rgb(233,83,14);}
.fc1_c00262{color:rgb(232,86,17);}
.fc4_c00262{color:rgb(157,157,156);}
.fc0_c00262{color:rgb(60,60,59);}
.fs1_c00262{font-size:42.000000px;}
.fs0_c00262{font-size:60.000000px;}
.fs5_c00262{font-size:66.000000px;}
.fs4_c00262{font-size:72.000000px;}
.fs3_c00262{font-size:84.000000px;}
.fs2_c00262{font-size:108.000000px;}
.y0_c00262{bottom:0.000000px;}
.y1_c00262{bottom:41.250000px;}
.y18_c00262{bottom:166.298700px;}
.y17_c00262{bottom:196.304700px;}
.y16_c00262{bottom:226.310700px;}
.y15_c00262{bottom:256.316700px;}
.y14_c00262{bottom:286.322700px;}
.y13_c00262{bottom:316.328700px;}
.y12_c00262{bottom:346.334700px;}
.y11_c00262{bottom:406.334700px;}
.y10_c00262{bottom:496.262700px;}
.yf_c00262{bottom:526.268700px;}
.ye_c00262{bottom:556.274700px;}
.yd_c00262{bottom:586.280700px;}
.yc_c00262{bottom:616.286700px;}
.yb_c00262{bottom:646.292700px;}
.ya_c00262{bottom:676.298700px;}
.y9_c00262{bottom:706.304700px;}
.y1e_c00262{bottom:706.334700px;}
.y8_c00262{bottom:736.310700px;}
.y1d_c00262{bottom:736.334700px;}
.y7_c00262{bottom:766.316700px;}
.y1c_c00262{bottom:766.334700px;}
.y6_c00262{bottom:796.322700px;}
.y1b_c00262{bottom:796.334700px;}
.y5_c00262{bottom:826.328700px;}
.y1a_c00262{bottom:826.334700px;}
.y4_c00262{bottom:856.334700px;}
.y19_c00262{bottom:857.010900px;}
.y3_c00262{bottom:916.334700px;}
.y2_c00262{bottom:1006.334700px;}
.h6_c00262{height:50.292000px;}
.h2_c00262{height:54.000000px;}
.h5_c00262{height:64.800000px;}
.h4_c00262{height:78.540000px;}
.h3_c00262{height:100.980000px;}
.h0_c00262{height:1262.835000px;}
.h1_c00262{height:1263.000000px;}
.w0_c00262{width:892.914000px;}
.w1_c00262{width:893.250000px;}
.x0_c00262{left:0.000000px;}
.x2_c00262{left:82.500000px;}
.x3_c00262{left:90.000000px;}
.x4_c00262{left:106.500000px;}
.x5_c00262{left:675.611100px;}
.x1_c00262{left:786.788700px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls5_c00262{letter-spacing:-0.480000pt;}
.ls4_c00262{letter-spacing:0.000000pt;}
.ls0_c00262{letter-spacing:0.640000pt;}
.ls1_c00262{letter-spacing:0.746667pt;}
.ls3_c00262{letter-spacing:1.333333pt;}
.ls2_c00262{letter-spacing:1.466667pt;}
.ws1_c00262{word-spacing:-18.720000pt;}
.ws2_c00262{word-spacing:-15.680000pt;}
.ws3_c00262{word-spacing:-10.400000pt;}
.ws0_c00262{word-spacing:-9.066667pt;}
.ws17_c00262{word-spacing:-2.368000pt;}
.wsb_c00262{word-spacing:-1.536000pt;}
.ws18_c00262{word-spacing:-1.333333pt;}
.ws5_c00262{word-spacing:-0.746667pt;}
.wsf_c00262{word-spacing:-0.384000pt;}
.ws4_c00262{word-spacing:0.000000pt;}
.ws9_c00262{word-spacing:0.832000pt;}
.ws8_c00262{word-spacing:2.112000pt;}
.wsc_c00262{word-spacing:2.368000pt;}
.wsd_c00262{word-spacing:3.264000pt;}
.wse_c00262{word-spacing:3.776000pt;}
.ws15_c00262{word-spacing:4.224000pt;}
.wsa_c00262{word-spacing:5.824000pt;}
.ws7_c00262{word-spacing:6.720000pt;}
.ws16_c00262{word-spacing:7.744000pt;}
.ws14_c00262{word-spacing:8.192000pt;}
.ws11_c00262{word-spacing:8.384000pt;}
.ws6_c00262{word-spacing:10.304000pt;}
.ws10_c00262{word-spacing:13.888000pt;}
.ws13_c00262{word-spacing:21.824000pt;}
.ws12_c00262{word-spacing:21.952000pt;}
._0_c00262{margin-left:-426.965867pt;}
._6_c00262{margin-left:-5.009067pt;}
._1_c00262{margin-left:-3.733333pt;}
._3_c00262{margin-left:-2.446933pt;}
._2_c00262{margin-left:-1.280000pt;}
._4_c00262{width:1.427200pt;}
._7_c00262{width:3.650133pt;}
._5_c00262{width:4.640000pt;}
.fs1_c00262{font-size:37.333333pt;}
.fs0_c00262{font-size:53.333333pt;}
.fs5_c00262{font-size:58.666667pt;}
.fs4_c00262{font-size:64.000000pt;}
.fs3_c00262{font-size:74.666667pt;}
.fs2_c00262{font-size:96.000000pt;}
.y0_c00262{bottom:0.000000pt;}
.y1_c00262{bottom:36.666667pt;}
.y18_c00262{bottom:147.821067pt;}
.y17_c00262{bottom:174.493067pt;}
.y16_c00262{bottom:201.165067pt;}
.y15_c00262{bottom:227.837067pt;}
.y14_c00262{bottom:254.509067pt;}
.y13_c00262{bottom:281.181067pt;}
.y12_c00262{bottom:307.853067pt;}
.y11_c00262{bottom:361.186400pt;}
.y10_c00262{bottom:441.122400pt;}
.yf_c00262{bottom:467.794400pt;}
.ye_c00262{bottom:494.466400pt;}
.yd_c00262{bottom:521.138400pt;}
.yc_c00262{bottom:547.810400pt;}
.yb_c00262{bottom:574.482400pt;}
.ya_c00262{bottom:601.154400pt;}
.y9_c00262{bottom:627.826400pt;}
.y1e_c00262{bottom:627.853067pt;}
.y8_c00262{bottom:654.498400pt;}
.y1d_c00262{bottom:654.519733pt;}
.y7_c00262{bottom:681.170400pt;}
.y1c_c00262{bottom:681.186400pt;}
.y6_c00262{bottom:707.842400pt;}
.y1b_c00262{bottom:707.853067pt;}
.y5_c00262{bottom:734.514400pt;}
.y1a_c00262{bottom:734.519733pt;}
.y4_c00262{bottom:761.186400pt;}
.y19_c00262{bottom:761.787467pt;}
.y3_c00262{bottom:814.519733pt;}
.y2_c00262{bottom:894.519733pt;}
.h6_c00262{height:44.704000pt;}
.h2_c00262{height:48.000000pt;}
.h5_c00262{height:57.600000pt;}
.h4_c00262{height:69.813333pt;}
.h3_c00262{height:89.760000pt;}
.h0_c00262{height:1122.520000pt;}
.h1_c00262{height:1122.666667pt;}
.w0_c00262{width:793.701333pt;}
.w1_c00262{width:794.000000pt;}
.x0_c00262{left:0.000000pt;}
.x2_c00262{left:73.333333pt;}
.x3_c00262{left:80.000000pt;}
.x4_c00262{left:94.666667pt;}
.x5_c00262{left:600.543200pt;}
.x1_c00262{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.199000;font-style: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);}
.m1_c00263{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls1_c00263{letter-spacing:0.000000px;}
.ls0_c00263{letter-spacing:0.720000px;}
.ls2_c00263{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws5_c00263{word-spacing:-1.872000px;}
.ws9_c00263{word-spacing:-1.368000px;}
.ws2_c00263{word-spacing:-0.840000px;}
.ws8_c00263{word-spacing:-0.720000px;}
.ws4_c00263{word-spacing:-0.504000px;}
.ws1_c00263{word-spacing:0.000000px;}
.ws7_c00263{word-spacing:0.360000px;}
.ws6_c00263{word-spacing:1.656000px;}
.ws3_c00263{word-spacing:2.376000px;}
._0_c00263{margin-left:-480.336600px;}
._3_c00263{margin-left:-6.672000px;}
._1_c00263{margin-left:-4.200000px;}
._2_c00263{margin-left:-1.440000px;}
._4_c00263{width:1.368000px;}
.fc2_c00263{color:rgb(32,32,32);}
.fc1_c00263{color:rgb(232,86,17);}
.fc0_c00263{color:rgb(60,60,59);}
.fs1_c00263{font-size:42.000000px;}
.fs0_c00263{font-size:60.000000px;}
.fs3_c00263{font-size:72.000000px;}
.fs2_c00263{font-size:84.000000px;}
.y0_c00263{bottom:0.000000px;}
.y1_c00263{bottom:41.250000px;}
.yc_c00263{bottom:586.310700px;}
.yb_c00263{bottom:616.316700px;}
.ya_c00263{bottom:646.322700px;}
.y9_c00263{bottom:676.328700px;}
.y8_c00263{bottom:706.334700px;}
.y7_c00263{bottom:766.334700px;}
.y6_c00263{bottom:856.316700px;}
.y5_c00263{bottom:886.322700px;}
.y4_c00263{bottom:916.328700px;}
.y3_c00263{bottom:946.334700px;}
.y2_c00263{bottom:1006.334700px;}
.h2_c00263{height:54.000000px;}
.h4_c00263{height:64.800000px;}
.h3_c00263{height:78.540000px;}
.h0_c00263{height:1262.835000px;}
.h1_c00263{height:1263.000000px;}
.w0_c00263{width:892.914000px;}
.w1_c00263{width:893.250000px;}
.x0_c00263{left:0.000000px;}
.x2_c00263{left:90.000000px;}
.x3_c00263{left:106.500000px;}
.x1_c00263{left:785.813700px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls1_c00263{letter-spacing:0.000000pt;}
.ls0_c00263{letter-spacing:0.640000pt;}
.ls2_c00263{letter-spacing:0.746667pt;}
.ws0_c00263{word-spacing:-9.066667pt;}
.ws5_c00263{word-spacing:-1.664000pt;}
.ws9_c00263{word-spacing:-1.216000pt;}
.ws2_c00263{word-spacing:-0.746667pt;}
.ws8_c00263{word-spacing:-0.640000pt;}
.ws4_c00263{word-spacing:-0.448000pt;}
.ws1_c00263{word-spacing:0.000000pt;}
.ws7_c00263{word-spacing:0.320000pt;}
.ws6_c00263{word-spacing:1.472000pt;}
.ws3_c00263{word-spacing:2.112000pt;}
._0_c00263{margin-left:-426.965867pt;}
._3_c00263{margin-left:-5.930667pt;}
._1_c00263{margin-left:-3.733333pt;}
._2_c00263{margin-left:-1.280000pt;}
._4_c00263{width:1.216000pt;}
.fs1_c00263{font-size:37.333333pt;}
.fs0_c00263{font-size:53.333333pt;}
.fs3_c00263{font-size:64.000000pt;}
.fs2_c00263{font-size:74.666667pt;}
.y0_c00263{bottom:0.000000pt;}
.y1_c00263{bottom:36.666667pt;}
.yc_c00263{bottom:521.165067pt;}
.yb_c00263{bottom:547.837067pt;}
.ya_c00263{bottom:574.509067pt;}
.y9_c00263{bottom:601.181067pt;}
.y8_c00263{bottom:627.853067pt;}
.y7_c00263{bottom:681.186400pt;}
.y6_c00263{bottom:761.170400pt;}
.y5_c00263{bottom:787.842400pt;}
.y4_c00263{bottom:814.514400pt;}
.y3_c00263{bottom:841.186400pt;}
.y2_c00263{bottom:894.519733pt;}
.h2_c00263{height:48.000000pt;}
.h4_c00263{height:57.600000pt;}
.h3_c00263{height:69.813333pt;}
.h0_c00263{height:1122.520000pt;}
.h1_c00263{height:1122.666667pt;}
.w0_c00263{width:793.701333pt;}
.w1_c00263{width:794.000000pt;}
.x0_c00263{left:0.000000pt;}
.x2_c00263{left:80.000000pt;}
.x3_c00263{left:94.666667pt;}
.x1_c00263{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_796d2410b4105e4773494082.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00264;src:url('chunks/assets/font_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00264;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.161000;font-style: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);}
.m1_c00264{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls5_c00264{letter-spacing:-0.324000px;}
.ls4_c00264{letter-spacing:0.000000px;}
.ls0_c00264{letter-spacing:0.720000px;}
.ls1_c00264{letter-spacing:0.840000px;}
.ls3_c00264{letter-spacing:1.500000px;}
.ls2_c00264{letter-spacing:1.650000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00264{word-spacing:-21.276000px;}
.ws2_c00264{word-spacing:-17.640000px;}
.ws3_c00264{word-spacing:-14.850000px;}
.ws0_c00264{word-spacing:-10.200000px;}
.ws9_c00264{word-spacing:-3.312000px;}
.wsc_c00264{word-spacing:-2.232000px;}
.ws14_c00264{word-spacing:-1.728000px;}
.ws11_c00264{word-spacing:-1.008000px;}
.ws5_c00264{word-spacing:-0.840000px;}
.wsf_c00264{word-spacing:-0.720000px;}
.wsb_c00264{word-spacing:-0.216000px;}
.ws4_c00264{word-spacing:0.000000px;}
.ws8_c00264{word-spacing:1.224000px;}
.ws6_c00264{word-spacing:2.232000px;}
.ws7_c00264{word-spacing:3.744000px;}
.ws16_c00264{word-spacing:3.816000px;}
.ws15_c00264{word-spacing:4.680000px;}
.wsa_c00264{word-spacing:7.920000px;}
.ws10_c00264{word-spacing:9.864000px;}
.wsd_c00264{word-spacing:9.936000px;}
.wse_c00264{word-spacing:13.608000px;}
.ws12_c00264{word-spacing:20.016000px;}
.ws13_c00264{word-spacing:28.296000px;}
._0_c00264{margin-left:-480.336000px;}
._5_c00264{margin-left:-6.771600px;}
._1_c00264{margin-left:-4.200000px;}
._3_c00264{margin-left:-3.078000px;}
._2_c00264{margin-left:-1.134000px;}
._4_c00264{width:1.724400px;}
.fc3_c00264{color:rgb(32,32,32);}
.fc2_c00264{color:rgb(233,83,14);}
.fc1_c00264{color:rgb(232,86,17);}
.fc4_c00264{color:rgb(157,157,156);}
.fc0_c00264{color:rgb(60,60,59);}
.fs1_c00264{font-size:42.000000px;}
.fs0_c00264{font-size:60.000000px;}
.fs5_c00264{font-size:66.000000px;}
.fs4_c00264{font-size:72.000000px;}
.fs3_c00264{font-size:84.000000px;}
.fs2_c00264{font-size:108.000000px;}
.y0_c00264{bottom:0.000000px;}
.y1_c00264{bottom:41.250000px;}
.y16_c00264{bottom:226.304700px;}
.y15_c00264{bottom:256.310700px;}
.y14_c00264{bottom:286.316700px;}
.y13_c00264{bottom:316.322700px;}
.y12_c00264{bottom:346.328700px;}
.y11_c00264{bottom:376.334700px;}
.y10_c00264{bottom:436.334700px;}
.yf_c00264{bottom:526.268700px;}
.ye_c00264{bottom:556.274700px;}
.yd_c00264{bottom:586.280700px;}
.yc_c00264{bottom:616.286700px;}
.yb_c00264{bottom:646.292700px;}
.ya_c00264{bottom:676.298700px;}
.y9_c00264{bottom:706.304700px;}
.y8_c00264{bottom:736.310700px;}
.y7_c00264{bottom:766.316700px;}
.y1a_c00264{bottom:766.334700px;}
.y6_c00264{bottom:796.322700px;}
.y19_c00264{bottom:796.334700px;}
.y5_c00264{bottom:826.328700px;}
.y18_c00264{bottom:826.334700px;}
.y4_c00264{bottom:856.334700px;}
.y17_c00264{bottom:857.010900px;}
.y3_c00264{bottom:916.334700px;}
.y2_c00264{bottom:1006.334700px;}
.h6_c00264{height:50.292000px;}
.h2_c00264{height:54.000000px;}
.h5_c00264{height:64.800000px;}
.h4_c00264{height:78.540000px;}
.h3_c00264{height:100.980000px;}
.h0_c00264{height:1262.835000px;}
.h1_c00264{height:1263.000000px;}
.w0_c00264{width:892.914000px;}
.w1_c00264{width:893.250000px;}
.x0_c00264{left:0.000000px;}
.x2_c00264{left:82.500000px;}
.x3_c00264{left:90.000000px;}
.x4_c00264{left:106.500000px;}
.x5_c00264{left:675.611100px;}
.x1_c00264{left:786.863550px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls5_c00264{letter-spacing:-0.288000pt;}
.ls4_c00264{letter-spacing:0.000000pt;}
.ls0_c00264{letter-spacing:0.640000pt;}
.ls1_c00264{letter-spacing:0.746667pt;}
.ls3_c00264{letter-spacing:1.333333pt;}
.ls2_c00264{letter-spacing:1.466667pt;}
.ws1_c00264{word-spacing:-18.912000pt;}
.ws2_c00264{word-spacing:-15.680000pt;}
.ws3_c00264{word-spacing:-13.200000pt;}
.ws0_c00264{word-spacing:-9.066667pt;}
.ws9_c00264{word-spacing:-2.944000pt;}
.wsc_c00264{word-spacing:-1.984000pt;}
.ws14_c00264{word-spacing:-1.536000pt;}
.ws11_c00264{word-spacing:-0.896000pt;}
.ws5_c00264{word-spacing:-0.746667pt;}
.wsf_c00264{word-spacing:-0.640000pt;}
.wsb_c00264{word-spacing:-0.192000pt;}
.ws4_c00264{word-spacing:0.000000pt;}
.ws8_c00264{word-spacing:1.088000pt;}
.ws6_c00264{word-spacing:1.984000pt;}
.ws7_c00264{word-spacing:3.328000pt;}
.ws16_c00264{word-spacing:3.392000pt;}
.ws15_c00264{word-spacing:4.160000pt;}
.wsa_c00264{word-spacing:7.040000pt;}
.ws10_c00264{word-spacing:8.768000pt;}
.wsd_c00264{word-spacing:8.832000pt;}
.wse_c00264{word-spacing:12.096000pt;}
.ws12_c00264{word-spacing:17.792000pt;}
.ws13_c00264{word-spacing:25.152000pt;}
._0_c00264{margin-left:-426.965333pt;}
._5_c00264{margin-left:-6.019200pt;}
._1_c00264{margin-left:-3.733333pt;}
._3_c00264{margin-left:-2.736000pt;}
._2_c00264{margin-left:-1.008000pt;}
._4_c00264{width:1.532800pt;}
.fs1_c00264{font-size:37.333333pt;}
.fs0_c00264{font-size:53.333333pt;}
.fs5_c00264{font-size:58.666667pt;}
.fs4_c00264{font-size:64.000000pt;}
.fs3_c00264{font-size:74.666667pt;}
.fs2_c00264{font-size:96.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y1_c00264{bottom:36.666667pt;}
.y16_c00264{bottom:201.159733pt;}
.y15_c00264{bottom:227.831733pt;}
.y14_c00264{bottom:254.503733pt;}
.y13_c00264{bottom:281.175733pt;}
.y12_c00264{bottom:307.847733pt;}
.y11_c00264{bottom:334.519733pt;}
.y10_c00264{bottom:387.853067pt;}
.yf_c00264{bottom:467.794400pt;}
.ye_c00264{bottom:494.466400pt;}
.yd_c00264{bottom:521.138400pt;}
.yc_c00264{bottom:547.810400pt;}
.yb_c00264{bottom:574.482400pt;}
.ya_c00264{bottom:601.154400pt;}
.y9_c00264{bottom:627.826400pt;}
.y8_c00264{bottom:654.498400pt;}
.y7_c00264{bottom:681.170400pt;}
.y1a_c00264{bottom:681.186400pt;}
.y6_c00264{bottom:707.842400pt;}
.y19_c00264{bottom:707.853067pt;}
.y5_c00264{bottom:734.514400pt;}
.y18_c00264{bottom:734.519733pt;}
.y4_c00264{bottom:761.186400pt;}
.y17_c00264{bottom:761.787467pt;}
.y3_c00264{bottom:814.519733pt;}
.y2_c00264{bottom:894.519733pt;}
.h6_c00264{height:44.704000pt;}
.h2_c00264{height:48.000000pt;}
.h5_c00264{height:57.600000pt;}
.h4_c00264{height:69.813333pt;}
.h3_c00264{height:89.760000pt;}
.h0_c00264{height:1122.520000pt;}
.h1_c00264{height:1122.666667pt;}
.w0_c00264{width:793.701333pt;}
.w1_c00264{width:794.000000pt;}
.x0_c00264{left:0.000000pt;}
.x2_c00264{left:73.333333pt;}
.x3_c00264{left:80.000000pt;}
.x4_c00264{left:94.666667pt;}
.x5_c00264{left:600.543200pt;}
.x1_c00264{left:699.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00265;src:url('chunks/assets/font_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.199000;font-style: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);}
.m1_c00265{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls1_c00265{letter-spacing:0.000000px;}
.ls0_c00265{letter-spacing:0.720000px;}
.ls2_c00265{letter-spacing:0.840000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00265{word-spacing:-12.960000px;}
.ws0_c00265{word-spacing:-10.200000px;}
.ws9_c00265{word-spacing:-1.512000px;}
.ws4_c00265{word-spacing:-1.296000px;}
.ws3_c00265{word-spacing:-0.840000px;}
.wsd_c00265{word-spacing:-0.720000px;}
.ws2_c00265{word-spacing:0.000000px;}
.wsc_c00265{word-spacing:1.584000px;}
.wsa_c00265{word-spacing:1.728000px;}
.wsb_c00265{word-spacing:3.960000px;}
.ws7_c00265{word-spacing:9.360000px;}
.ws6_c00265{word-spacing:11.160000px;}
.ws5_c00265{word-spacing:17.568000px;}
.ws8_c00265{word-spacing:23.544000px;}
._0_c00265{margin-left:-480.336000px;}
._4_c00265{margin-left:-6.480000px;}
._3_c00265{margin-left:-5.414400px;}
._1_c00265{margin-left:-4.200000px;}
._2_c00265{margin-left:-1.440000px;}
.fc2_c00265{color:rgb(32,32,32);}
.fc1_c00265{color:rgb(232,86,17);}
.fc0_c00265{color:rgb(60,60,59);}
.fs1_c00265{font-size:42.000000px;}
.fs0_c00265{font-size:60.000000px;}
.fs3_c00265{font-size:72.000000px;}
.fs2_c00265{font-size:84.000000px;}
.y0_c00265{bottom:0.000000px;}
.y1_c00265{bottom:41.250000px;}
.ye_c00265{bottom:526.298700px;}
.yd_c00265{bottom:556.304700px;}
.yc_c00265{bottom:586.310700px;}
.yb_c00265{bottom:616.316700px;}
.ya_c00265{bottom:646.322700px;}
.y9_c00265{bottom:676.328700px;}
.y8_c00265{bottom:706.334700px;}
.y7_c00265{bottom:766.334700px;}
.y6_c00265{bottom:856.316700px;}
.y5_c00265{bottom:886.322700px;}
.y4_c00265{bottom:916.328700px;}
.y3_c00265{bottom:946.334700px;}
.y2_c00265{bottom:1006.334700px;}
.h2_c00265{height:54.000000px;}
.h4_c00265{height:64.800000px;}
.h3_c00265{height:78.540000px;}
.h0_c00265{height:1262.835000px;}
.h1_c00265{height:1263.000000px;}
.w0_c00265{width:892.914000px;}
.w1_c00265{width:893.250000px;}
.x0_c00265{left:0.000000px;}
.x2_c00265{left:90.000000px;}
.x3_c00265{left:106.500000px;}
.x1_c00265{left:785.738550px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls1_c00265{letter-spacing:0.000000pt;}
.ls0_c00265{letter-spacing:0.640000pt;}
.ls2_c00265{letter-spacing:0.746667pt;}
.ws1_c00265{word-spacing:-11.520000pt;}
.ws0_c00265{word-spacing:-9.066667pt;}
.ws9_c00265{word-spacing:-1.344000pt;}
.ws4_c00265{word-spacing:-1.152000pt;}
.ws3_c00265{word-spacing:-0.746667pt;}
.wsd_c00265{word-spacing:-0.640000pt;}
.ws2_c00265{word-spacing:0.000000pt;}
.wsc_c00265{word-spacing:1.408000pt;}
.wsa_c00265{word-spacing:1.536000pt;}
.wsb_c00265{word-spacing:3.520000pt;}
.ws7_c00265{word-spacing:8.320000pt;}
.ws6_c00265{word-spacing:9.920000pt;}
.ws5_c00265{word-spacing:15.616000pt;}
.ws8_c00265{word-spacing:20.928000pt;}
._0_c00265{margin-left:-426.965333pt;}
._4_c00265{margin-left:-5.760000pt;}
._3_c00265{margin-left:-4.812800pt;}
._1_c00265{margin-left:-3.733333pt;}
._2_c00265{margin-left:-1.280000pt;}
.fs1_c00265{font-size:37.333333pt;}
.fs0_c00265{font-size:53.333333pt;}
.fs3_c00265{font-size:64.000000pt;}
.fs2_c00265{font-size:74.666667pt;}
.y0_c00265{bottom:0.000000pt;}
.y1_c00265{bottom:36.666667pt;}
.ye_c00265{bottom:467.821067pt;}
.yd_c00265{bottom:494.493067pt;}
.yc_c00265{bottom:521.165067pt;}
.yb_c00265{bottom:547.837067pt;}
.ya_c00265{bottom:574.509067pt;}
.y9_c00265{bottom:601.181067pt;}
.y8_c00265{bottom:627.853067pt;}
.y7_c00265{bottom:681.186400pt;}
.y6_c00265{bottom:761.170400pt;}
.y5_c00265{bottom:787.842400pt;}
.y4_c00265{bottom:814.514400pt;}
.y3_c00265{bottom:841.186400pt;}
.y2_c00265{bottom:894.519733pt;}
.h2_c00265{height:48.000000pt;}
.h4_c00265{height:57.600000pt;}
.h3_c00265{height:69.813333pt;}
.h0_c00265{height:1122.520000pt;}
.h1_c00265{height:1122.666667pt;}
.w0_c00265{width:793.701333pt;}
.w1_c00265{width:794.000000pt;}
.x0_c00265{left:0.000000pt;}
.x2_c00265{left:80.000000pt;}
.x3_c00265{left:94.666667pt;}
.x1_c00265{left:698.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00266;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00266;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00266;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00266;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:1.155000;font-style: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);}
.m1_c00266{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls3_c00266{letter-spacing:-0.840000px;}
.ls2_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:0.864000px;}
.ls1_c00266{letter-spacing:1.200000px;}
.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:-10.200000px;}
.ws5_c00266{word-spacing:-6.000000px;}
.ws4_c00266{word-spacing:-5.160000px;}
.ws2_c00266{word-spacing:-1.152000px;}
.ws3_c00266{word-spacing:-0.864000px;}
.ws1_c00266{word-spacing:0.000000px;}
._0_c00266{margin-left:-480.336000px;}
._7_c00266{margin-left:-10.200000px;}
._5_c00266{margin-left:-8.640000px;}
._3_c00266{margin-left:-6.480000px;}
._1_c00266{margin-left:-4.200000px;}
._4_c00266{margin-left:-2.760000px;}
._2_c00266{margin-left:-1.440000px;}
._8_c00266{width:1.080000px;}
._6_c00266{width:2.280000px;}
._9_c00266{width:8.640000px;}
.fc3_c00266{color:rgb(255,255,255);}
.fc2_c00266{color:rgb(233,83,14);}
.fc1_c00266{color:rgb(232,86,17);}
.fc0_c00266{color:rgb(60,60,59);}
.fs1_c00266{font-size:42.000000px;}
.fs0_c00266{font-size:60.000000px;}
.fs3_c00266{font-size:72.000000px;}
.fs4_c00266{font-size:120.000000px;}
.fs2_c00266{font-size:360.000000px;}
.y0_c00266{bottom:0.000000px;}
.y1_c00266{bottom:41.250000px;}
.yc_c00266{bottom:484.292700px;}
.yb_c00266{bottom:505.298700px;}
.ya_c00266{bottom:526.304700px;}
.y9_c00266{bottom:574.310700px;}
.y8_c00266{bottom:595.316700px;}
.y7_c00266{bottom:616.322700px;}
.y6_c00266{bottom:664.328700px;}
.y5_c00266{bottom:685.334700px;}
.y4_c00266{bottom:706.340700px;}
.y3_c00266{bottom:752.834700px;}
.y10_c00266{bottom:916.334700px;}
.yf_c00266{bottom:946.334700px;}
.ye_c00266{bottom:976.334700px;}
.yd_c00266{bottom:1006.334700px;}
.y2_c00266{bottom:1093.526700px;}
.h2_c00266{height:54.000000px;}
.h5_c00266{height:64.800000px;}
.h4_c00266{height:66.456000px;}
.h6_c00266{height:112.200000px;}
.h3_c00266{height:324.000000px;}
.h0_c00266{height:1262.835000px;}
.h1_c00266{height:1263.000000px;}
.w0_c00266{width:892.914000px;}
.w1_c00266{width:893.250000px;}
.x0_c00266{left:0.000000px;}
.x2_c00266{left:81.290250px;}
.x3_c00266{left:82.393650px;}
.x5_c00266{left:112.287450px;}
.x4_c00266{left:127.393650px;}
.x1_c00266{left:787.838550px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls3_c00266{letter-spacing:-0.746667pt;}
.ls2_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:0.768000pt;}
.ls1_c00266{letter-spacing:1.066667pt;}
.ws0_c00266{word-spacing:-9.066667pt;}
.ws5_c00266{word-spacing:-5.333333pt;}
.ws4_c00266{word-spacing:-4.586667pt;}
.ws2_c00266{word-spacing:-1.024000pt;}
.ws3_c00266{word-spacing:-0.768000pt;}
.ws1_c00266{word-spacing:0.000000pt;}
._0_c00266{margin-left:-426.965333pt;}
._7_c00266{margin-left:-9.066667pt;}
._5_c00266{margin-left:-7.680000pt;}
._3_c00266{margin-left:-5.760000pt;}
._1_c00266{margin-left:-3.733333pt;}
._4_c00266{margin-left:-2.453333pt;}
._2_c00266{margin-left:-1.280000pt;}
._8_c00266{width:0.960000pt;}
._6_c00266{width:2.026667pt;}
._9_c00266{width:7.680000pt;}
.fs1_c00266{font-size:37.333333pt;}
.fs0_c00266{font-size:53.333333pt;}
.fs3_c00266{font-size:64.000000pt;}
.fs4_c00266{font-size:106.666667pt;}
.fs2_c00266{font-size:320.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y1_c00266{bottom:36.666667pt;}
.yc_c00266{bottom:430.482400pt;}
.yb_c00266{bottom:449.154400pt;}
.ya_c00266{bottom:467.826400pt;}
.y9_c00266{bottom:510.498400pt;}
.y8_c00266{bottom:529.170400pt;}
.y7_c00266{bottom:547.842400pt;}
.y6_c00266{bottom:590.514400pt;}
.y5_c00266{bottom:609.186400pt;}
.y4_c00266{bottom:627.858400pt;}
.y3_c00266{bottom:669.186400pt;}
.y10_c00266{bottom:814.519733pt;}
.yf_c00266{bottom:841.186400pt;}
.ye_c00266{bottom:867.853067pt;}
.yd_c00266{bottom:894.519733pt;}
.y2_c00266{bottom:972.023733pt;}
.h2_c00266{height:48.000000pt;}
.h5_c00266{height:57.600000pt;}
.h4_c00266{height:59.072000pt;}
.h6_c00266{height:99.733333pt;}
.h3_c00266{height:288.000000pt;}
.h0_c00266{height:1122.520000pt;}
.h1_c00266{height:1122.666667pt;}
.w0_c00266{width:793.701333pt;}
.w1_c00266{width:794.000000pt;}
.x0_c00266{left:0.000000pt;}
.x2_c00266{left:72.258000pt;}
.x3_c00266{left:73.238800pt;}
.x5_c00266{left:99.811067pt;}
.x4_c00266{left:113.238800pt;}
.x1_c00266{left:700.300933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00267;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.161000;font-style: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);}
.m1_c00267{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls5_c00267{letter-spacing:-0.540000px;}
.ls4_c00267{letter-spacing:0.000000px;}
.ls0_c00267{letter-spacing:0.720000px;}
.ls1_c00267{letter-spacing:0.840000px;}
.ls3_c00267{letter-spacing:1.500000px;}
.ls2_c00267{letter-spacing:1.650000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00267{word-spacing:-21.060000px;}
.ws2_c00267{word-spacing:-17.640000px;}
.ws3_c00267{word-spacing:-14.850000px;}
.ws0_c00267{word-spacing:-10.200000px;}
.ws11_c00267{word-spacing:-2.160000px;}
.wsf_c00267{word-spacing:-1.800000px;}
.ws12_c00267{word-spacing:-1.500000px;}
.ws9_c00267{word-spacing:-0.864000px;}
.ws5_c00267{word-spacing:-0.840000px;}
.wse_c00267{word-spacing:-0.360000px;}
.ws4_c00267{word-spacing:0.000000px;}
.ws7_c00267{word-spacing:0.360000px;}
.ws8_c00267{word-spacing:1.656000px;}
.ws6_c00267{word-spacing:2.376000px;}
.wsd_c00267{word-spacing:3.888000px;}
.ws10_c00267{word-spacing:7.920000px;}
.wsb_c00267{word-spacing:8.496000px;}
.wsc_c00267{word-spacing:11.160000px;}
.wsa_c00267{word-spacing:20.016000px;}
._0_c00267{margin-left:-480.336600px;}
._4_c00267{margin-left:-5.760000px;}
._1_c00267{margin-left:-4.200000px;}
._3_c00267{margin-left:-2.952000px;}
._2_c00267{margin-left:-1.598400px;}
._5_c00267{width:2.160000px;}
.fc3_c00267{color:rgb(32,32,32);}
.fc2_c00267{color:rgb(233,83,14);}
.fc1_c00267{color:rgb(232,86,17);}
.fc4_c00267{color:rgb(157,157,156);}
.fc0_c00267{color:rgb(60,60,59);}
.fs1_c00267{font-size:42.000000px;}
.fs0_c00267{font-size:60.000000px;}
.fs5_c00267{font-size:66.000000px;}
.fs4_c00267{font-size:72.000000px;}
.fs3_c00267{font-size:84.000000px;}
.fs2_c00267{font-size:108.000000px;}
.y0_c00267{bottom:0.000000px;}
.y1_c00267{bottom:41.250000px;}
.y14_c00267{bottom:196.286700px;}
.y13_c00267{bottom:226.292700px;}
.y12_c00267{bottom:256.298700px;}
.y11_c00267{bottom:286.304700px;}
.y10_c00267{bottom:316.310700px;}
.yf_c00267{bottom:346.316700px;}
.ye_c00267{bottom:376.322700px;}
.yd_c00267{bottom:406.328700px;}
.yc_c00267{bottom:436.334700px;}
.yb_c00267{bottom:496.334700px;}
.ya_c00267{bottom:586.322700px;}
.y9_c00267{bottom:616.328700px;}
.y8_c00267{bottom:646.334700px;}
.y7_c00267{bottom:706.334700px;}
.y19_c00267{bottom:736.334700px;}
.y18_c00267{bottom:766.334700px;}
.y6_c00267{bottom:796.322700px;}
.y17_c00267{bottom:796.334700px;}
.y5_c00267{bottom:826.328700px;}
.y16_c00267{bottom:826.334700px;}
.y4_c00267{bottom:856.334700px;}
.y15_c00267{bottom:857.010900px;}
.y3_c00267{bottom:916.334700px;}
.y2_c00267{bottom:1006.334700px;}
.h6_c00267{height:50.292000px;}
.h2_c00267{height:54.000000px;}
.h5_c00267{height:64.800000px;}
.h4_c00267{height:78.540000px;}
.h3_c00267{height:100.980000px;}
.h0_c00267{height:1262.835000px;}
.h1_c00267{height:1263.000000px;}
.w0_c00267{width:892.914000px;}
.w1_c00267{width:893.250000px;}
.x0_c00267{left:0.000000px;}
.x2_c00267{left:82.500000px;}
.x3_c00267{left:90.000000px;}
.x4_c00267{left:106.500000px;}
.x5_c00267{left:675.611100px;}
.x1_c00267{left:785.813700px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls5_c00267{letter-spacing:-0.480000pt;}
.ls4_c00267{letter-spacing:0.000000pt;}
.ls0_c00267{letter-spacing:0.640000pt;}
.ls1_c00267{letter-spacing:0.746667pt;}
.ls3_c00267{letter-spacing:1.333333pt;}
.ls2_c00267{letter-spacing:1.466667pt;}
.ws1_c00267{word-spacing:-18.720000pt;}
.ws2_c00267{word-spacing:-15.680000pt;}
.ws3_c00267{word-spacing:-13.200000pt;}
.ws0_c00267{word-spacing:-9.066667pt;}
.ws11_c00267{word-spacing:-1.920000pt;}
.wsf_c00267{word-spacing:-1.600000pt;}
.ws12_c00267{word-spacing:-1.333333pt;}
.ws9_c00267{word-spacing:-0.768000pt;}
.ws5_c00267{word-spacing:-0.746667pt;}
.wse_c00267{word-spacing:-0.320000pt;}
.ws4_c00267{word-spacing:0.000000pt;}
.ws7_c00267{word-spacing:0.320000pt;}
.ws8_c00267{word-spacing:1.472000pt;}
.ws6_c00267{word-spacing:2.112000pt;}
.wsd_c00267{word-spacing:3.456000pt;}
.ws10_c00267{word-spacing:7.040000pt;}
.wsb_c00267{word-spacing:7.552000pt;}
.wsc_c00267{word-spacing:9.920000pt;}
.wsa_c00267{word-spacing:17.792000pt;}
._0_c00267{margin-left:-426.965867pt;}
._4_c00267{margin-left:-5.120000pt;}
._1_c00267{margin-left:-3.733333pt;}
._3_c00267{margin-left:-2.624000pt;}
._2_c00267{margin-left:-1.420800pt;}
._5_c00267{width:1.920000pt;}
.fs1_c00267{font-size:37.333333pt;}
.fs0_c00267{font-size:53.333333pt;}
.fs5_c00267{font-size:58.666667pt;}
.fs4_c00267{font-size:64.000000pt;}
.fs3_c00267{font-size:74.666667pt;}
.fs2_c00267{font-size:96.000000pt;}
.y0_c00267{bottom:0.000000pt;}
.y1_c00267{bottom:36.666667pt;}
.y14_c00267{bottom:174.477067pt;}
.y13_c00267{bottom:201.149067pt;}
.y12_c00267{bottom:227.821067pt;}
.y11_c00267{bottom:254.493067pt;}
.y10_c00267{bottom:281.165067pt;}
.yf_c00267{bottom:307.837067pt;}
.ye_c00267{bottom:334.509067pt;}
.yd_c00267{bottom:361.181067pt;}
.yc_c00267{bottom:387.853067pt;}
.yb_c00267{bottom:441.186400pt;}
.ya_c00267{bottom:521.175733pt;}
.y9_c00267{bottom:547.847733pt;}
.y8_c00267{bottom:574.519733pt;}
.y7_c00267{bottom:627.853067pt;}
.y19_c00267{bottom:654.519733pt;}
.y18_c00267{bottom:681.186400pt;}
.y6_c00267{bottom:707.842400pt;}
.y17_c00267{bottom:707.853067pt;}
.y5_c00267{bottom:734.514400pt;}
.y16_c00267{bottom:734.519733pt;}
.y4_c00267{bottom:761.186400pt;}
.y15_c00267{bottom:761.787467pt;}
.y3_c00267{bottom:814.519733pt;}
.y2_c00267{bottom:894.519733pt;}
.h6_c00267{height:44.704000pt;}
.h2_c00267{height:48.000000pt;}
.h5_c00267{height:57.600000pt;}
.h4_c00267{height:69.813333pt;}
.h3_c00267{height:89.760000pt;}
.h0_c00267{height:1122.520000pt;}
.h1_c00267{height:1122.666667pt;}
.w0_c00267{width:793.701333pt;}
.w1_c00267{width:794.000000pt;}
.x0_c00267{left:0.000000pt;}
.x2_c00267{left:73.333333pt;}
.x3_c00267{left:80.000000pt;}
.x4_c00267{left:94.666667pt;}
.x5_c00267{left:600.543200pt;}
.x1_c00267{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls1_c00268{letter-spacing:0.000000px;}
.ls0_c00268{letter-spacing:0.720000px;}
.ls2_c00268{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws9_c00268{word-spacing:-3.528000px;}
.ws4_c00268{word-spacing:-2.952000px;}
.ws2_c00268{word-spacing:-0.840000px;}
.wsa_c00268{word-spacing:-0.504000px;}
.wsd_c00268{word-spacing:-0.288000px;}
.ws1_c00268{word-spacing:0.000000px;}
.wsb_c00268{word-spacing:0.072000px;}
.ws8_c00268{word-spacing:1.800000px;}
.ws3_c00268{word-spacing:3.168000px;}
.ws6_c00268{word-spacing:6.624000px;}
.wsc_c00268{word-spacing:8.928000px;}
.ws5_c00268{word-spacing:9.792000px;}
.ws7_c00268{word-spacing:18.648000px;}
._0_c00268{margin-left:-480.336000px;}
._4_c00268{margin-left:-7.588800px;}
._3_c00268{margin-left:-5.349600px;}
._1_c00268{margin-left:-4.200000px;}
._5_c00268{margin-left:-2.779200px;}
._2_c00268{margin-left:-1.440000px;}
.fc2_c00268{color:rgb(32,32,32);}
.fc1_c00268{color:rgb(232,86,17);}
.fc0_c00268{color:rgb(60,60,59);}
.fs1_c00268{font-size:42.000000px;}
.fs0_c00268{font-size:60.000000px;}
.fs3_c00268{font-size:72.000000px;}
.fs2_c00268{font-size:84.000000px;}
.y0_c00268{bottom:0.000000px;}
.y1_c00268{bottom:41.250000px;}
.y10_c00268{bottom:466.316700px;}
.yf_c00268{bottom:496.322700px;}
.ye_c00268{bottom:526.328700px;}
.yd_c00268{bottom:556.334700px;}
.yc_c00268{bottom:616.334700px;}
.yb_c00268{bottom:706.286700px;}
.ya_c00268{bottom:736.292700px;}
.y9_c00268{bottom:766.298700px;}
.y8_c00268{bottom:796.304700px;}
.y7_c00268{bottom:826.310700px;}
.y6_c00268{bottom:856.316700px;}
.y5_c00268{bottom:886.322700px;}
.y4_c00268{bottom:916.328700px;}
.y3_c00268{bottom:946.334700px;}
.y2_c00268{bottom:1006.334700px;}
.h2_c00268{height:54.000000px;}
.h4_c00268{height:64.800000px;}
.h3_c00268{height:78.540000px;}
.h0_c00268{height:1262.835000px;}
.h1_c00268{height:1263.000000px;}
.w0_c00268{width:892.914000px;}
.w1_c00268{width:893.250000px;}
.x0_c00268{left:0.000000px;}
.x2_c00268{left:90.000000px;}
.x3_c00268{left:106.500000px;}
.x1_c00268{left:785.738550px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls1_c00268{letter-spacing:0.000000pt;}
.ls0_c00268{letter-spacing:0.640000pt;}
.ls2_c00268{letter-spacing:0.746667pt;}
.ws0_c00268{word-spacing:-9.066667pt;}
.ws9_c00268{word-spacing:-3.136000pt;}
.ws4_c00268{word-spacing:-2.624000pt;}
.ws2_c00268{word-spacing:-0.746667pt;}
.wsa_c00268{word-spacing:-0.448000pt;}
.wsd_c00268{word-spacing:-0.256000pt;}
.ws1_c00268{word-spacing:0.000000pt;}
.wsb_c00268{word-spacing:0.064000pt;}
.ws8_c00268{word-spacing:1.600000pt;}
.ws3_c00268{word-spacing:2.816000pt;}
.ws6_c00268{word-spacing:5.888000pt;}
.wsc_c00268{word-spacing:7.936000pt;}
.ws5_c00268{word-spacing:8.704000pt;}
.ws7_c00268{word-spacing:16.576000pt;}
._0_c00268{margin-left:-426.965333pt;}
._4_c00268{margin-left:-6.745600pt;}
._3_c00268{margin-left:-4.755200pt;}
._1_c00268{margin-left:-3.733333pt;}
._5_c00268{margin-left:-2.470400pt;}
._2_c00268{margin-left:-1.280000pt;}
.fs1_c00268{font-size:37.333333pt;}
.fs0_c00268{font-size:53.333333pt;}
.fs3_c00268{font-size:64.000000pt;}
.fs2_c00268{font-size:74.666667pt;}
.y0_c00268{bottom:0.000000pt;}
.y1_c00268{bottom:36.666667pt;}
.y10_c00268{bottom:414.503733pt;}
.yf_c00268{bottom:441.175733pt;}
.ye_c00268{bottom:467.847733pt;}
.yd_c00268{bottom:494.519733pt;}
.yc_c00268{bottom:547.853067pt;}
.yb_c00268{bottom:627.810400pt;}
.ya_c00268{bottom:654.482400pt;}
.y9_c00268{bottom:681.154400pt;}
.y8_c00268{bottom:707.826400pt;}
.y7_c00268{bottom:734.498400pt;}
.y6_c00268{bottom:761.170400pt;}
.y5_c00268{bottom:787.842400pt;}
.y4_c00268{bottom:814.514400pt;}
.y3_c00268{bottom:841.186400pt;}
.y2_c00268{bottom:894.519733pt;}
.h2_c00268{height:48.000000pt;}
.h4_c00268{height:57.600000pt;}
.h3_c00268{height:69.813333pt;}
.h0_c00268{height:1122.520000pt;}
.h1_c00268{height:1122.666667pt;}
.w0_c00268{width:793.701333pt;}
.w1_c00268{width:794.000000pt;}
.x0_c00268{left:0.000000pt;}
.x2_c00268{left:80.000000pt;}
.x3_c00268{left:94.666667pt;}
.x1_c00268{left:698.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_782ec0774662bb0eb9682cf2.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.160000;font-style:normal;font-weight:normal;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_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00269;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00269;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:1.161000;font-style: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);}
.m1_c00269{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls5_c00269{letter-spacing:-0.324000px;}
.ls4_c00269{letter-spacing:0.000000px;}
.ls0_c00269{letter-spacing:0.720000px;}
.ls1_c00269{letter-spacing:0.840000px;}
.ls3_c00269{letter-spacing:1.500000px;}
.ls2_c00269{letter-spacing:1.650000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00269{word-spacing:-21.276000px;}
.ws2_c00269{word-spacing:-17.640000px;}
.ws0_c00269{word-spacing:-10.200000px;}
.wse_c00269{word-spacing:-1.500000px;}
.ws4_c00269{word-spacing:-0.840000px;}
.wsb_c00269{word-spacing:-0.504000px;}
.ws3_c00269{word-spacing:0.000000px;}
.ws5_c00269{word-spacing:0.072000px;}
.ws6_c00269{word-spacing:0.216000px;}
.ws7_c00269{word-spacing:6.264000px;}
.wsc_c00269{word-spacing:7.416000px;}
.ws9_c00269{word-spacing:8.856000px;}
.wsa_c00269{word-spacing:14.328000px;}
.wsd_c00269{word-spacing:14.688000px;}
.ws8_c00269{word-spacing:21.096000px;}
._0_c00269{margin-left:-480.336600px;}
._4_c00269{margin-left:-6.480000px;}
._1_c00269{margin-left:-4.200000px;}
._3_c00269{margin-left:-2.160000px;}
._2_c00269{margin-left:-1.134000px;}
.fc3_c00269{color:rgb(32,32,32);}
.fc2_c00269{color:rgb(233,83,14);}
.fc1_c00269{color:rgb(232,86,17);}
.fc4_c00269{color:rgb(157,157,156);}
.fc0_c00269{color:rgb(60,60,59);}
.fs1_c00269{font-size:42.000000px;}
.fs0_c00269{font-size:60.000000px;}
.fs5_c00269{font-size:66.000000px;}
.fs4_c00269{font-size:72.000000px;}
.fs3_c00269{font-size:84.000000px;}
.fs2_c00269{font-size:108.000000px;}
.y0_c00269{bottom:0.000000px;}
.y1_c00269{bottom:41.250000px;}
.y12_c00269{bottom:256.292700px;}
.y11_c00269{bottom:286.298700px;}
.y10_c00269{bottom:316.304700px;}
.yf_c00269{bottom:346.310700px;}
.ye_c00269{bottom:376.316700px;}
.yd_c00269{bottom:406.322700px;}
.yc_c00269{bottom:436.328700px;}
.yb_c00269{bottom:466.334700px;}
.ya_c00269{bottom:526.334700px;}
.y9_c00269{bottom:616.328700px;}
.y8_c00269{bottom:646.334700px;}
.y7_c00269{bottom:706.334700px;}
.y17_c00269{bottom:736.334700px;}
.y16_c00269{bottom:766.334700px;}
.y6_c00269{bottom:796.322700px;}
.y15_c00269{bottom:796.334700px;}
.y5_c00269{bottom:826.328700px;}
.y14_c00269{bottom:826.334700px;}
.y4_c00269{bottom:856.334700px;}
.y13_c00269{bottom:857.010900px;}
.y3_c00269{bottom:916.334700px;}
.y2_c00269{bottom:1006.334700px;}
.h6_c00269{height:50.292000px;}
.h2_c00269{height:54.000000px;}
.h5_c00269{height:64.800000px;}
.h4_c00269{height:78.540000px;}
.h3_c00269{height:100.980000px;}
.h0_c00269{height:1262.835000px;}
.h1_c00269{height:1263.000000px;}
.w0_c00269{width:892.914000px;}
.w1_c00269{width:893.250000px;}
.x0_c00269{left:0.000000px;}
.x2_c00269{left:82.500000px;}
.x3_c00269{left:90.000000px;}
.x4_c00269{left:106.500000px;}
.x5_c00269{left:675.611100px;}
.x1_c00269{left:787.853700px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls5_c00269{letter-spacing:-0.288000pt;}
.ls4_c00269{letter-spacing:0.000000pt;}
.ls0_c00269{letter-spacing:0.640000pt;}
.ls1_c00269{letter-spacing:0.746667pt;}
.ls3_c00269{letter-spacing:1.333333pt;}
.ls2_c00269{letter-spacing:1.466667pt;}
.ws1_c00269{word-spacing:-18.912000pt;}
.ws2_c00269{word-spacing:-15.680000pt;}
.ws0_c00269{word-spacing:-9.066667pt;}
.wse_c00269{word-spacing:-1.333333pt;}
.ws4_c00269{word-spacing:-0.746667pt;}
.wsb_c00269{word-spacing:-0.448000pt;}
.ws3_c00269{word-spacing:0.000000pt;}
.ws5_c00269{word-spacing:0.064000pt;}
.ws6_c00269{word-spacing:0.192000pt;}
.ws7_c00269{word-spacing:5.568000pt;}
.wsc_c00269{word-spacing:6.592000pt;}
.ws9_c00269{word-spacing:7.872000pt;}
.wsa_c00269{word-spacing:12.736000pt;}
.wsd_c00269{word-spacing:13.056000pt;}
.ws8_c00269{word-spacing:18.752000pt;}
._0_c00269{margin-left:-426.965867pt;}
._4_c00269{margin-left:-5.760000pt;}
._1_c00269{margin-left:-3.733333pt;}
._3_c00269{margin-left:-1.920000pt;}
._2_c00269{margin-left:-1.008000pt;}
.fs1_c00269{font-size:37.333333pt;}
.fs0_c00269{font-size:53.333333pt;}
.fs5_c00269{font-size:58.666667pt;}
.fs4_c00269{font-size:64.000000pt;}
.fs3_c00269{font-size:74.666667pt;}
.fs2_c00269{font-size:96.000000pt;}
.y0_c00269{bottom:0.000000pt;}
.y1_c00269{bottom:36.666667pt;}
.y12_c00269{bottom:227.815733pt;}
.y11_c00269{bottom:254.487733pt;}
.y10_c00269{bottom:281.159733pt;}
.yf_c00269{bottom:307.831733pt;}
.ye_c00269{bottom:334.503733pt;}
.yd_c00269{bottom:361.175733pt;}
.yc_c00269{bottom:387.847733pt;}
.yb_c00269{bottom:414.519733pt;}
.ya_c00269{bottom:467.853067pt;}
.y9_c00269{bottom:547.847733pt;}
.y8_c00269{bottom:574.519733pt;}
.y7_c00269{bottom:627.853067pt;}
.y17_c00269{bottom:654.519733pt;}
.y16_c00269{bottom:681.186400pt;}
.y6_c00269{bottom:707.842400pt;}
.y15_c00269{bottom:707.853067pt;}
.y5_c00269{bottom:734.514400pt;}
.y14_c00269{bottom:734.519733pt;}
.y4_c00269{bottom:761.186400pt;}
.y13_c00269{bottom:761.787467pt;}
.y3_c00269{bottom:814.519733pt;}
.y2_c00269{bottom:894.519733pt;}
.h6_c00269{height:44.704000pt;}
.h2_c00269{height:48.000000pt;}
.h5_c00269{height:57.600000pt;}
.h4_c00269{height:69.813333pt;}
.h3_c00269{height:89.760000pt;}
.h0_c00269{height:1122.520000pt;}
.h1_c00269{height:1122.666667pt;}
.w0_c00269{width:793.701333pt;}
.w1_c00269{width:794.000000pt;}
.x0_c00269{left:0.000000pt;}
.x2_c00269{left:73.333333pt;}
.x3_c00269{left:80.000000pt;}
.x4_c00269{left:94.666667pt;}
.x5_c00269{left:600.543200pt;}
.x1_c00269{left:700.314400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6251e3ec056b5188f5d92dc2.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.199000;font-style: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);}
.m1_c00270{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls1_c00270{letter-spacing:0.000000px;}
.ls0_c00270{letter-spacing:0.720000px;}
.ls2_c00270{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws5_c00270{word-spacing:-1.656000px;}
.ws6_c00270{word-spacing:-1.296000px;}
.wsc_c00270{word-spacing:-1.152000px;}
.ws2_c00270{word-spacing:-0.840000px;}
.ws1_c00270{word-spacing:0.000000px;}
.ws4_c00270{word-spacing:2.520000px;}
.ws7_c00270{word-spacing:2.952000px;}
.wsa_c00270{word-spacing:3.816000px;}
.ws3_c00270{word-spacing:4.680000px;}
.ws8_c00270{word-spacing:6.624000px;}
.wsb_c00270{word-spacing:13.752000px;}
.ws9_c00270{word-spacing:21.024000px;}
._0_c00270{margin-left:-480.336600px;}
._3_c00270{margin-left:-5.760000px;}
._1_c00270{margin-left:-4.200000px;}
._2_c00270{margin-left:-2.160000px;}
.fc2_c00270{color:rgb(32,32,32);}
.fc1_c00270{color:rgb(232,86,17);}
.fc0_c00270{color:rgb(60,60,59);}
.fs1_c00270{font-size:42.000000px;}
.fs0_c00270{font-size:60.000000px;}
.fs3_c00270{font-size:72.000000px;}
.fs2_c00270{font-size:84.000000px;}
.y0_c00270{bottom:0.000000px;}
.y1_c00270{bottom:41.250000px;}
.yf_c00270{bottom:496.316700px;}
.ye_c00270{bottom:526.322700px;}
.yd_c00270{bottom:556.328700px;}
.yc_c00270{bottom:586.334700px;}
.yb_c00270{bottom:646.334700px;}
.ya_c00270{bottom:736.292700px;}
.y9_c00270{bottom:766.298700px;}
.y8_c00270{bottom:796.304700px;}
.y7_c00270{bottom:826.310700px;}
.y6_c00270{bottom:856.316700px;}
.y5_c00270{bottom:886.322700px;}
.y4_c00270{bottom:916.328700px;}
.y3_c00270{bottom:946.334700px;}
.y2_c00270{bottom:1006.334700px;}
.h2_c00270{height:54.000000px;}
.h4_c00270{height:64.800000px;}
.h3_c00270{height:78.540000px;}
.h0_c00270{height:1262.835000px;}
.h1_c00270{height:1263.000000px;}
.w0_c00270{width:892.914000px;}
.w1_c00270{width:893.250000px;}
.x0_c00270{left:0.000000px;}
.x2_c00270{left:90.000000px;}
.x3_c00270{left:106.500000px;}
.x1_c00270{left:791.513700px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls1_c00270{letter-spacing:0.000000pt;}
.ls0_c00270{letter-spacing:0.640000pt;}
.ls2_c00270{letter-spacing:0.746667pt;}
.ws0_c00270{word-spacing:-9.066667pt;}
.ws5_c00270{word-spacing:-1.472000pt;}
.ws6_c00270{word-spacing:-1.152000pt;}
.wsc_c00270{word-spacing:-1.024000pt;}
.ws2_c00270{word-spacing:-0.746667pt;}
.ws1_c00270{word-spacing:0.000000pt;}
.ws4_c00270{word-spacing:2.240000pt;}
.ws7_c00270{word-spacing:2.624000pt;}
.wsa_c00270{word-spacing:3.392000pt;}
.ws3_c00270{word-spacing:4.160000pt;}
.ws8_c00270{word-spacing:5.888000pt;}
.wsb_c00270{word-spacing:12.224000pt;}
.ws9_c00270{word-spacing:18.688000pt;}
._0_c00270{margin-left:-426.965867pt;}
._3_c00270{margin-left:-5.120000pt;}
._1_c00270{margin-left:-3.733333pt;}
._2_c00270{margin-left:-1.920000pt;}
.fs1_c00270{font-size:37.333333pt;}
.fs0_c00270{font-size:53.333333pt;}
.fs3_c00270{font-size:64.000000pt;}
.fs2_c00270{font-size:74.666667pt;}
.y0_c00270{bottom:0.000000pt;}
.y1_c00270{bottom:36.666667pt;}
.yf_c00270{bottom:441.170400pt;}
.ye_c00270{bottom:467.842400pt;}
.yd_c00270{bottom:494.514400pt;}
.yc_c00270{bottom:521.186400pt;}
.yb_c00270{bottom:574.519733pt;}
.ya_c00270{bottom:654.482400pt;}
.y9_c00270{bottom:681.154400pt;}
.y8_c00270{bottom:707.826400pt;}
.y7_c00270{bottom:734.498400pt;}
.y6_c00270{bottom:761.170400pt;}
.y5_c00270{bottom:787.842400pt;}
.y4_c00270{bottom:814.514400pt;}
.y3_c00270{bottom:841.186400pt;}
.y2_c00270{bottom:894.519733pt;}
.h2_c00270{height:48.000000pt;}
.h4_c00270{height:57.600000pt;}
.h3_c00270{height:69.813333pt;}
.h0_c00270{height:1122.520000pt;}
.h1_c00270{height:1122.666667pt;}
.w0_c00270{width:793.701333pt;}
.w1_c00270{width:794.000000pt;}
.x0_c00270{left:0.000000pt;}
.x2_c00270{left:80.000000pt;}
.x3_c00270{left:94.666667pt;}
.x1_c00270{left:703.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00271;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00271;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00271{font-family:ff5_c00271;line-height:1.155000;font-style: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);}
.m1_c00271{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls2_c00271{letter-spacing:0.000000px;}
.ls0_c00271{letter-spacing:0.864000px;}
.ls1_c00271{letter-spacing:1.200000px;}
.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:-10.200000px;}
.ws4_c00271{word-spacing:-6.240000px;}
.ws2_c00271{word-spacing:-1.152000px;}
.ws3_c00271{word-spacing:-0.864000px;}
.ws1_c00271{word-spacing:0.000000px;}
._0_c00271{margin-left:-480.336600px;}
._5_c00271{margin-left:-11.400000px;}
._4_c00271{margin-left:-9.000000px;}
._3_c00271{margin-left:-6.480000px;}
._1_c00271{margin-left:-4.200000px;}
._2_c00271{margin-left:-1.440000px;}
._6_c00271{width:2.640000px;}
._7_c00271{width:6.480000px;}
.fc3_c00271{color:rgb(255,255,255);}
.fc2_c00271{color:rgb(233,83,14);}
.fc1_c00271{color:rgb(232,86,17);}
.fc0_c00271{color:rgb(60,60,59);}
.fs1_c00271{font-size:42.000000px;}
.fs0_c00271{font-size:60.000000px;}
.fs3_c00271{font-size:72.000000px;}
.fs4_c00271{font-size:120.000000px;}
.fs2_c00271{font-size:360.000000px;}
.y0_c00271{bottom:0.000000px;}
.y1_c00271{bottom:41.250000px;}
.y9_c00271{bottom:574.310700px;}
.y8_c00271{bottom:595.316700px;}
.y7_c00271{bottom:616.322700px;}
.y6_c00271{bottom:664.328700px;}
.y5_c00271{bottom:685.334700px;}
.y4_c00271{bottom:706.340700px;}
.y3_c00271{bottom:752.834700px;}
.yc_c00271{bottom:946.334700px;}
.yb_c00271{bottom:976.334700px;}
.ya_c00271{bottom:1006.334700px;}
.y2_c00271{bottom:1093.526700px;}
.h2_c00271{height:54.000000px;}
.h5_c00271{height:64.800000px;}
.h4_c00271{height:66.456000px;}
.h6_c00271{height:112.200000px;}
.h3_c00271{height:324.000000px;}
.h0_c00271{height:1262.835000px;}
.h1_c00271{height:1263.000000px;}
.w0_c00271{width:892.914000px;}
.w1_c00271{width:893.250000px;}
.x0_c00271{left:0.000000px;}
.x2_c00271{left:81.290250px;}
.x3_c00271{left:82.393650px;}
.x5_c00271{left:112.287450px;}
.x4_c00271{left:127.393650px;}
.x1_c00271{left:789.038700px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls2_c00271{letter-spacing:0.000000pt;}
.ls0_c00271{letter-spacing:0.768000pt;}
.ls1_c00271{letter-spacing:1.066667pt;}
.ws0_c00271{word-spacing:-9.066667pt;}
.ws4_c00271{word-spacing:-5.546667pt;}
.ws2_c00271{word-spacing:-1.024000pt;}
.ws3_c00271{word-spacing:-0.768000pt;}
.ws1_c00271{word-spacing:0.000000pt;}
._0_c00271{margin-left:-426.965867pt;}
._5_c00271{margin-left:-10.133333pt;}
._4_c00271{margin-left:-8.000000pt;}
._3_c00271{margin-left:-5.760000pt;}
._1_c00271{margin-left:-3.733333pt;}
._2_c00271{margin-left:-1.280000pt;}
._6_c00271{width:2.346667pt;}
._7_c00271{width:5.760000pt;}
.fs1_c00271{font-size:37.333333pt;}
.fs0_c00271{font-size:53.333333pt;}
.fs3_c00271{font-size:64.000000pt;}
.fs4_c00271{font-size:106.666667pt;}
.fs2_c00271{font-size:320.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y1_c00271{bottom:36.666667pt;}
.y9_c00271{bottom:510.498400pt;}
.y8_c00271{bottom:529.170400pt;}
.y7_c00271{bottom:547.842400pt;}
.y6_c00271{bottom:590.514400pt;}
.y5_c00271{bottom:609.186400pt;}
.y4_c00271{bottom:627.858400pt;}
.y3_c00271{bottom:669.186400pt;}
.yc_c00271{bottom:841.186400pt;}
.yb_c00271{bottom:867.853067pt;}
.ya_c00271{bottom:894.519733pt;}
.y2_c00271{bottom:972.023733pt;}
.h2_c00271{height:48.000000pt;}
.h5_c00271{height:57.600000pt;}
.h4_c00271{height:59.072000pt;}
.h6_c00271{height:99.733333pt;}
.h3_c00271{height:288.000000pt;}
.h0_c00271{height:1122.520000pt;}
.h1_c00271{height:1122.666667pt;}
.w0_c00271{width:793.701333pt;}
.w1_c00271{width:794.000000pt;}
.x0_c00271{left:0.000000pt;}
.x2_c00271{left:72.258000pt;}
.x3_c00271{left:73.238800pt;}
.x5_c00271{left:99.811067pt;}
.x4_c00271{left:113.238800pt;}
.x1_c00271{left:701.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00272;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:1.161000;font-style: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);}
.m1_c00272{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls5_c00272{letter-spacing:-0.540000px;}
.ls4_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:0.720000px;}
.ls1_c00272{letter-spacing:0.840000px;}
.ls3_c00272{letter-spacing:1.500000px;}
.ls2_c00272{letter-spacing:1.650000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00272{word-spacing:-21.060000px;}
.ws2_c00272{word-spacing:-17.640000px;}
.ws3_c00272{word-spacing:-11.700000px;}
.ws0_c00272{word-spacing:-10.200000px;}
.wsf_c00272{word-spacing:-1.500000px;}
.ws5_c00272{word-spacing:-0.840000px;}
.ws4_c00272{word-spacing:0.000000px;}
.wsc_c00272{word-spacing:2.736000px;}
.ws8_c00272{word-spacing:4.824000px;}
.wsa_c00272{word-spacing:5.688000px;}
.ws7_c00272{word-spacing:6.192000px;}
.ws9_c00272{word-spacing:6.408000px;}
.wsb_c00272{word-spacing:6.480000px;}
.wse_c00272{word-spacing:7.920000px;}
.wsd_c00272{word-spacing:9.504000px;}
.ws6_c00272{word-spacing:10.584000px;}
._0_c00272{margin-left:-480.336600px;}
._1_c00272{margin-left:-4.200000px;}
._2_c00272{margin-left:-2.160000px;}
.fc3_c00272{color:rgb(32,32,32);}
.fc2_c00272{color:rgb(233,83,14);}
.fc1_c00272{color:rgb(232,86,17);}
.fc4_c00272{color:rgb(157,157,156);}
.fc0_c00272{color:rgb(60,60,59);}
.fs1_c00272{font-size:42.000000px;}
.fs0_c00272{font-size:60.000000px;}
.fs5_c00272{font-size:66.000000px;}
.fs4_c00272{font-size:72.000000px;}
.fs3_c00272{font-size:84.000000px;}
.fs2_c00272{font-size:108.000000px;}
.y0_c00272{bottom:0.000000px;}
.y1_c00272{bottom:41.250000px;}
.y11_c00272{bottom:286.310700px;}
.y10_c00272{bottom:316.316700px;}
.yf_c00272{bottom:346.322700px;}
.ye_c00272{bottom:376.328700px;}
.yd_c00272{bottom:406.334700px;}
.yc_c00272{bottom:466.334700px;}
.yb_c00272{bottom:556.322700px;}
.ya_c00272{bottom:586.328700px;}
.y9_c00272{bottom:616.334700px;}
.y8_c00272{bottom:676.334700px;}
.y17_c00272{bottom:706.334700px;}
.y16_c00272{bottom:736.334700px;}
.y7_c00272{bottom:766.316700px;}
.y15_c00272{bottom:766.334700px;}
.y6_c00272{bottom:796.322700px;}
.y14_c00272{bottom:796.334700px;}
.y5_c00272{bottom:826.328700px;}
.y13_c00272{bottom:826.334700px;}
.y4_c00272{bottom:856.334700px;}
.y12_c00272{bottom:857.010900px;}
.y3_c00272{bottom:916.334700px;}
.y2_c00272{bottom:1006.334700px;}
.h6_c00272{height:50.292000px;}
.h2_c00272{height:54.000000px;}
.h5_c00272{height:64.800000px;}
.h4_c00272{height:78.540000px;}
.h3_c00272{height:100.980000px;}
.h0_c00272{height:1262.835000px;}
.h1_c00272{height:1263.000000px;}
.w0_c00272{width:892.914000px;}
.w1_c00272{width:893.250000px;}
.x0_c00272{left:0.000000px;}
.x2_c00272{left:82.500000px;}
.x3_c00272{left:90.000000px;}
.x4_c00272{left:106.500000px;}
.x5_c00272{left:675.611100px;}
.x1_c00272{left:788.888700px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls5_c00272{letter-spacing:-0.480000pt;}
.ls4_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:0.640000pt;}
.ls1_c00272{letter-spacing:0.746667pt;}
.ls3_c00272{letter-spacing:1.333333pt;}
.ls2_c00272{letter-spacing:1.466667pt;}
.ws1_c00272{word-spacing:-18.720000pt;}
.ws2_c00272{word-spacing:-15.680000pt;}
.ws3_c00272{word-spacing:-10.400000pt;}
.ws0_c00272{word-spacing:-9.066667pt;}
.wsf_c00272{word-spacing:-1.333333pt;}
.ws5_c00272{word-spacing:-0.746667pt;}
.ws4_c00272{word-spacing:0.000000pt;}
.wsc_c00272{word-spacing:2.432000pt;}
.ws8_c00272{word-spacing:4.288000pt;}
.wsa_c00272{word-spacing:5.056000pt;}
.ws7_c00272{word-spacing:5.504000pt;}
.ws9_c00272{word-spacing:5.696000pt;}
.wsb_c00272{word-spacing:5.760000pt;}
.wse_c00272{word-spacing:7.040000pt;}
.wsd_c00272{word-spacing:8.448000pt;}
.ws6_c00272{word-spacing:9.408000pt;}
._0_c00272{margin-left:-426.965867pt;}
._1_c00272{margin-left:-3.733333pt;}
._2_c00272{margin-left:-1.920000pt;}
.fs1_c00272{font-size:37.333333pt;}
.fs0_c00272{font-size:53.333333pt;}
.fs5_c00272{font-size:58.666667pt;}
.fs4_c00272{font-size:64.000000pt;}
.fs3_c00272{font-size:74.666667pt;}
.fs2_c00272{font-size:96.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y1_c00272{bottom:36.666667pt;}
.y11_c00272{bottom:254.498400pt;}
.y10_c00272{bottom:281.170400pt;}
.yf_c00272{bottom:307.842400pt;}
.ye_c00272{bottom:334.514400pt;}
.yd_c00272{bottom:361.186400pt;}
.yc_c00272{bottom:414.519733pt;}
.yb_c00272{bottom:494.509067pt;}
.ya_c00272{bottom:521.181067pt;}
.y9_c00272{bottom:547.853067pt;}
.y8_c00272{bottom:601.186400pt;}
.y17_c00272{bottom:627.853067pt;}
.y16_c00272{bottom:654.519733pt;}
.y7_c00272{bottom:681.170400pt;}
.y15_c00272{bottom:681.186400pt;}
.y6_c00272{bottom:707.842400pt;}
.y14_c00272{bottom:707.853067pt;}
.y5_c00272{bottom:734.514400pt;}
.y13_c00272{bottom:734.519733pt;}
.y4_c00272{bottom:761.186400pt;}
.y12_c00272{bottom:761.787467pt;}
.y3_c00272{bottom:814.519733pt;}
.y2_c00272{bottom:894.519733pt;}
.h6_c00272{height:44.704000pt;}
.h2_c00272{height:48.000000pt;}
.h5_c00272{height:57.600000pt;}
.h4_c00272{height:69.813333pt;}
.h3_c00272{height:89.760000pt;}
.h0_c00272{height:1122.520000pt;}
.h1_c00272{height:1122.666667pt;}
.w0_c00272{width:793.701333pt;}
.w1_c00272{width:794.000000pt;}
.x0_c00272{left:0.000000pt;}
.x2_c00272{left:73.333333pt;}
.x3_c00272{left:80.000000pt;}
.x4_c00272{left:94.666667pt;}
.x5_c00272{left:600.543200pt;}
.x1_c00272{left:701.234400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00273;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.199000;font-style: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);}
.m1_c00273{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls1_c00273{letter-spacing:-3.600000px;}
.ls2_c00273{letter-spacing:0.000000px;}
.ls0_c00273{letter-spacing:0.720000px;}
.ls3_c00273{letter-spacing:0.840000px;}
.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:-6.600000px;}
.ws2_c00273{word-spacing:-0.840000px;}
.ws1_c00273{word-spacing:0.000000px;}
.ws8_c00273{word-spacing:0.144000px;}
.wsb_c00273{word-spacing:1.152000px;}
.wsa_c00273{word-spacing:4.464000px;}
.ws7_c00273{word-spacing:5.904000px;}
.wsc_c00273{word-spacing:6.408000px;}
.ws9_c00273{word-spacing:6.912000px;}
.ws6_c00273{word-spacing:9.720000px;}
.ws4_c00273{word-spacing:11.232000px;}
.ws3_c00273{word-spacing:13.032000px;}
.ws5_c00273{word-spacing:20.304000px;}
._1_c00273{margin-left:-476.736000px;}
._4_c00273{margin-left:-5.738400px;}
._2_c00273{margin-left:-4.200000px;}
._3_c00273{margin-left:-2.152800px;}
._5_c00273{margin-left:-1.044000px;}
._0_c00273{width:3.600000px;}
.fc2_c00273{color:rgb(32,32,32);}
.fc1_c00273{color:rgb(232,86,17);}
.fc0_c00273{color:rgb(60,60,59);}
.fs1_c00273{font-size:42.000000px;}
.fs0_c00273{font-size:60.000000px;}
.fs3_c00273{font-size:72.000000px;}
.fs2_c00273{font-size:84.000000px;}
.y0_c00273{bottom:0.000000px;}
.y1_c00273{bottom:41.250000px;}
.yf_c00273{bottom:496.286700px;}
.ye_c00273{bottom:526.292700px;}
.yd_c00273{bottom:556.298700px;}
.yc_c00273{bottom:586.304700px;}
.yb_c00273{bottom:616.310700px;}
.ya_c00273{bottom:646.316700px;}
.y9_c00273{bottom:676.322700px;}
.y8_c00273{bottom:706.328700px;}
.y7_c00273{bottom:736.334700px;}
.y6_c00273{bottom:796.334700px;}
.y5_c00273{bottom:886.322700px;}
.y4_c00273{bottom:916.328700px;}
.y3_c00273{bottom:946.334700px;}
.y2_c00273{bottom:1006.334700px;}
.h2_c00273{height:54.000000px;}
.h4_c00273{height:64.800000px;}
.h3_c00273{height:78.540000px;}
.h0_c00273{height:1262.835000px;}
.h1_c00273{height:1263.000000px;}
.w0_c00273{width:892.914000px;}
.w1_c00273{width:893.250000px;}
.x0_c00273{left:0.000000px;}
.x2_c00273{left:90.000000px;}
.x3_c00273{left:106.500000px;}
.x1_c00273{left:788.813550px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls1_c00273{letter-spacing:-3.200000pt;}
.ls2_c00273{letter-spacing:0.000000pt;}
.ls0_c00273{letter-spacing:0.640000pt;}
.ls3_c00273{letter-spacing:0.746667pt;}
.ws0_c00273{word-spacing:-5.866667pt;}
.ws2_c00273{word-spacing:-0.746667pt;}
.ws1_c00273{word-spacing:0.000000pt;}
.ws8_c00273{word-spacing:0.128000pt;}
.wsb_c00273{word-spacing:1.024000pt;}
.wsa_c00273{word-spacing:3.968000pt;}
.ws7_c00273{word-spacing:5.248000pt;}
.wsc_c00273{word-spacing:5.696000pt;}
.ws9_c00273{word-spacing:6.144000pt;}
.ws6_c00273{word-spacing:8.640000pt;}
.ws4_c00273{word-spacing:9.984000pt;}
.ws3_c00273{word-spacing:11.584000pt;}
.ws5_c00273{word-spacing:18.048000pt;}
._1_c00273{margin-left:-423.765333pt;}
._4_c00273{margin-left:-5.100800pt;}
._2_c00273{margin-left:-3.733333pt;}
._3_c00273{margin-left:-1.913600pt;}
._5_c00273{margin-left:-0.928000pt;}
._0_c00273{width:3.200000pt;}
.fs1_c00273{font-size:37.333333pt;}
.fs0_c00273{font-size:53.333333pt;}
.fs3_c00273{font-size:64.000000pt;}
.fs2_c00273{font-size:74.666667pt;}
.y0_c00273{bottom:0.000000pt;}
.y1_c00273{bottom:36.666667pt;}
.yf_c00273{bottom:441.143733pt;}
.ye_c00273{bottom:467.815733pt;}
.yd_c00273{bottom:494.487733pt;}
.yc_c00273{bottom:521.159733pt;}
.yb_c00273{bottom:547.831733pt;}
.ya_c00273{bottom:574.503733pt;}
.y9_c00273{bottom:601.175733pt;}
.y8_c00273{bottom:627.847733pt;}
.y7_c00273{bottom:654.519733pt;}
.y6_c00273{bottom:707.853067pt;}
.y5_c00273{bottom:787.842400pt;}
.y4_c00273{bottom:814.514400pt;}
.y3_c00273{bottom:841.186400pt;}
.y2_c00273{bottom:894.519733pt;}
.h2_c00273{height:48.000000pt;}
.h4_c00273{height:57.600000pt;}
.h3_c00273{height:69.813333pt;}
.h0_c00273{height:1122.520000pt;}
.h1_c00273{height:1122.666667pt;}
.w0_c00273{width:793.701333pt;}
.w1_c00273{width:794.000000pt;}
.x0_c00273{left:0.000000pt;}
.x2_c00273{left:80.000000pt;}
.x3_c00273{left:94.666667pt;}
.x1_c00273{left:701.167600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d2b3a49cabb83f4fe7c44d3.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00274;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00274;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.161000;font-style: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);}
.m1_c00274{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls5_c00274{letter-spacing:-0.324000px;}
.ls4_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:0.720000px;}
.ls1_c00274{letter-spacing:0.840000px;}
.ls3_c00274{letter-spacing:1.500000px;}
.ls2_c00274{letter-spacing:1.650000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00274{word-spacing:-21.276000px;}
.ws2_c00274{word-spacing:-17.640000px;}
.ws3_c00274{word-spacing:-14.850000px;}
.ws0_c00274{word-spacing:-10.200000px;}
.wse_c00274{word-spacing:-2.952000px;}
.wsd_c00274{word-spacing:-1.872000px;}
.wsf_c00274{word-spacing:-1.500000px;}
.ws5_c00274{word-spacing:-0.840000px;}
.ws4_c00274{word-spacing:0.000000px;}
.wsc_c00274{word-spacing:3.888000px;}
.ws7_c00274{word-spacing:4.032000px;}
.ws9_c00274{word-spacing:5.616000px;}
.wsb_c00274{word-spacing:6.192000px;}
.ws6_c00274{word-spacing:7.776000px;}
.ws8_c00274{word-spacing:9.144000px;}
.wsa_c00274{word-spacing:22.680000px;}
._0_c00274{margin-left:-480.336000px;}
._6_c00274{margin-left:-6.720000px;}
._4_c00274{margin-left:-5.236800px;}
._1_c00274{margin-left:-4.200000px;}
._5_c00274{margin-left:-2.160000px;}
._2_c00274{margin-left:-1.134000px;}
._3_c00274{width:1.015200px;}
._7_c00274{width:2.952000px;}
.fc3_c00274{color:rgb(32,32,32);}
.fc2_c00274{color:rgb(233,83,14);}
.fc1_c00274{color:rgb(232,86,17);}
.fc4_c00274{color:rgb(157,157,156);}
.fc0_c00274{color:rgb(60,60,59);}
.fs1_c00274{font-size:42.000000px;}
.fs0_c00274{font-size:60.000000px;}
.fs5_c00274{font-size:66.000000px;}
.fs4_c00274{font-size:72.000000px;}
.fs3_c00274{font-size:84.000000px;}
.fs2_c00274{font-size:108.000000px;}
.y0_c00274{bottom:0.000000px;}
.y1_c00274{bottom:41.250000px;}
.y10_c00274{bottom:316.310700px;}
.yf_c00274{bottom:346.316700px;}
.ye_c00274{bottom:376.322700px;}
.yd_c00274{bottom:406.328700px;}
.yc_c00274{bottom:436.334700px;}
.yb_c00274{bottom:496.334700px;}
.ya_c00274{bottom:586.328700px;}
.y9_c00274{bottom:616.334700px;}
.y8_c00274{bottom:676.334700px;}
.y16_c00274{bottom:706.334700px;}
.y15_c00274{bottom:736.334700px;}
.y7_c00274{bottom:766.316700px;}
.y14_c00274{bottom:766.334700px;}
.y6_c00274{bottom:796.322700px;}
.y13_c00274{bottom:796.334700px;}
.y5_c00274{bottom:826.328700px;}
.y12_c00274{bottom:826.334700px;}
.y4_c00274{bottom:856.334700px;}
.y11_c00274{bottom:857.010900px;}
.y3_c00274{bottom:916.334700px;}
.y2_c00274{bottom:1006.334700px;}
.h6_c00274{height:50.292000px;}
.h2_c00274{height:54.000000px;}
.h5_c00274{height:64.800000px;}
.h4_c00274{height:78.540000px;}
.h3_c00274{height:100.980000px;}
.h0_c00274{height:1262.835000px;}
.h1_c00274{height:1263.000000px;}
.w0_c00274{width:892.914000px;}
.w1_c00274{width:893.250000px;}
.x0_c00274{left:0.000000px;}
.x2_c00274{left:82.500000px;}
.x3_c00274{left:90.000000px;}
.x4_c00274{left:106.500000px;}
.x5_c00274{left:675.611100px;}
.x1_c00274{left:788.963550px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls5_c00274{letter-spacing:-0.288000pt;}
.ls4_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:0.640000pt;}
.ls1_c00274{letter-spacing:0.746667pt;}
.ls3_c00274{letter-spacing:1.333333pt;}
.ls2_c00274{letter-spacing:1.466667pt;}
.ws1_c00274{word-spacing:-18.912000pt;}
.ws2_c00274{word-spacing:-15.680000pt;}
.ws3_c00274{word-spacing:-13.200000pt;}
.ws0_c00274{word-spacing:-9.066667pt;}
.wse_c00274{word-spacing:-2.624000pt;}
.wsd_c00274{word-spacing:-1.664000pt;}
.wsf_c00274{word-spacing:-1.333333pt;}
.ws5_c00274{word-spacing:-0.746667pt;}
.ws4_c00274{word-spacing:0.000000pt;}
.wsc_c00274{word-spacing:3.456000pt;}
.ws7_c00274{word-spacing:3.584000pt;}
.ws9_c00274{word-spacing:4.992000pt;}
.wsb_c00274{word-spacing:5.504000pt;}
.ws6_c00274{word-spacing:6.912000pt;}
.ws8_c00274{word-spacing:8.128000pt;}
.wsa_c00274{word-spacing:20.160000pt;}
._0_c00274{margin-left:-426.965333pt;}
._6_c00274{margin-left:-5.973333pt;}
._4_c00274{margin-left:-4.654933pt;}
._1_c00274{margin-left:-3.733333pt;}
._5_c00274{margin-left:-1.920000pt;}
._2_c00274{margin-left:-1.008000pt;}
._3_c00274{width:0.902400pt;}
._7_c00274{width:2.624000pt;}
.fs1_c00274{font-size:37.333333pt;}
.fs0_c00274{font-size:53.333333pt;}
.fs5_c00274{font-size:58.666667pt;}
.fs4_c00274{font-size:64.000000pt;}
.fs3_c00274{font-size:74.666667pt;}
.fs2_c00274{font-size:96.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y1_c00274{bottom:36.666667pt;}
.y10_c00274{bottom:281.165067pt;}
.yf_c00274{bottom:307.837067pt;}
.ye_c00274{bottom:334.509067pt;}
.yd_c00274{bottom:361.181067pt;}
.yc_c00274{bottom:387.853067pt;}
.yb_c00274{bottom:441.186400pt;}
.ya_c00274{bottom:521.181067pt;}
.y9_c00274{bottom:547.853067pt;}
.y8_c00274{bottom:601.186400pt;}
.y16_c00274{bottom:627.853067pt;}
.y15_c00274{bottom:654.519733pt;}
.y7_c00274{bottom:681.170400pt;}
.y14_c00274{bottom:681.186400pt;}
.y6_c00274{bottom:707.842400pt;}
.y13_c00274{bottom:707.853067pt;}
.y5_c00274{bottom:734.514400pt;}
.y12_c00274{bottom:734.519733pt;}
.y4_c00274{bottom:761.186400pt;}
.y11_c00274{bottom:761.787467pt;}
.y3_c00274{bottom:814.519733pt;}
.y2_c00274{bottom:894.519733pt;}
.h6_c00274{height:44.704000pt;}
.h2_c00274{height:48.000000pt;}
.h5_c00274{height:57.600000pt;}
.h4_c00274{height:69.813333pt;}
.h3_c00274{height:89.760000pt;}
.h0_c00274{height:1122.520000pt;}
.h1_c00274{height:1122.666667pt;}
.w0_c00274{width:793.701333pt;}
.w1_c00274{width:794.000000pt;}
.x0_c00274{left:0.000000pt;}
.x2_c00274{left:73.333333pt;}
.x3_c00274{left:80.000000pt;}
.x4_c00274{left:94.666667pt;}
.x5_c00274{left:600.543200pt;}
.x1_c00274{left:701.300933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_404726e6b27da81fd5ea9fff.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.199000;font-style: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);}
.m1_c00275{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls1_c00275{letter-spacing:0.000000px;}
.ls0_c00275{letter-spacing:0.720000px;}
.ls2_c00275{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws4_c00275{word-spacing:-4.032000px;}
.wsb_c00275{word-spacing:-1.944000px;}
.ws2_c00275{word-spacing:-0.840000px;}
.ws8_c00275{word-spacing:-0.144000px;}
.ws1_c00275{word-spacing:0.000000px;}
.wsa_c00275{word-spacing:0.072000px;}
.wsc_c00275{word-spacing:2.016000px;}
.ws3_c00275{word-spacing:2.160000px;}
.ws6_c00275{word-spacing:5.616000px;}
.ws7_c00275{word-spacing:10.080000px;}
.ws9_c00275{word-spacing:11.664000px;}
.ws5_c00275{word-spacing:29.880000px;}
._0_c00275{margin-left:-480.336000px;}
._7_c00275{margin-left:-6.912000px;}
._5_c00275{margin-left:-5.882400px;}
._1_c00275{margin-left:-4.200000px;}
._6_c00275{margin-left:-2.865600px;}
._2_c00275{margin-left:-1.440000px;}
._3_c00275{width:1.000800px;}
._4_c00275{width:5.263200px;}
.fc2_c00275{color:rgb(32,32,32);}
.fc1_c00275{color:rgb(232,86,17);}
.fc0_c00275{color:rgb(60,60,59);}
.fs1_c00275{font-size:42.000000px;}
.fs0_c00275{font-size:60.000000px;}
.fs3_c00275{font-size:72.000000px;}
.fs2_c00275{font-size:84.000000px;}
.y0_c00275{bottom:0.000000px;}
.y1_c00275{bottom:41.250000px;}
.yf_c00275{bottom:496.286700px;}
.ye_c00275{bottom:526.292700px;}
.yd_c00275{bottom:556.298700px;}
.yc_c00275{bottom:586.304700px;}
.yb_c00275{bottom:616.310700px;}
.ya_c00275{bottom:646.316700px;}
.y9_c00275{bottom:676.322700px;}
.y8_c00275{bottom:706.328700px;}
.y7_c00275{bottom:736.334700px;}
.y6_c00275{bottom:796.334700px;}
.y5_c00275{bottom:886.322700px;}
.y4_c00275{bottom:916.328700px;}
.y3_c00275{bottom:946.334700px;}
.y2_c00275{bottom:1006.334700px;}
.h2_c00275{height:54.000000px;}
.h4_c00275{height:64.800000px;}
.h3_c00275{height:78.540000px;}
.h0_c00275{height:1262.835000px;}
.h1_c00275{height:1263.000000px;}
.w0_c00275{width:892.914000px;}
.w1_c00275{width:893.250000px;}
.x0_c00275{left:0.000000px;}
.x2_c00275{left:90.000000px;}
.x3_c00275{left:106.500000px;}
.x1_c00275{left:787.838550px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls1_c00275{letter-spacing:0.000000pt;}
.ls0_c00275{letter-spacing:0.640000pt;}
.ls2_c00275{letter-spacing:0.746667pt;}
.ws0_c00275{word-spacing:-9.066667pt;}
.ws4_c00275{word-spacing:-3.584000pt;}
.wsb_c00275{word-spacing:-1.728000pt;}
.ws2_c00275{word-spacing:-0.746667pt;}
.ws8_c00275{word-spacing:-0.128000pt;}
.ws1_c00275{word-spacing:0.000000pt;}
.wsa_c00275{word-spacing:0.064000pt;}
.wsc_c00275{word-spacing:1.792000pt;}
.ws3_c00275{word-spacing:1.920000pt;}
.ws6_c00275{word-spacing:4.992000pt;}
.ws7_c00275{word-spacing:8.960000pt;}
.ws9_c00275{word-spacing:10.368000pt;}
.ws5_c00275{word-spacing:26.560000pt;}
._0_c00275{margin-left:-426.965333pt;}
._7_c00275{margin-left:-6.144000pt;}
._5_c00275{margin-left:-5.228800pt;}
._1_c00275{margin-left:-3.733333pt;}
._6_c00275{margin-left:-2.547200pt;}
._2_c00275{margin-left:-1.280000pt;}
._3_c00275{width:0.889600pt;}
._4_c00275{width:4.678400pt;}
.fs1_c00275{font-size:37.333333pt;}
.fs0_c00275{font-size:53.333333pt;}
.fs3_c00275{font-size:64.000000pt;}
.fs2_c00275{font-size:74.666667pt;}
.y0_c00275{bottom:0.000000pt;}
.y1_c00275{bottom:36.666667pt;}
.yf_c00275{bottom:441.143733pt;}
.ye_c00275{bottom:467.815733pt;}
.yd_c00275{bottom:494.487733pt;}
.yc_c00275{bottom:521.159733pt;}
.yb_c00275{bottom:547.831733pt;}
.ya_c00275{bottom:574.503733pt;}
.y9_c00275{bottom:601.175733pt;}
.y8_c00275{bottom:627.847733pt;}
.y7_c00275{bottom:654.519733pt;}
.y6_c00275{bottom:707.853067pt;}
.y5_c00275{bottom:787.842400pt;}
.y4_c00275{bottom:814.514400pt;}
.y3_c00275{bottom:841.186400pt;}
.y2_c00275{bottom:894.519733pt;}
.h2_c00275{height:48.000000pt;}
.h4_c00275{height:57.600000pt;}
.h3_c00275{height:69.813333pt;}
.h0_c00275{height:1122.520000pt;}
.h1_c00275{height:1122.666667pt;}
.w0_c00275{width:793.701333pt;}
.w1_c00275{width:794.000000pt;}
.x0_c00275{left:0.000000pt;}
.x2_c00275{left:80.000000pt;}
.x3_c00275{left:94.666667pt;}
.x1_c00275{left:700.300933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00276;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00276;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00276{font-family:ff5_c00276;line-height:1.155000;font-style: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);}
.m1_c00276{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls2_c00276{letter-spacing:0.000000px;}
.ls0_c00276{letter-spacing:0.864000px;}
.ls1_c00276{letter-spacing:1.200000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00276{word-spacing:-13.104000px;}
.ws0_c00276{word-spacing:-10.200000px;}
.ws3_c00276{word-spacing:-1.440000px;}
.ws4_c00276{word-spacing:-0.864000px;}
.ws2_c00276{word-spacing:0.000000px;}
._0_c00276{margin-left:-480.336000px;}
._6_c00276{margin-left:-9.000000px;}
._3_c00276{margin-left:-6.480000px;}
._1_c00276{margin-left:-4.200000px;}
._5_c00276{margin-left:-3.120000px;}
._2_c00276{margin-left:-1.440000px;}
._4_c00276{width:1.440000px;}
.fc3_c00276{color:rgb(255,255,255);}
.fc2_c00276{color:rgb(233,83,14);}
.fc1_c00276{color:rgb(232,86,17);}
.fc0_c00276{color:rgb(60,60,59);}
.fs1_c00276{font-size:42.000000px;}
.fs0_c00276{font-size:60.000000px;}
.fs3_c00276{font-size:72.000000px;}
.fs4_c00276{font-size:120.000000px;}
.fs2_c00276{font-size:360.000000px;}
.y0_c00276{bottom:0.000000px;}
.y1_c00276{bottom:41.250000px;}
.y17_c00276{bottom:172.226700px;}
.y16_c00276{bottom:193.232700px;}
.y15_c00276{bottom:214.238700px;}
.y14_c00276{bottom:235.244700px;}
.y13_c00276{bottom:256.250700px;}
.y12_c00276{bottom:322.256700px;}
.y11_c00276{bottom:343.262700px;}
.y10_c00276{bottom:364.268700px;}
.yf_c00276{bottom:385.274700px;}
.ye_c00276{bottom:406.280700px;}
.yd_c00276{bottom:472.286700px;}
.yc_c00276{bottom:493.292700px;}
.yb_c00276{bottom:514.298700px;}
.ya_c00276{bottom:535.304700px;}
.y9_c00276{bottom:556.310700px;}
.y8_c00276{bottom:622.316700px;}
.y7_c00276{bottom:643.322700px;}
.y6_c00276{bottom:664.328700px;}
.y5_c00276{bottom:685.334700px;}
.y4_c00276{bottom:706.340700px;}
.y3_c00276{bottom:752.834700px;}
.y19_c00276{bottom:976.334700px;}
.y18_c00276{bottom:1006.334700px;}
.y2_c00276{bottom:1093.526700px;}
.h2_c00276{height:54.000000px;}
.h5_c00276{height:64.800000px;}
.h4_c00276{height:66.456000px;}
.h6_c00276{height:112.200000px;}
.h3_c00276{height:324.000000px;}
.h0_c00276{height:1262.835000px;}
.h1_c00276{height:1263.000000px;}
.w0_c00276{width:892.914000px;}
.w1_c00276{width:893.250000px;}
.x0_c00276{left:0.000000px;}
.x2_c00276{left:81.290250px;}
.x3_c00276{left:82.393650px;}
.x5_c00276{left:112.287450px;}
.x4_c00276{left:127.393650px;}
.x1_c00276{left:789.938550px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls2_c00276{letter-spacing:0.000000pt;}
.ls0_c00276{letter-spacing:0.768000pt;}
.ls1_c00276{letter-spacing:1.066667pt;}
.ws1_c00276{word-spacing:-11.648000pt;}
.ws0_c00276{word-spacing:-9.066667pt;}
.ws3_c00276{word-spacing:-1.280000pt;}
.ws4_c00276{word-spacing:-0.768000pt;}
.ws2_c00276{word-spacing:0.000000pt;}
._0_c00276{margin-left:-426.965333pt;}
._6_c00276{margin-left:-8.000000pt;}
._3_c00276{margin-left:-5.760000pt;}
._1_c00276{margin-left:-3.733333pt;}
._5_c00276{margin-left:-2.773333pt;}
._2_c00276{margin-left:-1.280000pt;}
._4_c00276{width:1.280000pt;}
.fs1_c00276{font-size:37.333333pt;}
.fs0_c00276{font-size:53.333333pt;}
.fs3_c00276{font-size:64.000000pt;}
.fs4_c00276{font-size:106.666667pt;}
.fs2_c00276{font-size:320.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y1_c00276{bottom:36.666667pt;}
.y17_c00276{bottom:153.090400pt;}
.y16_c00276{bottom:171.762400pt;}
.y15_c00276{bottom:190.434400pt;}
.y14_c00276{bottom:209.106400pt;}
.y13_c00276{bottom:227.778400pt;}
.y12_c00276{bottom:286.450400pt;}
.y11_c00276{bottom:305.122400pt;}
.y10_c00276{bottom:323.794400pt;}
.yf_c00276{bottom:342.466400pt;}
.ye_c00276{bottom:361.138400pt;}
.yd_c00276{bottom:419.810400pt;}
.yc_c00276{bottom:438.482400pt;}
.yb_c00276{bottom:457.154400pt;}
.ya_c00276{bottom:475.826400pt;}
.y9_c00276{bottom:494.498400pt;}
.y8_c00276{bottom:553.170400pt;}
.y7_c00276{bottom:571.842400pt;}
.y6_c00276{bottom:590.514400pt;}
.y5_c00276{bottom:609.186400pt;}
.y4_c00276{bottom:627.858400pt;}
.y3_c00276{bottom:669.186400pt;}
.y19_c00276{bottom:867.853067pt;}
.y18_c00276{bottom:894.519733pt;}
.y2_c00276{bottom:972.023733pt;}
.h2_c00276{height:48.000000pt;}
.h5_c00276{height:57.600000pt;}
.h4_c00276{height:59.072000pt;}
.h6_c00276{height:99.733333pt;}
.h3_c00276{height:288.000000pt;}
.h0_c00276{height:1122.520000pt;}
.h1_c00276{height:1122.666667pt;}
.w0_c00276{width:793.701333pt;}
.w1_c00276{width:794.000000pt;}
.x0_c00276{left:0.000000pt;}
.x2_c00276{left:72.258000pt;}
.x3_c00276{left:73.238800pt;}
.x5_c00276{left:99.811067pt;}
.x4_c00276{left:113.238800pt;}
.x1_c00276{left:702.167600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:1.161000;font-style: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);}
.m1_c00277{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls5_c00277{letter-spacing:-0.540000px;}
.ls4_c00277{letter-spacing:0.000000px;}
.ls0_c00277{letter-spacing:0.720000px;}
.ls1_c00277{letter-spacing:0.840000px;}
.ls3_c00277{letter-spacing:1.500000px;}
.ls2_c00277{letter-spacing:1.650000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00277{word-spacing:-21.060000px;}
.ws2_c00277{word-spacing:-17.640000px;}
.ws0_c00277{word-spacing:-10.200000px;}
.wsb_c00277{word-spacing:-1.512000px;}
.wsc_c00277{word-spacing:-0.864000px;}
.ws4_c00277{word-spacing:-0.840000px;}
.ws3_c00277{word-spacing:0.000000px;}
.ws9_c00277{word-spacing:0.576000px;}
.wsf_c00277{word-spacing:2.160000px;}
.wse_c00277{word-spacing:2.664000px;}
.ws5_c00277{word-spacing:3.816000px;}
.wsd_c00277{word-spacing:4.176000px;}
.ws6_c00277{word-spacing:4.680000px;}
.wsa_c00277{word-spacing:7.344000px;}
.ws7_c00277{word-spacing:11.016000px;}
.ws8_c00277{word-spacing:14.616000px;}
._0_c00277{margin-left:-480.336600px;}
._5_c00277{margin-left:-5.464800px;}
._1_c00277{margin-left:-4.200000px;}
._3_c00277{margin-left:-2.462400px;}
._2_c00277{margin-left:-1.432800px;}
._4_c00277{width:1.288800px;}
.fc3_c00277{color:rgb(32,32,32);}
.fc2_c00277{color:rgb(233,83,14);}
.fc1_c00277{color:rgb(232,86,17);}
.fc4_c00277{color:rgb(157,157,156);}
.fc0_c00277{color:rgb(60,60,59);}
.fs1_c00277{font-size:42.000000px;}
.fs0_c00277{font-size:60.000000px;}
.fs5_c00277{font-size:66.000000px;}
.fs4_c00277{font-size:72.000000px;}
.fs3_c00277{font-size:84.000000px;}
.fs2_c00277{font-size:108.000000px;}
.y0_c00277{bottom:0.000000px;}
.y1_c00277{bottom:41.250000px;}
.y13_c00277{bottom:226.316700px;}
.y12_c00277{bottom:256.322700px;}
.y11_c00277{bottom:286.328700px;}
.y10_c00277{bottom:316.334700px;}
.yf_c00277{bottom:376.334700px;}
.ye_c00277{bottom:466.328700px;}
.yd_c00277{bottom:496.334700px;}
.yc_c00277{bottom:556.334700px;}
.yb_c00277{bottom:646.292700px;}
.ya_c00277{bottom:676.298700px;}
.y9_c00277{bottom:706.304700px;}
.y8_c00277{bottom:736.310700px;}
.y7_c00277{bottom:766.316700px;}
.y6_c00277{bottom:796.322700px;}
.y16_c00277{bottom:796.334700px;}
.y5_c00277{bottom:826.328700px;}
.y15_c00277{bottom:826.334700px;}
.y4_c00277{bottom:856.334700px;}
.y14_c00277{bottom:857.010900px;}
.y3_c00277{bottom:916.334700px;}
.y2_c00277{bottom:1006.334700px;}
.h6_c00277{height:50.292000px;}
.h2_c00277{height:54.000000px;}
.h5_c00277{height:64.800000px;}
.h4_c00277{height:78.540000px;}
.h3_c00277{height:100.980000px;}
.h0_c00277{height:1262.835000px;}
.h1_c00277{height:1263.000000px;}
.w0_c00277{width:892.914000px;}
.w1_c00277{width:893.250000px;}
.x0_c00277{left:0.000000px;}
.x2_c00277{left:82.500000px;}
.x3_c00277{left:90.000000px;}
.x4_c00277{left:106.500000px;}
.x5_c00277{left:675.611100px;}
.x1_c00277{left:787.913700px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls5_c00277{letter-spacing:-0.480000pt;}
.ls4_c00277{letter-spacing:0.000000pt;}
.ls0_c00277{letter-spacing:0.640000pt;}
.ls1_c00277{letter-spacing:0.746667pt;}
.ls3_c00277{letter-spacing:1.333333pt;}
.ls2_c00277{letter-spacing:1.466667pt;}
.ws1_c00277{word-spacing:-18.720000pt;}
.ws2_c00277{word-spacing:-15.680000pt;}
.ws0_c00277{word-spacing:-9.066667pt;}
.wsb_c00277{word-spacing:-1.344000pt;}
.wsc_c00277{word-spacing:-0.768000pt;}
.ws4_c00277{word-spacing:-0.746667pt;}
.ws3_c00277{word-spacing:0.000000pt;}
.ws9_c00277{word-spacing:0.512000pt;}
.wsf_c00277{word-spacing:1.920000pt;}
.wse_c00277{word-spacing:2.368000pt;}
.ws5_c00277{word-spacing:3.392000pt;}
.wsd_c00277{word-spacing:3.712000pt;}
.ws6_c00277{word-spacing:4.160000pt;}
.wsa_c00277{word-spacing:6.528000pt;}
.ws7_c00277{word-spacing:9.792000pt;}
.ws8_c00277{word-spacing:12.992000pt;}
._0_c00277{margin-left:-426.965867pt;}
._5_c00277{margin-left:-4.857600pt;}
._1_c00277{margin-left:-3.733333pt;}
._3_c00277{margin-left:-2.188800pt;}
._2_c00277{margin-left:-1.273600pt;}
._4_c00277{width:1.145600pt;}
.fs1_c00277{font-size:37.333333pt;}
.fs0_c00277{font-size:53.333333pt;}
.fs5_c00277{font-size:58.666667pt;}
.fs4_c00277{font-size:64.000000pt;}
.fs3_c00277{font-size:74.666667pt;}
.fs2_c00277{font-size:96.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y1_c00277{bottom:36.666667pt;}
.y13_c00277{bottom:201.170400pt;}
.y12_c00277{bottom:227.842400pt;}
.y11_c00277{bottom:254.514400pt;}
.y10_c00277{bottom:281.186400pt;}
.yf_c00277{bottom:334.519733pt;}
.ye_c00277{bottom:414.514400pt;}
.yd_c00277{bottom:441.186400pt;}
.yc_c00277{bottom:494.519733pt;}
.yb_c00277{bottom:574.482400pt;}
.ya_c00277{bottom:601.154400pt;}
.y9_c00277{bottom:627.826400pt;}
.y8_c00277{bottom:654.498400pt;}
.y7_c00277{bottom:681.170400pt;}
.y6_c00277{bottom:707.842400pt;}
.y16_c00277{bottom:707.853067pt;}
.y5_c00277{bottom:734.514400pt;}
.y15_c00277{bottom:734.519733pt;}
.y4_c00277{bottom:761.186400pt;}
.y14_c00277{bottom:761.787467pt;}
.y3_c00277{bottom:814.519733pt;}
.y2_c00277{bottom:894.519733pt;}
.h6_c00277{height:44.704000pt;}
.h2_c00277{height:48.000000pt;}
.h5_c00277{height:57.600000pt;}
.h4_c00277{height:69.813333pt;}
.h3_c00277{height:89.760000pt;}
.h0_c00277{height:1122.520000pt;}
.h1_c00277{height:1122.666667pt;}
.w0_c00277{width:793.701333pt;}
.w1_c00277{width:794.000000pt;}
.x0_c00277{left:0.000000pt;}
.x2_c00277{left:73.333333pt;}
.x3_c00277{left:80.000000pt;}
.x4_c00277{left:94.666667pt;}
.x5_c00277{left:600.543200pt;}
.x1_c00277{left:700.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.199000;font-style: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);}
.m1_c00278{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls1_c00278{letter-spacing:0.000000px;}
.ls0_c00278{letter-spacing:0.720000px;}
.ls2_c00278{letter-spacing:0.840000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00278{word-spacing:-10.200000px;}
.wsd_c00278{word-spacing:-3.456000px;}
.ws5_c00278{word-spacing:-2.160000px;}
.ws2_c00278{word-spacing:-0.840000px;}
.ws8_c00278{word-spacing:-0.432000px;}
.ws11_c00278{word-spacing:-0.072000px;}
.ws1_c00278{word-spacing:0.000000px;}
.wsb_c00278{word-spacing:0.504000px;}
.ws9_c00278{word-spacing:1.440000px;}
.ws6_c00278{word-spacing:2.736000px;}
.wsc_c00278{word-spacing:3.960000px;}
.wsf_c00278{word-spacing:5.472000px;}
.wse_c00278{word-spacing:6.552000px;}
.wsa_c00278{word-spacing:7.488000px;}
.ws7_c00278{word-spacing:7.560000px;}
.ws3_c00278{word-spacing:8.280000px;}
.ws10_c00278{word-spacing:8.640000px;}
.ws4_c00278{word-spacing:10.008000px;}
._0_c00278{margin-left:-480.336000px;}
._1_c00278{margin-left:-4.200000px;}
._4_c00278{margin-left:-2.952000px;}
._2_c00278{margin-left:-1.440000px;}
._3_c00278{width:2.680800px;}
.fc2_c00278{color:rgb(32,32,32);}
.fc1_c00278{color:rgb(232,86,17);}
.fc0_c00278{color:rgb(60,60,59);}
.fs1_c00278{font-size:42.000000px;}
.fs0_c00278{font-size:60.000000px;}
.fs3_c00278{font-size:72.000000px;}
.fs2_c00278{font-size:84.000000px;}
.y0_c00278{bottom:0.000000px;}
.y1_c00278{bottom:41.250000px;}
.y16_c00278{bottom:286.286700px;}
.y15_c00278{bottom:316.292700px;}
.y14_c00278{bottom:346.298700px;}
.y13_c00278{bottom:376.304700px;}
.y12_c00278{bottom:406.310700px;}
.y11_c00278{bottom:436.316700px;}
.y10_c00278{bottom:466.322700px;}
.yf_c00278{bottom:496.328700px;}
.ye_c00278{bottom:526.334700px;}
.yd_c00278{bottom:586.334700px;}
.yc_c00278{bottom:676.280700px;}
.yb_c00278{bottom:706.286700px;}
.ya_c00278{bottom:736.292700px;}
.y9_c00278{bottom:766.298700px;}
.y8_c00278{bottom:796.304700px;}
.y7_c00278{bottom:826.310700px;}
.y6_c00278{bottom:856.316700px;}
.y5_c00278{bottom:886.322700px;}
.y4_c00278{bottom:916.328700px;}
.y3_c00278{bottom:946.334700px;}
.y2_c00278{bottom:1006.334700px;}
.h2_c00278{height:54.000000px;}
.h4_c00278{height:64.800000px;}
.h3_c00278{height:78.540000px;}
.h0_c00278{height:1262.835000px;}
.h1_c00278{height:1263.000000px;}
.w0_c00278{width:892.914000px;}
.w1_c00278{width:893.250000px;}
.x0_c00278{left:0.000000px;}
.x2_c00278{left:90.000000px;}
.x3_c00278{left:106.500000px;}
.x1_c00278{left:787.838550px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls1_c00278{letter-spacing:0.000000pt;}
.ls0_c00278{letter-spacing:0.640000pt;}
.ls2_c00278{letter-spacing:0.746667pt;}
.ws0_c00278{word-spacing:-9.066667pt;}
.wsd_c00278{word-spacing:-3.072000pt;}
.ws5_c00278{word-spacing:-1.920000pt;}
.ws2_c00278{word-spacing:-0.746667pt;}
.ws8_c00278{word-spacing:-0.384000pt;}
.ws11_c00278{word-spacing:-0.064000pt;}
.ws1_c00278{word-spacing:0.000000pt;}
.wsb_c00278{word-spacing:0.448000pt;}
.ws9_c00278{word-spacing:1.280000pt;}
.ws6_c00278{word-spacing:2.432000pt;}
.wsc_c00278{word-spacing:3.520000pt;}
.wsf_c00278{word-spacing:4.864000pt;}
.wse_c00278{word-spacing:5.824000pt;}
.wsa_c00278{word-spacing:6.656000pt;}
.ws7_c00278{word-spacing:6.720000pt;}
.ws3_c00278{word-spacing:7.360000pt;}
.ws10_c00278{word-spacing:7.680000pt;}
.ws4_c00278{word-spacing:8.896000pt;}
._0_c00278{margin-left:-426.965333pt;}
._1_c00278{margin-left:-3.733333pt;}
._4_c00278{margin-left:-2.624000pt;}
._2_c00278{margin-left:-1.280000pt;}
._3_c00278{width:2.382933pt;}
.fs1_c00278{font-size:37.333333pt;}
.fs0_c00278{font-size:53.333333pt;}
.fs3_c00278{font-size:64.000000pt;}
.fs2_c00278{font-size:74.666667pt;}
.y0_c00278{bottom:0.000000pt;}
.y1_c00278{bottom:36.666667pt;}
.y16_c00278{bottom:254.477067pt;}
.y15_c00278{bottom:281.149067pt;}
.y14_c00278{bottom:307.821067pt;}
.y13_c00278{bottom:334.493067pt;}
.y12_c00278{bottom:361.165067pt;}
.y11_c00278{bottom:387.837067pt;}
.y10_c00278{bottom:414.509067pt;}
.yf_c00278{bottom:441.181067pt;}
.ye_c00278{bottom:467.853067pt;}
.yd_c00278{bottom:521.186400pt;}
.yc_c00278{bottom:601.138400pt;}
.yb_c00278{bottom:627.810400pt;}
.ya_c00278{bottom:654.482400pt;}
.y9_c00278{bottom:681.154400pt;}
.y8_c00278{bottom:707.826400pt;}
.y7_c00278{bottom:734.498400pt;}
.y6_c00278{bottom:761.170400pt;}
.y5_c00278{bottom:787.842400pt;}
.y4_c00278{bottom:814.514400pt;}
.y3_c00278{bottom:841.186400pt;}
.y2_c00278{bottom:894.519733pt;}
.h2_c00278{height:48.000000pt;}
.h4_c00278{height:57.600000pt;}
.h3_c00278{height:69.813333pt;}
.h0_c00278{height:1122.520000pt;}
.h1_c00278{height:1122.666667pt;}
.w0_c00278{width:793.701333pt;}
.w1_c00278{width:794.000000pt;}
.x0_c00278{left:0.000000pt;}
.x2_c00278{left:80.000000pt;}
.x3_c00278{left:94.666667pt;}
.x1_c00278{left:700.300933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.161000;font-style: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);}
.m1_c00279{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls5_c00279{letter-spacing:-0.324000px;}
.ls4_c00279{letter-spacing:0.000000px;}
.ls0_c00279{letter-spacing:0.720000px;}
.ls1_c00279{letter-spacing:0.840000px;}
.ls3_c00279{letter-spacing:1.500000px;}
.ls2_c00279{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00279{word-spacing:-21.276000px;}
.ws2_c00279{word-spacing:-17.640000px;}
.ws3_c00279{word-spacing:-14.850000px;}
.ws0_c00279{word-spacing:-10.200000px;}
.ws12_c00279{word-spacing:-1.200000px;}
.ws5_c00279{word-spacing:-0.840000px;}
.wsd_c00279{word-spacing:-0.720000px;}
.ws4_c00279{word-spacing:0.000000px;}
.ws9_c00279{word-spacing:0.144000px;}
.ws10_c00279{word-spacing:1.368000px;}
.ws6_c00279{word-spacing:2.088000px;}
.ws8_c00279{word-spacing:2.304000px;}
.wse_c00279{word-spacing:3.456000px;}
.ws7_c00279{word-spacing:5.904000px;}
.ws11_c00279{word-spacing:7.632000px;}
.wsf_c00279{word-spacing:8.136000px;}
.wsb_c00279{word-spacing:10.296000px;}
.wsc_c00279{word-spacing:15.840000px;}
.wsa_c00279{word-spacing:20.808000px;}
._0_c00279{margin-left:-480.337200px;}
._4_c00279{margin-left:-6.480000px;}
._1_c00279{margin-left:-4.200000px;}
._3_c00279{margin-left:-2.880000px;}
._2_c00279{margin-left:-1.134000px;}
.fc3_c00279{color:rgb(32,32,32);}
.fc2_c00279{color:rgb(233,83,14);}
.fc1_c00279{color:rgb(232,86,17);}
.fc4_c00279{color:rgb(157,157,156);}
.fc0_c00279{color:rgb(60,60,59);}
.fs1_c00279{font-size:42.000000px;}
.fs0_c00279{font-size:60.000000px;}
.fs5_c00279{font-size:66.000000px;}
.fs4_c00279{font-size:72.000000px;}
.fs3_c00279{font-size:84.000000px;}
.fs2_c00279{font-size:108.000000px;}
.y0_c00279{bottom:0.000000px;}
.y1_c00279{bottom:41.250000px;}
.y13_c00279{bottom:226.316700px;}
.y12_c00279{bottom:256.322700px;}
.y11_c00279{bottom:286.328700px;}
.y10_c00279{bottom:316.334700px;}
.yf_c00279{bottom:376.334700px;}
.ye_c00279{bottom:466.328700px;}
.yd_c00279{bottom:496.334700px;}
.yc_c00279{bottom:556.334700px;}
.yb_c00279{bottom:646.292700px;}
.ya_c00279{bottom:676.298700px;}
.y9_c00279{bottom:706.304700px;}
.y8_c00279{bottom:736.310700px;}
.y7_c00279{bottom:766.316700px;}
.y6_c00279{bottom:796.322700px;}
.y16_c00279{bottom:796.334700px;}
.y5_c00279{bottom:826.328700px;}
.y15_c00279{bottom:826.334700px;}
.y4_c00279{bottom:856.334700px;}
.y14_c00279{bottom:857.010900px;}
.y3_c00279{bottom:916.334700px;}
.y2_c00279{bottom:1006.334700px;}
.h6_c00279{height:50.292000px;}
.h2_c00279{height:54.000000px;}
.h5_c00279{height:64.800000px;}
.h4_c00279{height:78.540000px;}
.h3_c00279{height:100.980000px;}
.h0_c00279{height:1262.835000px;}
.h1_c00279{height:1263.000000px;}
.w0_c00279{width:892.914000px;}
.w1_c00279{width:893.250000px;}
.x0_c00279{left:0.000000px;}
.x2_c00279{left:82.500000px;}
.x3_c00279{left:90.000000px;}
.x4_c00279{left:106.500000px;}
.x5_c00279{left:675.611100px;}
.x1_c00279{left:785.828850px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls5_c00279{letter-spacing:-0.288000pt;}
.ls4_c00279{letter-spacing:0.000000pt;}
.ls0_c00279{letter-spacing:0.640000pt;}
.ls1_c00279{letter-spacing:0.746667pt;}
.ls3_c00279{letter-spacing:1.333333pt;}
.ls2_c00279{letter-spacing:1.466667pt;}
.ws1_c00279{word-spacing:-18.912000pt;}
.ws2_c00279{word-spacing:-15.680000pt;}
.ws3_c00279{word-spacing:-13.200000pt;}
.ws0_c00279{word-spacing:-9.066667pt;}
.ws12_c00279{word-spacing:-1.066667pt;}
.ws5_c00279{word-spacing:-0.746667pt;}
.wsd_c00279{word-spacing:-0.640000pt;}
.ws4_c00279{word-spacing:0.000000pt;}
.ws9_c00279{word-spacing:0.128000pt;}
.ws10_c00279{word-spacing:1.216000pt;}
.ws6_c00279{word-spacing:1.856000pt;}
.ws8_c00279{word-spacing:2.048000pt;}
.wse_c00279{word-spacing:3.072000pt;}
.ws7_c00279{word-spacing:5.248000pt;}
.ws11_c00279{word-spacing:6.784000pt;}
.wsf_c00279{word-spacing:7.232000pt;}
.wsb_c00279{word-spacing:9.152000pt;}
.wsc_c00279{word-spacing:14.080000pt;}
.wsa_c00279{word-spacing:18.496000pt;}
._0_c00279{margin-left:-426.966400pt;}
._4_c00279{margin-left:-5.760000pt;}
._1_c00279{margin-left:-3.733333pt;}
._3_c00279{margin-left:-2.560000pt;}
._2_c00279{margin-left:-1.008000pt;}
.fs1_c00279{font-size:37.333333pt;}
.fs0_c00279{font-size:53.333333pt;}
.fs5_c00279{font-size:58.666667pt;}
.fs4_c00279{font-size:64.000000pt;}
.fs3_c00279{font-size:74.666667pt;}
.fs2_c00279{font-size:96.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y1_c00279{bottom:36.666667pt;}
.y13_c00279{bottom:201.170400pt;}
.y12_c00279{bottom:227.842400pt;}
.y11_c00279{bottom:254.514400pt;}
.y10_c00279{bottom:281.186400pt;}
.yf_c00279{bottom:334.519733pt;}
.ye_c00279{bottom:414.514400pt;}
.yd_c00279{bottom:441.186400pt;}
.yc_c00279{bottom:494.519733pt;}
.yb_c00279{bottom:574.482400pt;}
.ya_c00279{bottom:601.154400pt;}
.y9_c00279{bottom:627.826400pt;}
.y8_c00279{bottom:654.498400pt;}
.y7_c00279{bottom:681.170400pt;}
.y6_c00279{bottom:707.842400pt;}
.y16_c00279{bottom:707.853067pt;}
.y5_c00279{bottom:734.514400pt;}
.y15_c00279{bottom:734.519733pt;}
.y4_c00279{bottom:761.186400pt;}
.y14_c00279{bottom:761.787467pt;}
.y3_c00279{bottom:814.519733pt;}
.y2_c00279{bottom:894.519733pt;}
.h6_c00279{height:44.704000pt;}
.h2_c00279{height:48.000000pt;}
.h5_c00279{height:57.600000pt;}
.h4_c00279{height:69.813333pt;}
.h3_c00279{height:89.760000pt;}
.h0_c00279{height:1122.520000pt;}
.h1_c00279{height:1122.666667pt;}
.w0_c00279{width:793.701333pt;}
.w1_c00279{width:794.000000pt;}
.x0_c00279{left:0.000000pt;}
.x2_c00279{left:73.333333pt;}
.x3_c00279{left:80.000000pt;}
.x4_c00279{left:94.666667pt;}
.x5_c00279{left:600.543200pt;}
.x1_c00279{left:698.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_687f4f7c0414ae5fc6b8f254.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.199000;font-style: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);}
.m1_c00280{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls1_c00280{letter-spacing:0.000000px;}
.ls0_c00280{letter-spacing:0.720000px;}
.ls2_c00280{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws8_c00280{word-spacing:-1.152000px;}
.ws2_c00280{word-spacing:-0.840000px;}
.wsa_c00280{word-spacing:-0.720000px;}
.ws1_c00280{word-spacing:0.000000px;}
.wsd_c00280{word-spacing:1.152000px;}
.ws6_c00280{word-spacing:2.016000px;}
.wsb_c00280{word-spacing:2.232000px;}
.ws7_c00280{word-spacing:3.888000px;}
.ws10_c00280{word-spacing:4.536000px;}
.wsc_c00280{word-spacing:5.184000px;}
.ws4_c00280{word-spacing:5.472000px;}
.ws9_c00280{word-spacing:5.976000px;}
.wse_c00280{word-spacing:6.120000px;}
.wsf_c00280{word-spacing:6.336000px;}
.ws11_c00280{word-spacing:9.648000px;}
.ws3_c00280{word-spacing:9.792000px;}
.ws5_c00280{word-spacing:10.296000px;}
._0_c00280{margin-left:-480.337200px;}
._1_c00280{margin-left:-4.200000px;}
._2_c00280{margin-left:-2.160000px;}
._3_c00280{margin-left:-1.008000px;}
.fc2_c00280{color:rgb(32,32,32);}
.fc1_c00280{color:rgb(232,86,17);}
.fc0_c00280{color:rgb(60,60,59);}
.fs1_c00280{font-size:42.000000px;}
.fs0_c00280{font-size:60.000000px;}
.fs3_c00280{font-size:72.000000px;}
.fs2_c00280{font-size:84.000000px;}
.y0_c00280{bottom:0.000000px;}
.y1_c00280{bottom:41.250000px;}
.y15_c00280{bottom:316.292700px;}
.y14_c00280{bottom:346.298700px;}
.y13_c00280{bottom:376.304700px;}
.y12_c00280{bottom:406.310700px;}
.y11_c00280{bottom:436.316700px;}
.y10_c00280{bottom:466.322700px;}
.yf_c00280{bottom:496.328700px;}
.ye_c00280{bottom:526.334700px;}
.yd_c00280{bottom:586.334700px;}
.yc_c00280{bottom:676.280700px;}
.yb_c00280{bottom:706.286700px;}
.ya_c00280{bottom:736.292700px;}
.y9_c00280{bottom:766.298700px;}
.y8_c00280{bottom:796.304700px;}
.y7_c00280{bottom:826.310700px;}
.y6_c00280{bottom:856.316700px;}
.y5_c00280{bottom:886.322700px;}
.y4_c00280{bottom:916.328700px;}
.y3_c00280{bottom:946.334700px;}
.y2_c00280{bottom:1006.334700px;}
.h2_c00280{height:54.000000px;}
.h4_c00280{height:64.800000px;}
.h3_c00280{height:78.540000px;}
.h0_c00280{height:1262.835000px;}
.h1_c00280{height:1263.000000px;}
.w0_c00280{width:892.914000px;}
.w1_c00280{width:893.250000px;}
.x0_c00280{left:0.000000px;}
.x2_c00280{left:90.000000px;}
.x3_c00280{left:106.500000px;}
.x1_c00280{left:789.488850px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls1_c00280{letter-spacing:0.000000pt;}
.ls0_c00280{letter-spacing:0.640000pt;}
.ls2_c00280{letter-spacing:0.746667pt;}
.ws0_c00280{word-spacing:-9.066667pt;}
.ws8_c00280{word-spacing:-1.024000pt;}
.ws2_c00280{word-spacing:-0.746667pt;}
.wsa_c00280{word-spacing:-0.640000pt;}
.ws1_c00280{word-spacing:0.000000pt;}
.wsd_c00280{word-spacing:1.024000pt;}
.ws6_c00280{word-spacing:1.792000pt;}
.wsb_c00280{word-spacing:1.984000pt;}
.ws7_c00280{word-spacing:3.456000pt;}
.ws10_c00280{word-spacing:4.032000pt;}
.wsc_c00280{word-spacing:4.608000pt;}
.ws4_c00280{word-spacing:4.864000pt;}
.ws9_c00280{word-spacing:5.312000pt;}
.wse_c00280{word-spacing:5.440000pt;}
.wsf_c00280{word-spacing:5.632000pt;}
.ws11_c00280{word-spacing:8.576000pt;}
.ws3_c00280{word-spacing:8.704000pt;}
.ws5_c00280{word-spacing:9.152000pt;}
._0_c00280{margin-left:-426.966400pt;}
._1_c00280{margin-left:-3.733333pt;}
._2_c00280{margin-left:-1.920000pt;}
._3_c00280{margin-left:-0.896000pt;}
.fs1_c00280{font-size:37.333333pt;}
.fs0_c00280{font-size:53.333333pt;}
.fs3_c00280{font-size:64.000000pt;}
.fs2_c00280{font-size:74.666667pt;}
.y0_c00280{bottom:0.000000pt;}
.y1_c00280{bottom:36.666667pt;}
.y15_c00280{bottom:281.149067pt;}
.y14_c00280{bottom:307.821067pt;}
.y13_c00280{bottom:334.493067pt;}
.y12_c00280{bottom:361.165067pt;}
.y11_c00280{bottom:387.837067pt;}
.y10_c00280{bottom:414.509067pt;}
.yf_c00280{bottom:441.181067pt;}
.ye_c00280{bottom:467.853067pt;}
.yd_c00280{bottom:521.186400pt;}
.yc_c00280{bottom:601.138400pt;}
.yb_c00280{bottom:627.810400pt;}
.ya_c00280{bottom:654.482400pt;}
.y9_c00280{bottom:681.154400pt;}
.y8_c00280{bottom:707.826400pt;}
.y7_c00280{bottom:734.498400pt;}
.y6_c00280{bottom:761.170400pt;}
.y5_c00280{bottom:787.842400pt;}
.y4_c00280{bottom:814.514400pt;}
.y3_c00280{bottom:841.186400pt;}
.y2_c00280{bottom:894.519733pt;}
.h2_c00280{height:48.000000pt;}
.h4_c00280{height:57.600000pt;}
.h3_c00280{height:69.813333pt;}
.h0_c00280{height:1122.520000pt;}
.h1_c00280{height:1122.666667pt;}
.w0_c00280{width:793.701333pt;}
.w1_c00280{width:794.000000pt;}
.x0_c00280{left:0.000000pt;}
.x2_c00280{left:80.000000pt;}
.x3_c00280{left:94.666667pt;}
.x1_c00280{left:701.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00281;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00281{font-family:ff5_c00281;line-height:1.155000;font-style: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);}
.m1_c00281{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls2_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:0.864000px;}
.ls1_c00281{letter-spacing:1.200000px;}
.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:-13.104000px;}
.ws0_c00281{word-spacing:-10.200000px;}
.ws4_c00281{word-spacing:-3.600000px;}
.ws3_c00281{word-spacing:-0.864000px;}
.ws2_c00281{word-spacing:0.000000px;}
._0_c00281{margin-left:-480.336600px;}
._3_c00281{margin-left:-10.800000px;}
._4_c00281{margin-left:-8.760000px;}
._1_c00281{margin-left:-4.200000px;}
._2_c00281{margin-left:-1.440000px;}
.fc3_c00281{color:rgb(255,255,255);}
.fc2_c00281{color:rgb(233,83,14);}
.fc1_c00281{color:rgb(232,86,17);}
.fc0_c00281{color:rgb(60,60,59);}
.fs1_c00281{font-size:42.000000px;}
.fs0_c00281{font-size:60.000000px;}
.fs3_c00281{font-size:72.000000px;}
.fs4_c00281{font-size:120.000000px;}
.fs2_c00281{font-size:360.000000px;}
.y0_c00281{bottom:0.000000px;}
.y1_c00281{bottom:41.250000px;}
.y8_c00281{bottom:595.316700px;}
.y7_c00281{bottom:616.322700px;}
.y6_c00281{bottom:664.328700px;}
.y5_c00281{bottom:685.334700px;}
.y4_c00281{bottom:706.340700px;}
.y3_c00281{bottom:752.834700px;}
.ya_c00281{bottom:976.334700px;}
.y9_c00281{bottom:1006.334700px;}
.y2_c00281{bottom:1093.526700px;}
.h2_c00281{height:54.000000px;}
.h5_c00281{height:64.800000px;}
.h4_c00281{height:66.456000px;}
.h6_c00281{height:112.200000px;}
.h3_c00281{height:324.000000px;}
.h0_c00281{height:1262.835000px;}
.h1_c00281{height:1263.000000px;}
.w0_c00281{width:892.914000px;}
.w1_c00281{width:893.250000px;}
.x0_c00281{left:0.000000px;}
.x2_c00281{left:81.290250px;}
.x3_c00281{left:82.393650px;}
.x5_c00281{left:112.287450px;}
.x4_c00281{left:127.393650px;}
.x1_c00281{left:787.013700px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls2_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:0.768000pt;}
.ls1_c00281{letter-spacing:1.066667pt;}
.ws1_c00281{word-spacing:-11.648000pt;}
.ws0_c00281{word-spacing:-9.066667pt;}
.ws4_c00281{word-spacing:-3.200000pt;}
.ws3_c00281{word-spacing:-0.768000pt;}
.ws2_c00281{word-spacing:0.000000pt;}
._0_c00281{margin-left:-426.965867pt;}
._3_c00281{margin-left:-9.600000pt;}
._4_c00281{margin-left:-7.786667pt;}
._1_c00281{margin-left:-3.733333pt;}
._2_c00281{margin-left:-1.280000pt;}
.fs1_c00281{font-size:37.333333pt;}
.fs0_c00281{font-size:53.333333pt;}
.fs3_c00281{font-size:64.000000pt;}
.fs4_c00281{font-size:106.666667pt;}
.fs2_c00281{font-size:320.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y1_c00281{bottom:36.666667pt;}
.y8_c00281{bottom:529.170400pt;}
.y7_c00281{bottom:547.842400pt;}
.y6_c00281{bottom:590.514400pt;}
.y5_c00281{bottom:609.186400pt;}
.y4_c00281{bottom:627.858400pt;}
.y3_c00281{bottom:669.186400pt;}
.ya_c00281{bottom:867.853067pt;}
.y9_c00281{bottom:894.519733pt;}
.y2_c00281{bottom:972.023733pt;}
.h2_c00281{height:48.000000pt;}
.h5_c00281{height:57.600000pt;}
.h4_c00281{height:59.072000pt;}
.h6_c00281{height:99.733333pt;}
.h3_c00281{height:288.000000pt;}
.h0_c00281{height:1122.520000pt;}
.h1_c00281{height:1122.666667pt;}
.w0_c00281{width:793.701333pt;}
.w1_c00281{width:794.000000pt;}
.x0_c00281{left:0.000000pt;}
.x2_c00281{left:72.258000pt;}
.x3_c00281{left:73.238800pt;}
.x5_c00281{left:99.811067pt;}
.x4_c00281{left:113.238800pt;}
.x1_c00281{left:699.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00282;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.161000;font-style: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);}
.m1_c00282{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls5_c00282{letter-spacing:-0.540000px;}
.ls4_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:0.720000px;}
.ls1_c00282{letter-spacing:0.840000px;}
.ls3_c00282{letter-spacing:1.500000px;}
.ls2_c00282{letter-spacing:1.650000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00282{word-spacing:-21.060000px;}
.ws2_c00282{word-spacing:-17.640000px;}
.ws3_c00282{word-spacing:-11.700000px;}
.ws0_c00282{word-spacing:-10.200000px;}
.ws8_c00282{word-spacing:-3.384000px;}
.ws14_c00282{word-spacing:-1.656000px;}
.ws16_c00282{word-spacing:-1.500000px;}
.ws5_c00282{word-spacing:-0.840000px;}
.ws7_c00282{word-spacing:-0.720000px;}
.ws4_c00282{word-spacing:0.000000px;}
.ws15_c00282{word-spacing:0.360000px;}
.wsd_c00282{word-spacing:2.088000px;}
.ws13_c00282{word-spacing:3.024000px;}
.ws6_c00282{word-spacing:3.528000px;}
.ws9_c00282{word-spacing:4.896000px;}
.wsc_c00282{word-spacing:5.400000px;}
.wsf_c00282{word-spacing:7.344000px;}
.ws11_c00282{word-spacing:7.416000px;}
.ws10_c00282{word-spacing:8.136000px;}
.wsb_c00282{word-spacing:9.504000px;}
.wsa_c00282{word-spacing:12.672000px;}
.ws12_c00282{word-spacing:13.248000px;}
.wse_c00282{word-spacing:24.696000px;}
._0_c00282{margin-left:-480.337200px;}
._4_c00282{margin-left:-5.788800px;}
._1_c00282{margin-left:-4.200000px;}
._2_c00282{margin-left:-2.196000px;}
._5_c00282{margin-left:-1.111200px;}
._3_c00282{width:4.140000px;}
.fc3_c00282{color:rgb(32,32,32);}
.fc2_c00282{color:rgb(233,83,14);}
.fc1_c00282{color:rgb(232,86,17);}
.fc4_c00282{color:rgb(157,157,156);}
.fc0_c00282{color:rgb(60,60,59);}
.fs1_c00282{font-size:42.000000px;}
.fs0_c00282{font-size:60.000000px;}
.fs5_c00282{font-size:66.000000px;}
.fs4_c00282{font-size:72.000000px;}
.fs3_c00282{font-size:84.000000px;}
.fs2_c00282{font-size:108.000000px;}
.y0_c00282{bottom:0.000000px;}
.y1_c00282{bottom:41.250000px;}
.y17_c00282{bottom:106.322700px;}
.y16_c00282{bottom:136.328700px;}
.y15_c00282{bottom:166.334700px;}
.y14_c00282{bottom:226.334700px;}
.y13_c00282{bottom:316.316700px;}
.y12_c00282{bottom:346.322700px;}
.y11_c00282{bottom:376.328700px;}
.y10_c00282{bottom:406.334700px;}
.yf_c00282{bottom:466.334700px;}
.ye_c00282{bottom:556.274700px;}
.yd_c00282{bottom:586.280700px;}
.yc_c00282{bottom:616.286700px;}
.yb_c00282{bottom:646.292700px;}
.ya_c00282{bottom:676.298700px;}
.y9_c00282{bottom:706.304700px;}
.y8_c00282{bottom:736.310700px;}
.y7_c00282{bottom:766.316700px;}
.y6_c00282{bottom:796.322700px;}
.y1a_c00282{bottom:796.334700px;}
.y5_c00282{bottom:826.328700px;}
.y19_c00282{bottom:826.334700px;}
.y4_c00282{bottom:856.334700px;}
.y18_c00282{bottom:857.010900px;}
.y3_c00282{bottom:916.334700px;}
.y2_c00282{bottom:1006.334700px;}
.h6_c00282{height:50.292000px;}
.h2_c00282{height:54.000000px;}
.h5_c00282{height:64.800000px;}
.h4_c00282{height:78.540000px;}
.h3_c00282{height:100.980000px;}
.h0_c00282{height:1262.835000px;}
.h1_c00282{height:1263.000000px;}
.w0_c00282{width:892.914000px;}
.w1_c00282{width:893.250000px;}
.x0_c00282{left:0.000000px;}
.x2_c00282{left:82.500000px;}
.x3_c00282{left:90.000000px;}
.x4_c00282{left:106.500000px;}
.x5_c00282{left:675.611100px;}
.x1_c00282{left:786.863850px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls5_c00282{letter-spacing:-0.480000pt;}
.ls4_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:0.640000pt;}
.ls1_c00282{letter-spacing:0.746667pt;}
.ls3_c00282{letter-spacing:1.333333pt;}
.ls2_c00282{letter-spacing:1.466667pt;}
.ws1_c00282{word-spacing:-18.720000pt;}
.ws2_c00282{word-spacing:-15.680000pt;}
.ws3_c00282{word-spacing:-10.400000pt;}
.ws0_c00282{word-spacing:-9.066667pt;}
.ws8_c00282{word-spacing:-3.008000pt;}
.ws14_c00282{word-spacing:-1.472000pt;}
.ws16_c00282{word-spacing:-1.333333pt;}
.ws5_c00282{word-spacing:-0.746667pt;}
.ws7_c00282{word-spacing:-0.640000pt;}
.ws4_c00282{word-spacing:0.000000pt;}
.ws15_c00282{word-spacing:0.320000pt;}
.wsd_c00282{word-spacing:1.856000pt;}
.ws13_c00282{word-spacing:2.688000pt;}
.ws6_c00282{word-spacing:3.136000pt;}
.ws9_c00282{word-spacing:4.352000pt;}
.wsc_c00282{word-spacing:4.800000pt;}
.wsf_c00282{word-spacing:6.528000pt;}
.ws11_c00282{word-spacing:6.592000pt;}
.ws10_c00282{word-spacing:7.232000pt;}
.wsb_c00282{word-spacing:8.448000pt;}
.wsa_c00282{word-spacing:11.264000pt;}
.ws12_c00282{word-spacing:11.776000pt;}
.wse_c00282{word-spacing:21.952000pt;}
._0_c00282{margin-left:-426.966400pt;}
._4_c00282{margin-left:-5.145600pt;}
._1_c00282{margin-left:-3.733333pt;}
._2_c00282{margin-left:-1.952000pt;}
._5_c00282{margin-left:-0.987733pt;}
._3_c00282{width:3.680000pt;}
.fs1_c00282{font-size:37.333333pt;}
.fs0_c00282{font-size:53.333333pt;}
.fs5_c00282{font-size:58.666667pt;}
.fs4_c00282{font-size:64.000000pt;}
.fs3_c00282{font-size:74.666667pt;}
.fs2_c00282{font-size:96.000000pt;}
.y0_c00282{bottom:0.000000pt;}
.y1_c00282{bottom:36.666667pt;}
.y17_c00282{bottom:94.509067pt;}
.y16_c00282{bottom:121.181067pt;}
.y15_c00282{bottom:147.853067pt;}
.y14_c00282{bottom:201.186400pt;}
.y13_c00282{bottom:281.170400pt;}
.y12_c00282{bottom:307.842400pt;}
.y11_c00282{bottom:334.514400pt;}
.y10_c00282{bottom:361.186400pt;}
.yf_c00282{bottom:414.519733pt;}
.ye_c00282{bottom:494.466400pt;}
.yd_c00282{bottom:521.138400pt;}
.yc_c00282{bottom:547.810400pt;}
.yb_c00282{bottom:574.482400pt;}
.ya_c00282{bottom:601.154400pt;}
.y9_c00282{bottom:627.826400pt;}
.y8_c00282{bottom:654.498400pt;}
.y7_c00282{bottom:681.170400pt;}
.y6_c00282{bottom:707.842400pt;}
.y1a_c00282{bottom:707.853067pt;}
.y5_c00282{bottom:734.514400pt;}
.y19_c00282{bottom:734.519733pt;}
.y4_c00282{bottom:761.186400pt;}
.y18_c00282{bottom:761.787467pt;}
.y3_c00282{bottom:814.519733pt;}
.y2_c00282{bottom:894.519733pt;}
.h6_c00282{height:44.704000pt;}
.h2_c00282{height:48.000000pt;}
.h5_c00282{height:57.600000pt;}
.h4_c00282{height:69.813333pt;}
.h3_c00282{height:89.760000pt;}
.h0_c00282{height:1122.520000pt;}
.h1_c00282{height:1122.666667pt;}
.w0_c00282{width:793.701333pt;}
.w1_c00282{width:794.000000pt;}
.x0_c00282{left:0.000000pt;}
.x2_c00282{left:73.333333pt;}
.x3_c00282{left:80.000000pt;}
.x4_c00282{left:94.666667pt;}
.x5_c00282{left:600.543200pt;}
.x1_c00282{left:699.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.199000;font-style: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);}
.m1_c00283{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls1_c00283{letter-spacing:0.000000px;}
.ls0_c00283{letter-spacing:0.720000px;}
.ls2_c00283{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws1_c00283{word-spacing:0.000000px;}
.ws7_c00283{word-spacing:0.720000px;}
.ws5_c00283{word-spacing:1.800000px;}
.ws2_c00283{word-spacing:3.096000px;}
.ws9_c00283{word-spacing:3.528000px;}
.ws3_c00283{word-spacing:4.032000px;}
.ws8_c00283{word-spacing:5.184000px;}
.ws4_c00283{word-spacing:6.984000px;}
.wsa_c00283{word-spacing:9.792000px;}
.wsb_c00283{word-spacing:15.840000px;}
.ws6_c00283{word-spacing:200.880000px;}
._0_c00283{margin-left:-480.336600px;}
._3_c00283{margin-left:-200.880000px;}
._6_c00283{margin-left:-113.025600px;}
._5_c00283{margin-left:-96.105600px;}
._4_c00283{margin-left:-9.136800px;}
._1_c00283{margin-left:-4.200000px;}
._2_c00283{margin-left:-2.152800px;}
._7_c00283{margin-left:-1.036800px;}
.fc2_c00283{color:rgb(32,32,32);}
.fc1_c00283{color:rgb(232,86,17);}
.fc0_c00283{color:rgb(60,60,59);}
.fs1_c00283{font-size:42.000000px;}
.fs0_c00283{font-size:60.000000px;}
.fs3_c00283{font-size:72.000000px;}
.fs2_c00283{font-size:84.000000px;}
.y0_c00283{bottom:0.000000px;}
.y1_c00283{bottom:41.250000px;}
.y12_c00283{bottom:376.292700px;}
.y11_c00283{bottom:406.298700px;}
.y10_c00283{bottom:436.304700px;}
.yf_c00283{bottom:466.310700px;}
.ye_c00283{bottom:496.316700px;}
.yd_c00283{bottom:556.310700px;}
.yc_c00283{bottom:586.316700px;}
.yb_c00283{bottom:646.310700px;}
.ya_c00283{bottom:676.316700px;}
.y9_c00283{bottom:736.310700px;}
.y8_c00283{bottom:766.316700px;}
.y7_c00283{bottom:826.310700px;}
.y6_c00283{bottom:856.316700px;}
.y5_c00283{bottom:886.322700px;}
.y4_c00283{bottom:916.328700px;}
.y3_c00283{bottom:946.334700px;}
.y2_c00283{bottom:1006.334700px;}
.h2_c00283{height:54.000000px;}
.h4_c00283{height:64.800000px;}
.h5_c00283{height:67.320000px;}
.h3_c00283{height:78.540000px;}
.h0_c00283{height:1262.835000px;}
.h1_c00283{height:1263.000000px;}
.w0_c00283{width:892.914000px;}
.w1_c00283{width:893.250000px;}
.x0_c00283{left:0.000000px;}
.x2_c00283{left:90.000000px;}
.x3_c00283{left:106.500000px;}
.x4_c00283{left:127.506000px;}
.x1_c00283{left:785.888700px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls1_c00283{letter-spacing:0.000000pt;}
.ls0_c00283{letter-spacing:0.640000pt;}
.ls2_c00283{letter-spacing:0.746667pt;}
.ws0_c00283{word-spacing:-9.066667pt;}
.ws1_c00283{word-spacing:0.000000pt;}
.ws7_c00283{word-spacing:0.640000pt;}
.ws5_c00283{word-spacing:1.600000pt;}
.ws2_c00283{word-spacing:2.752000pt;}
.ws9_c00283{word-spacing:3.136000pt;}
.ws3_c00283{word-spacing:3.584000pt;}
.ws8_c00283{word-spacing:4.608000pt;}
.ws4_c00283{word-spacing:6.208000pt;}
.wsa_c00283{word-spacing:8.704000pt;}
.wsb_c00283{word-spacing:14.080000pt;}
.ws6_c00283{word-spacing:178.560000pt;}
._0_c00283{margin-left:-426.965867pt;}
._3_c00283{margin-left:-178.560000pt;}
._6_c00283{margin-left:-100.467200pt;}
._5_c00283{margin-left:-85.427200pt;}
._4_c00283{margin-left:-8.121600pt;}
._1_c00283{margin-left:-3.733333pt;}
._2_c00283{margin-left:-1.913600pt;}
._7_c00283{margin-left:-0.921600pt;}
.fs1_c00283{font-size:37.333333pt;}
.fs0_c00283{font-size:53.333333pt;}
.fs3_c00283{font-size:64.000000pt;}
.fs2_c00283{font-size:74.666667pt;}
.y0_c00283{bottom:0.000000pt;}
.y1_c00283{bottom:36.666667pt;}
.y12_c00283{bottom:334.482400pt;}
.y11_c00283{bottom:361.154400pt;}
.y10_c00283{bottom:387.826400pt;}
.yf_c00283{bottom:414.498400pt;}
.ye_c00283{bottom:441.170400pt;}
.yd_c00283{bottom:494.498400pt;}
.yc_c00283{bottom:521.170400pt;}
.yb_c00283{bottom:574.498400pt;}
.ya_c00283{bottom:601.170400pt;}
.y9_c00283{bottom:654.498400pt;}
.y8_c00283{bottom:681.170400pt;}
.y7_c00283{bottom:734.498400pt;}
.y6_c00283{bottom:761.170400pt;}
.y5_c00283{bottom:787.842400pt;}
.y4_c00283{bottom:814.514400pt;}
.y3_c00283{bottom:841.186400pt;}
.y2_c00283{bottom:894.519733pt;}
.h2_c00283{height:48.000000pt;}
.h4_c00283{height:57.600000pt;}
.h5_c00283{height:59.840000pt;}
.h3_c00283{height:69.813333pt;}
.h0_c00283{height:1122.520000pt;}
.h1_c00283{height:1122.666667pt;}
.w0_c00283{width:793.701333pt;}
.w1_c00283{width:794.000000pt;}
.x0_c00283{left:0.000000pt;}
.x2_c00283{left:80.000000pt;}
.x3_c00283{left:94.666667pt;}
.x4_c00283{left:113.338667pt;}
.x1_c00283{left:698.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00284;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00284;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:1.161000;font-style: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);}
.m1_c00284{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls5_c00284{letter-spacing:-0.324000px;}
.ls4_c00284{letter-spacing:0.000000px;}
.ls0_c00284{letter-spacing:0.720000px;}
.ls1_c00284{letter-spacing:0.840000px;}
.ls3_c00284{letter-spacing:1.500000px;}
.ls2_c00284{letter-spacing:1.650000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00284{word-spacing:-21.276000px;}
.ws2_c00284{word-spacing:-17.640000px;}
.ws3_c00284{word-spacing:-14.850000px;}
.ws4_c00284{word-spacing:-11.700000px;}
.ws0_c00284{word-spacing:-10.200000px;}
.ws10_c00284{word-spacing:-5.544000px;}
.ws11_c00284{word-spacing:-5.256000px;}
.ws6_c00284{word-spacing:-0.840000px;}
.ws5_c00284{word-spacing:0.000000px;}
.ws9_c00284{word-spacing:0.288000px;}
.ws7_c00284{word-spacing:0.792000px;}
.wsb_c00284{word-spacing:1.080000px;}
.wsd_c00284{word-spacing:2.520000px;}
.wsa_c00284{word-spacing:3.600000px;}
.ws8_c00284{word-spacing:6.336000px;}
.ws14_c00284{word-spacing:6.552000px;}
.ws13_c00284{word-spacing:7.416000px;}
.ws15_c00284{word-spacing:8.424000px;}
.wsc_c00284{word-spacing:10.728000px;}
.wse_c00284{word-spacing:11.232000px;}
.wsf_c00284{word-spacing:14.256000px;}
.ws12_c00284{word-spacing:29.232000px;}
._0_c00284{margin-left:-480.336000px;}
._4_c00284{margin-left:-7.023600px;}
._9_c00284{margin-left:-5.760000px;}
._1_c00284{margin-left:-4.200000px;}
._3_c00284{margin-left:-2.358000px;}
._2_c00284{margin-left:-1.134000px;}
._7_c00284{width:1.555200px;}
._6_c00284{width:2.570400px;}
._5_c00284{width:4.219200px;}
._8_c00284{width:5.803200px;}
.fc3_c00284{color:rgb(32,32,32);}
.fc2_c00284{color:rgb(233,83,14);}
.fc1_c00284{color:rgb(232,86,17);}
.fc4_c00284{color:rgb(157,157,156);}
.fc0_c00284{color:rgb(60,60,59);}
.fs1_c00284{font-size:42.000000px;}
.fs0_c00284{font-size:60.000000px;}
.fs5_c00284{font-size:66.000000px;}
.fs4_c00284{font-size:72.000000px;}
.fs3_c00284{font-size:84.000000px;}
.fs2_c00284{font-size:108.000000px;}
.y0_c00284{bottom:0.000000px;}
.y1_c00284{bottom:41.250000px;}
.y16_c00284{bottom:136.322700px;}
.y15_c00284{bottom:166.328700px;}
.y14_c00284{bottom:196.334700px;}
.y13_c00284{bottom:256.334700px;}
.y12_c00284{bottom:346.322700px;}
.y11_c00284{bottom:376.328700px;}
.y10_c00284{bottom:406.334700px;}
.yf_c00284{bottom:466.334700px;}
.ye_c00284{bottom:556.274700px;}
.yd_c00284{bottom:586.280700px;}
.yc_c00284{bottom:616.286700px;}
.yb_c00284{bottom:646.292700px;}
.ya_c00284{bottom:676.298700px;}
.y9_c00284{bottom:706.304700px;}
.y8_c00284{bottom:736.310700px;}
.y7_c00284{bottom:766.316700px;}
.y6_c00284{bottom:796.322700px;}
.y19_c00284{bottom:796.334700px;}
.y5_c00284{bottom:826.328700px;}
.y18_c00284{bottom:826.334700px;}
.y4_c00284{bottom:856.334700px;}
.y17_c00284{bottom:857.010900px;}
.y3_c00284{bottom:916.334700px;}
.y2_c00284{bottom:1006.334700px;}
.h6_c00284{height:50.292000px;}
.h2_c00284{height:54.000000px;}
.h5_c00284{height:64.800000px;}
.h4_c00284{height:78.540000px;}
.h3_c00284{height:100.980000px;}
.h0_c00284{height:1262.835000px;}
.h1_c00284{height:1263.000000px;}
.w0_c00284{width:892.914000px;}
.w1_c00284{width:893.250000px;}
.x0_c00284{left:0.000000px;}
.x2_c00284{left:82.500000px;}
.x3_c00284{left:90.000000px;}
.x4_c00284{left:106.500000px;}
.x5_c00284{left:675.611100px;}
.x1_c00284{left:786.938550px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls5_c00284{letter-spacing:-0.288000pt;}
.ls4_c00284{letter-spacing:0.000000pt;}
.ls0_c00284{letter-spacing:0.640000pt;}
.ls1_c00284{letter-spacing:0.746667pt;}
.ls3_c00284{letter-spacing:1.333333pt;}
.ls2_c00284{letter-spacing:1.466667pt;}
.ws1_c00284{word-spacing:-18.912000pt;}
.ws2_c00284{word-spacing:-15.680000pt;}
.ws3_c00284{word-spacing:-13.200000pt;}
.ws4_c00284{word-spacing:-10.400000pt;}
.ws0_c00284{word-spacing:-9.066667pt;}
.ws10_c00284{word-spacing:-4.928000pt;}
.ws11_c00284{word-spacing:-4.672000pt;}
.ws6_c00284{word-spacing:-0.746667pt;}
.ws5_c00284{word-spacing:0.000000pt;}
.ws9_c00284{word-spacing:0.256000pt;}
.ws7_c00284{word-spacing:0.704000pt;}
.wsb_c00284{word-spacing:0.960000pt;}
.wsd_c00284{word-spacing:2.240000pt;}
.wsa_c00284{word-spacing:3.200000pt;}
.ws8_c00284{word-spacing:5.632000pt;}
.ws14_c00284{word-spacing:5.824000pt;}
.ws13_c00284{word-spacing:6.592000pt;}
.ws15_c00284{word-spacing:7.488000pt;}
.wsc_c00284{word-spacing:9.536000pt;}
.wse_c00284{word-spacing:9.984000pt;}
.wsf_c00284{word-spacing:12.672000pt;}
.ws12_c00284{word-spacing:25.984000pt;}
._0_c00284{margin-left:-426.965333pt;}
._4_c00284{margin-left:-6.243200pt;}
._9_c00284{margin-left:-5.120000pt;}
._1_c00284{margin-left:-3.733333pt;}
._3_c00284{margin-left:-2.096000pt;}
._2_c00284{margin-left:-1.008000pt;}
._7_c00284{width:1.382400pt;}
._6_c00284{width:2.284800pt;}
._5_c00284{width:3.750400pt;}
._8_c00284{width:5.158400pt;}
.fs1_c00284{font-size:37.333333pt;}
.fs0_c00284{font-size:53.333333pt;}
.fs5_c00284{font-size:58.666667pt;}
.fs4_c00284{font-size:64.000000pt;}
.fs3_c00284{font-size:74.666667pt;}
.fs2_c00284{font-size:96.000000pt;}
.y0_c00284{bottom:0.000000pt;}
.y1_c00284{bottom:36.666667pt;}
.y16_c00284{bottom:121.175733pt;}
.y15_c00284{bottom:147.847733pt;}
.y14_c00284{bottom:174.519733pt;}
.y13_c00284{bottom:227.853067pt;}
.y12_c00284{bottom:307.842400pt;}
.y11_c00284{bottom:334.514400pt;}
.y10_c00284{bottom:361.186400pt;}
.yf_c00284{bottom:414.519733pt;}
.ye_c00284{bottom:494.466400pt;}
.yd_c00284{bottom:521.138400pt;}
.yc_c00284{bottom:547.810400pt;}
.yb_c00284{bottom:574.482400pt;}
.ya_c00284{bottom:601.154400pt;}
.y9_c00284{bottom:627.826400pt;}
.y8_c00284{bottom:654.498400pt;}
.y7_c00284{bottom:681.170400pt;}
.y6_c00284{bottom:707.842400pt;}
.y19_c00284{bottom:707.853067pt;}
.y5_c00284{bottom:734.514400pt;}
.y18_c00284{bottom:734.519733pt;}
.y4_c00284{bottom:761.186400pt;}
.y17_c00284{bottom:761.787467pt;}
.y3_c00284{bottom:814.519733pt;}
.y2_c00284{bottom:894.519733pt;}
.h6_c00284{height:44.704000pt;}
.h2_c00284{height:48.000000pt;}
.h5_c00284{height:57.600000pt;}
.h4_c00284{height:69.813333pt;}
.h3_c00284{height:89.760000pt;}
.h0_c00284{height:1122.520000pt;}
.h1_c00284{height:1122.666667pt;}
.w0_c00284{width:793.701333pt;}
.w1_c00284{width:794.000000pt;}
.x0_c00284{left:0.000000pt;}
.x2_c00284{left:73.333333pt;}
.x3_c00284{left:80.000000pt;}
.x4_c00284{left:94.666667pt;}
.x5_c00284{left:600.543200pt;}
.x1_c00284{left:699.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d27c0a327cee97d787e3e2f6.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.199000;font-style: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);}
.m1_c00285{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls1_c00285{letter-spacing:0.000000px;}
.ls0_c00285{letter-spacing:0.720000px;}
.ls2_c00285{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws5_c00285{word-spacing:-2.016000px;}
.ws3_c00285{word-spacing:-1.800000px;}
.ws6_c00285{word-spacing:-0.720000px;}
.ws1_c00285{word-spacing:0.000000px;}
.ws9_c00285{word-spacing:0.792000px;}
.ws2_c00285{word-spacing:1.512000px;}
.ws4_c00285{word-spacing:3.384000px;}
.wsa_c00285{word-spacing:5.472000px;}
.wsb_c00285{word-spacing:8.784000px;}
.ws8_c00285{word-spacing:12.600000px;}
.ws7_c00285{word-spacing:14.760000px;}
.wsc_c00285{word-spacing:22.464000px;}
._0_c00285{margin-left:-480.336600px;}
._4_c00285{margin-left:-5.760000px;}
._1_c00285{margin-left:-4.200000px;}
._2_c00285{margin-left:-2.181600px;}
._3_c00285{margin-left:-1.022400px;}
.fc2_c00285{color:rgb(32,32,32);}
.fc1_c00285{color:rgb(232,86,17);}
.fc0_c00285{color:rgb(60,60,59);}
.fs1_c00285{font-size:42.000000px;}
.fs0_c00285{font-size:60.000000px;}
.fs3_c00285{font-size:72.000000px;}
.fs2_c00285{font-size:84.000000px;}
.y0_c00285{bottom:0.000000px;}
.y1_c00285{bottom:41.250000px;}
.y10_c00285{bottom:436.304700px;}
.yf_c00285{bottom:466.310700px;}
.ye_c00285{bottom:496.316700px;}
.yd_c00285{bottom:526.322700px;}
.yc_c00285{bottom:556.328700px;}
.yb_c00285{bottom:616.322700px;}
.ya_c00285{bottom:676.316700px;}
.y9_c00285{bottom:706.322700px;}
.y8_c00285{bottom:766.316700px;}
.y7_c00285{bottom:826.310700px;}
.y6_c00285{bottom:856.316700px;}
.y5_c00285{bottom:886.322700px;}
.y4_c00285{bottom:916.328700px;}
.y3_c00285{bottom:946.334700px;}
.y2_c00285{bottom:1006.334700px;}
.h2_c00285{height:54.000000px;}
.h4_c00285{height:64.800000px;}
.h5_c00285{height:67.320000px;}
.h3_c00285{height:78.540000px;}
.h0_c00285{height:1262.835000px;}
.h1_c00285{height:1263.000000px;}
.w0_c00285{width:892.914000px;}
.w1_c00285{width:893.250000px;}
.x0_c00285{left:0.000000px;}
.x2_c00285{left:90.000000px;}
.x3_c00285{left:106.500000px;}
.x1_c00285{left:785.813700px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls1_c00285{letter-spacing:0.000000pt;}
.ls0_c00285{letter-spacing:0.640000pt;}
.ls2_c00285{letter-spacing:0.746667pt;}
.ws0_c00285{word-spacing:-9.066667pt;}
.ws5_c00285{word-spacing:-1.792000pt;}
.ws3_c00285{word-spacing:-1.600000pt;}
.ws6_c00285{word-spacing:-0.640000pt;}
.ws1_c00285{word-spacing:0.000000pt;}
.ws9_c00285{word-spacing:0.704000pt;}
.ws2_c00285{word-spacing:1.344000pt;}
.ws4_c00285{word-spacing:3.008000pt;}
.wsa_c00285{word-spacing:4.864000pt;}
.wsb_c00285{word-spacing:7.808000pt;}
.ws8_c00285{word-spacing:11.200000pt;}
.ws7_c00285{word-spacing:13.120000pt;}
.wsc_c00285{word-spacing:19.968000pt;}
._0_c00285{margin-left:-426.965867pt;}
._4_c00285{margin-left:-5.120000pt;}
._1_c00285{margin-left:-3.733333pt;}
._2_c00285{margin-left:-1.939200pt;}
._3_c00285{margin-left:-0.908800pt;}
.fs1_c00285{font-size:37.333333pt;}
.fs0_c00285{font-size:53.333333pt;}
.fs3_c00285{font-size:64.000000pt;}
.fs2_c00285{font-size:74.666667pt;}
.y0_c00285{bottom:0.000000pt;}
.y1_c00285{bottom:36.666667pt;}
.y10_c00285{bottom:387.826400pt;}
.yf_c00285{bottom:414.498400pt;}
.ye_c00285{bottom:441.170400pt;}
.yd_c00285{bottom:467.842400pt;}
.yc_c00285{bottom:494.514400pt;}
.yb_c00285{bottom:547.842400pt;}
.ya_c00285{bottom:601.170400pt;}
.y9_c00285{bottom:627.842400pt;}
.y8_c00285{bottom:681.170400pt;}
.y7_c00285{bottom:734.498400pt;}
.y6_c00285{bottom:761.170400pt;}
.y5_c00285{bottom:787.842400pt;}
.y4_c00285{bottom:814.514400pt;}
.y3_c00285{bottom:841.186400pt;}
.y2_c00285{bottom:894.519733pt;}
.h2_c00285{height:48.000000pt;}
.h4_c00285{height:57.600000pt;}
.h5_c00285{height:59.840000pt;}
.h3_c00285{height:69.813333pt;}
.h0_c00285{height:1122.520000pt;}
.h1_c00285{height:1122.666667pt;}
.w0_c00285{width:793.701333pt;}
.w1_c00285{width:794.000000pt;}
.x0_c00285{left:0.000000pt;}
.x2_c00285{left:80.000000pt;}
.x3_c00285{left:94.666667pt;}
.x1_c00285{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.160000;font-style:normal;font-weight:normal;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_66b6970dbf7b040f8f7c58d9.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00286;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;line-height:1.155000;font-style: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);}
.m1_c00286{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls2_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:0.864000px;}
.ls1_c00286{letter-spacing:1.200000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00286{word-spacing:-13.104000px;}
.ws0_c00286{word-spacing:-10.200000px;}
.ws4_c00286{word-spacing:-3.600000px;}
.ws3_c00286{word-spacing:-0.864000px;}
.ws2_c00286{word-spacing:0.000000px;}
._0_c00286{margin-left:-480.336600px;}
._4_c00286{margin-left:-10.560000px;}
._1_c00286{margin-left:-4.200000px;}
._2_c00286{margin-left:-1.440000px;}
._3_c00286{width:3.000000px;}
.fc3_c00286{color:rgb(255,255,255);}
.fc2_c00286{color:rgb(233,83,14);}
.fc1_c00286{color:rgb(232,86,17);}
.fc0_c00286{color:rgb(60,60,59);}
.fs1_c00286{font-size:42.000000px;}
.fs0_c00286{font-size:60.000000px;}
.fs3_c00286{font-size:72.000000px;}
.fs4_c00286{font-size:120.000000px;}
.fs2_c00286{font-size:360.000000px;}
.y0_c00286{bottom:0.000000px;}
.y1_c00286{bottom:41.250000px;}
.y9_c00286{bottom:574.310700px;}
.y8_c00286{bottom:595.316700px;}
.y7_c00286{bottom:616.322700px;}
.y6_c00286{bottom:664.328700px;}
.y5_c00286{bottom:685.334700px;}
.y4_c00286{bottom:706.340700px;}
.y3_c00286{bottom:752.834700px;}
.ya_c00286{bottom:1006.334700px;}
.y2_c00286{bottom:1093.526700px;}
.h2_c00286{height:54.000000px;}
.h5_c00286{height:64.800000px;}
.h4_c00286{height:66.456000px;}
.h6_c00286{height:112.200000px;}
.h3_c00286{height:324.000000px;}
.h0_c00286{height:1262.835000px;}
.h1_c00286{height:1263.000000px;}
.w0_c00286{width:892.914000px;}
.w1_c00286{width:893.250000px;}
.x0_c00286{left:0.000000px;}
.x2_c00286{left:81.290250px;}
.x3_c00286{left:82.393650px;}
.x5_c00286{left:112.287450px;}
.x4_c00286{left:127.393650px;}
.x1_c00286{left:787.913700px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls2_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:0.768000pt;}
.ls1_c00286{letter-spacing:1.066667pt;}
.ws1_c00286{word-spacing:-11.648000pt;}
.ws0_c00286{word-spacing:-9.066667pt;}
.ws4_c00286{word-spacing:-3.200000pt;}
.ws3_c00286{word-spacing:-0.768000pt;}
.ws2_c00286{word-spacing:0.000000pt;}
._0_c00286{margin-left:-426.965867pt;}
._4_c00286{margin-left:-9.386667pt;}
._1_c00286{margin-left:-3.733333pt;}
._2_c00286{margin-left:-1.280000pt;}
._3_c00286{width:2.666667pt;}
.fs1_c00286{font-size:37.333333pt;}
.fs0_c00286{font-size:53.333333pt;}
.fs3_c00286{font-size:64.000000pt;}
.fs4_c00286{font-size:106.666667pt;}
.fs2_c00286{font-size:320.000000pt;}
.y0_c00286{bottom:0.000000pt;}
.y1_c00286{bottom:36.666667pt;}
.y9_c00286{bottom:510.498400pt;}
.y8_c00286{bottom:529.170400pt;}
.y7_c00286{bottom:547.842400pt;}
.y6_c00286{bottom:590.514400pt;}
.y5_c00286{bottom:609.186400pt;}
.y4_c00286{bottom:627.858400pt;}
.y3_c00286{bottom:669.186400pt;}
.ya_c00286{bottom:894.519733pt;}
.y2_c00286{bottom:972.023733pt;}
.h2_c00286{height:48.000000pt;}
.h5_c00286{height:57.600000pt;}
.h4_c00286{height:59.072000pt;}
.h6_c00286{height:99.733333pt;}
.h3_c00286{height:288.000000pt;}
.h0_c00286{height:1122.520000pt;}
.h1_c00286{height:1122.666667pt;}
.w0_c00286{width:793.701333pt;}
.w1_c00286{width:794.000000pt;}
.x0_c00286{left:0.000000pt;}
.x2_c00286{left:72.258000pt;}
.x3_c00286{left:73.238800pt;}
.x5_c00286{left:99.811067pt;}
.x4_c00286{left:113.238800pt;}
.x1_c00286{left:700.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00287;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.161000;font-style: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);}
.m1_c00287{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls5_c00287{letter-spacing:-0.540000px;}
.ls4_c00287{letter-spacing:0.000000px;}
.ls0_c00287{letter-spacing:0.720000px;}
.ls1_c00287{letter-spacing:0.840000px;}
.ls3_c00287{letter-spacing:1.500000px;}
.ls2_c00287{letter-spacing:1.650000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00287{word-spacing:-21.060000px;}
.ws2_c00287{word-spacing:-17.640000px;}
.ws3_c00287{word-spacing:-11.700000px;}
.ws0_c00287{word-spacing:-10.200000px;}
.ws15_c00287{word-spacing:-1.500000px;}
.ws5_c00287{word-spacing:-0.840000px;}
.ws13_c00287{word-spacing:-0.504000px;}
.ws4_c00287{word-spacing:0.000000px;}
.ws6_c00287{word-spacing:0.216000px;}
.ws11_c00287{word-spacing:0.504000px;}
.ws9_c00287{word-spacing:1.296000px;}
.ws14_c00287{word-spacing:2.232000px;}
.wse_c00287{word-spacing:4.248000px;}
.wsa_c00287{word-spacing:4.752000px;}
.ws7_c00287{word-spacing:5.832000px;}
.wsf_c00287{word-spacing:6.048000px;}
.ws12_c00287{word-spacing:6.408000px;}
.wsc_c00287{word-spacing:6.480000px;}
.wsb_c00287{word-spacing:12.168000px;}
.wsd_c00287{word-spacing:16.200000px;}
.ws10_c00287{word-spacing:17.352000px;}
.ws8_c00287{word-spacing:17.928000px;}
._0_c00287{margin-left:-480.336600px;}
._6_c00287{margin-left:-6.408000px;}
._7_c00287{margin-left:-5.400000px;}
._1_c00287{margin-left:-4.200000px;}
._5_c00287{margin-left:-2.973600px;}
._2_c00287{margin-left:-1.512000px;}
._3_c00287{width:1.029600px;}
._4_c00287{width:2.138400px;}
.fc3_c00287{color:rgb(32,32,32);}
.fc2_c00287{color:rgb(233,83,14);}
.fc1_c00287{color:rgb(232,86,17);}
.fc4_c00287{color:rgb(157,157,156);}
.fc0_c00287{color:rgb(60,60,59);}
.fs1_c00287{font-size:42.000000px;}
.fs0_c00287{font-size:60.000000px;}
.fs5_c00287{font-size:66.000000px;}
.fs4_c00287{font-size:72.000000px;}
.fs3_c00287{font-size:84.000000px;}
.fs2_c00287{font-size:108.000000px;}
.y0_c00287{bottom:0.000000px;}
.y1_c00287{bottom:41.250000px;}
.y17_c00287{bottom:106.298700px;}
.y16_c00287{bottom:136.304700px;}
.y15_c00287{bottom:166.310700px;}
.y14_c00287{bottom:196.316700px;}
.y13_c00287{bottom:226.322700px;}
.y12_c00287{bottom:256.328700px;}
.y11_c00287{bottom:286.334700px;}
.y10_c00287{bottom:346.334700px;}
.yf_c00287{bottom:436.316700px;}
.ye_c00287{bottom:466.322700px;}
.yd_c00287{bottom:496.328700px;}
.yc_c00287{bottom:526.334700px;}
.yb_c00287{bottom:586.334700px;}
.ya_c00287{bottom:676.298700px;}
.y9_c00287{bottom:706.304700px;}
.y8_c00287{bottom:736.310700px;}
.y7_c00287{bottom:766.316700px;}
.y1b_c00287{bottom:766.334700px;}
.y6_c00287{bottom:796.322700px;}
.y1a_c00287{bottom:796.334700px;}
.y5_c00287{bottom:826.328700px;}
.y19_c00287{bottom:826.334700px;}
.y4_c00287{bottom:856.334700px;}
.y18_c00287{bottom:857.010900px;}
.y3_c00287{bottom:916.334700px;}
.y2_c00287{bottom:1006.334700px;}
.h6_c00287{height:50.292000px;}
.h2_c00287{height:54.000000px;}
.h5_c00287{height:64.800000px;}
.h4_c00287{height:78.540000px;}
.h3_c00287{height:100.980000px;}
.h0_c00287{height:1262.835000px;}
.h1_c00287{height:1263.000000px;}
.w0_c00287{width:892.914000px;}
.w1_c00287{width:893.250000px;}
.x0_c00287{left:0.000000px;}
.x2_c00287{left:82.500000px;}
.x3_c00287{left:90.000000px;}
.x4_c00287{left:106.500000px;}
.x5_c00287{left:675.611100px;}
.x1_c00287{left:785.888700px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls5_c00287{letter-spacing:-0.480000pt;}
.ls4_c00287{letter-spacing:0.000000pt;}
.ls0_c00287{letter-spacing:0.640000pt;}
.ls1_c00287{letter-spacing:0.746667pt;}
.ls3_c00287{letter-spacing:1.333333pt;}
.ls2_c00287{letter-spacing:1.466667pt;}
.ws1_c00287{word-spacing:-18.720000pt;}
.ws2_c00287{word-spacing:-15.680000pt;}
.ws3_c00287{word-spacing:-10.400000pt;}
.ws0_c00287{word-spacing:-9.066667pt;}
.ws15_c00287{word-spacing:-1.333333pt;}
.ws5_c00287{word-spacing:-0.746667pt;}
.ws13_c00287{word-spacing:-0.448000pt;}
.ws4_c00287{word-spacing:0.000000pt;}
.ws6_c00287{word-spacing:0.192000pt;}
.ws11_c00287{word-spacing:0.448000pt;}
.ws9_c00287{word-spacing:1.152000pt;}
.ws14_c00287{word-spacing:1.984000pt;}
.wse_c00287{word-spacing:3.776000pt;}
.wsa_c00287{word-spacing:4.224000pt;}
.ws7_c00287{word-spacing:5.184000pt;}
.wsf_c00287{word-spacing:5.376000pt;}
.ws12_c00287{word-spacing:5.696000pt;}
.wsc_c00287{word-spacing:5.760000pt;}
.wsb_c00287{word-spacing:10.816000pt;}
.wsd_c00287{word-spacing:14.400000pt;}
.ws10_c00287{word-spacing:15.424000pt;}
.ws8_c00287{word-spacing:15.936000pt;}
._0_c00287{margin-left:-426.965867pt;}
._6_c00287{margin-left:-5.696000pt;}
._7_c00287{margin-left:-4.800000pt;}
._1_c00287{margin-left:-3.733333pt;}
._5_c00287{margin-left:-2.643200pt;}
._2_c00287{margin-left:-1.344000pt;}
._3_c00287{width:0.915200pt;}
._4_c00287{width:1.900800pt;}
.fs1_c00287{font-size:37.333333pt;}
.fs0_c00287{font-size:53.333333pt;}
.fs5_c00287{font-size:58.666667pt;}
.fs4_c00287{font-size:64.000000pt;}
.fs3_c00287{font-size:74.666667pt;}
.fs2_c00287{font-size:96.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y1_c00287{bottom:36.666667pt;}
.y17_c00287{bottom:94.487733pt;}
.y16_c00287{bottom:121.159733pt;}
.y15_c00287{bottom:147.831733pt;}
.y14_c00287{bottom:174.503733pt;}
.y13_c00287{bottom:201.175733pt;}
.y12_c00287{bottom:227.847733pt;}
.y11_c00287{bottom:254.519733pt;}
.y10_c00287{bottom:307.853067pt;}
.yf_c00287{bottom:387.837067pt;}
.ye_c00287{bottom:414.509067pt;}
.yd_c00287{bottom:441.181067pt;}
.yc_c00287{bottom:467.853067pt;}
.yb_c00287{bottom:521.186400pt;}
.ya_c00287{bottom:601.154400pt;}
.y9_c00287{bottom:627.826400pt;}
.y8_c00287{bottom:654.498400pt;}
.y7_c00287{bottom:681.170400pt;}
.y1b_c00287{bottom:681.186400pt;}
.y6_c00287{bottom:707.842400pt;}
.y1a_c00287{bottom:707.853067pt;}
.y5_c00287{bottom:734.514400pt;}
.y19_c00287{bottom:734.519733pt;}
.y4_c00287{bottom:761.186400pt;}
.y18_c00287{bottom:761.787467pt;}
.y3_c00287{bottom:814.519733pt;}
.y2_c00287{bottom:894.519733pt;}
.h6_c00287{height:44.704000pt;}
.h2_c00287{height:48.000000pt;}
.h5_c00287{height:57.600000pt;}
.h4_c00287{height:69.813333pt;}
.h3_c00287{height:89.760000pt;}
.h0_c00287{height:1122.520000pt;}
.h1_c00287{height:1122.666667pt;}
.w0_c00287{width:793.701333pt;}
.w1_c00287{width:794.000000pt;}
.x0_c00287{left:0.000000pt;}
.x2_c00287{left:73.333333pt;}
.x3_c00287{left:80.000000pt;}
.x4_c00287{left:94.666667pt;}
.x5_c00287{left:600.543200pt;}
.x1_c00287{left:698.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.160000;font-style:normal;font-weight:normal;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_e12e76fc6151d647455519d2.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.v3_c00288{vertical-align:4.032000px;}
.v2_c00288{vertical-align:43.200000px;}
.v1_c00288{vertical-align:55.200000px;}
.ls1_c00288{letter-spacing:0.000000px;}
.ls0_c00288{letter-spacing:0.720000px;}
.ls2_c00288{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws8_c00288{word-spacing:-0.840000px;}
.wsa_c00288{word-spacing:-0.720000px;}
.ws7_c00288{word-spacing:0.000000px;}
.ws9_c00288{word-spacing:0.864000px;}
.wsd_c00288{word-spacing:3.096000px;}
.wse_c00288{word-spacing:4.104000px;}
.wsc_c00288{word-spacing:5.256000px;}
.wsb_c00288{word-spacing:7.488000px;}
.wsf_c00288{word-spacing:8.280000px;}
.ws1_c00288{word-spacing:106.176000px;}
.ws2_c00288{word-spacing:232.080000px;}
.ws5_c00288{word-spacing:262.080000px;}
.ws4_c00288{word-spacing:284.496000px;}
.ws6_c00288{word-spacing:291.264000px;}
.ws3_c00288{word-spacing:346.176000px;}
._0_c00288{margin-left:-480.336600px;}
._1_c00288{margin-left:-4.200000px;}
._2_c00288{margin-left:-1.432800px;}
._4_c00288{width:138.288000px;}
._3_c00288{width:144.712800px;}
._5_c00288{width:234.720000px;}
._7_c00288{width:245.184000px;}
._6_c00288{width:268.224000px;}
._9_c00288{width:297.408000px;}
._a_c00288{width:301.056000px;}
._b_c00288{width:310.464000px;}
._8_c00288{width:319.632000px;}
._c_c00288{width:321.648000px;}
.fc3_c00288{color:rgb(0,0,0);}
.fc2_c00288{color:rgb(32,32,32);}
.fc1_c00288{color:rgb(232,86,17);}
.fc0_c00288{color:rgb(60,60,59);}
.fs1_c00288{font-size:42.000000px;}
.fs4_c00288{font-size:48.000000px;}
.fs0_c00288{font-size:60.000000px;}
.fs3_c00288{font-size:72.000000px;}
.fs2_c00288{font-size:84.000000px;}
.y0_c00288{bottom:0.000000px;}
.y1_c00288{bottom:41.250000px;}
.y14_c00288{bottom:440.470350px;}
.y11_c00288{bottom:458.020350px;}
.y13_c00288{bottom:479.470350px;}
.y12_c00288{bottom:493.270350px;}
.y10_c00288{bottom:535.495350px;}
.yd_c00288{bottom:553.045350px;}
.yf_c00288{bottom:574.495350px;}
.ye_c00288{bottom:588.295350px;}
.yc_c00288{bottom:626.146350px;}
.yb_c00288{bottom:639.946350px;}
.ya_c00288{bottom:706.304700px;}
.y9_c00288{bottom:736.310700px;}
.y8_c00288{bottom:766.316700px;}
.y7_c00288{bottom:826.310700px;}
.y6_c00288{bottom:856.316700px;}
.y5_c00288{bottom:886.322700px;}
.y4_c00288{bottom:916.328700px;}
.y3_c00288{bottom:946.334700px;}
.y2_c00288{bottom:1006.334700px;}
.h5_c00288{height:43.200000px;}
.h9_c00288{height:47.232000px;}
.h2_c00288{height:54.000000px;}
.h7_c00288{height:56.100000px;}
.h4_c00288{height:64.800000px;}
.h3_c00288{height:78.540000px;}
.h8_c00288{height:86.400000px;}
.h6_c00288{height:98.400000px;}
.h0_c00288{height:1262.835000px;}
.h1_c00288{height:1263.000000px;}
.w0_c00288{width:892.914000px;}
.w1_c00288{width:893.250000px;}
.x0_c00288{left:0.000000px;}
.x2_c00288{left:90.000000px;}
.x8_c00288{left:94.183950px;}
.x3_c00288{left:106.500000px;}
.x9_c00288{left:175.015650px;}
.x4_c00288{left:276.469950px;}
.x5_c00288{left:375.673950px;}
.x6_c00288{left:464.761950px;}
.x7_c00288{left:549.889950px;}
.x1_c00288{left:785.813700px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.v3_c00288{vertical-align:3.584000pt;}
.v2_c00288{vertical-align:38.400000pt;}
.v1_c00288{vertical-align:49.066667pt;}
.ls1_c00288{letter-spacing:0.000000pt;}
.ls0_c00288{letter-spacing:0.640000pt;}
.ls2_c00288{letter-spacing:0.746667pt;}
.ws0_c00288{word-spacing:-9.066667pt;}
.ws8_c00288{word-spacing:-0.746667pt;}
.wsa_c00288{word-spacing:-0.640000pt;}
.ws7_c00288{word-spacing:0.000000pt;}
.ws9_c00288{word-spacing:0.768000pt;}
.wsd_c00288{word-spacing:2.752000pt;}
.wse_c00288{word-spacing:3.648000pt;}
.wsc_c00288{word-spacing:4.672000pt;}
.wsb_c00288{word-spacing:6.656000pt;}
.wsf_c00288{word-spacing:7.360000pt;}
.ws1_c00288{word-spacing:94.378667pt;}
.ws2_c00288{word-spacing:206.293333pt;}
.ws5_c00288{word-spacing:232.960000pt;}
.ws4_c00288{word-spacing:252.885333pt;}
.ws6_c00288{word-spacing:258.901333pt;}
.ws3_c00288{word-spacing:307.712000pt;}
._0_c00288{margin-left:-426.965867pt;}
._1_c00288{margin-left:-3.733333pt;}
._2_c00288{margin-left:-1.273600pt;}
._4_c00288{width:122.922667pt;}
._3_c00288{width:128.633600pt;}
._5_c00288{width:208.640000pt;}
._7_c00288{width:217.941333pt;}
._6_c00288{width:238.421333pt;}
._9_c00288{width:264.362667pt;}
._a_c00288{width:267.605333pt;}
._b_c00288{width:275.968000pt;}
._8_c00288{width:284.117333pt;}
._c_c00288{width:285.909333pt;}
.fs1_c00288{font-size:37.333333pt;}
.fs4_c00288{font-size:42.666667pt;}
.fs0_c00288{font-size:53.333333pt;}
.fs3_c00288{font-size:64.000000pt;}
.fs2_c00288{font-size:74.666667pt;}
.y0_c00288{bottom:0.000000pt;}
.y1_c00288{bottom:36.666667pt;}
.y14_c00288{bottom:391.529200pt;}
.y11_c00288{bottom:407.129200pt;}
.y13_c00288{bottom:426.195867pt;}
.y12_c00288{bottom:438.462533pt;}
.y10_c00288{bottom:475.995867pt;}
.yd_c00288{bottom:491.595867pt;}
.yf_c00288{bottom:510.662533pt;}
.ye_c00288{bottom:522.929200pt;}
.yc_c00288{bottom:556.574533pt;}
.yb_c00288{bottom:568.841200pt;}
.ya_c00288{bottom:627.826400pt;}
.y9_c00288{bottom:654.498400pt;}
.y8_c00288{bottom:681.170400pt;}
.y7_c00288{bottom:734.498400pt;}
.y6_c00288{bottom:761.170400pt;}
.y5_c00288{bottom:787.842400pt;}
.y4_c00288{bottom:814.514400pt;}
.y3_c00288{bottom:841.186400pt;}
.y2_c00288{bottom:894.519733pt;}
.h5_c00288{height:38.400000pt;}
.h9_c00288{height:41.984000pt;}
.h2_c00288{height:48.000000pt;}
.h7_c00288{height:49.866667pt;}
.h4_c00288{height:57.600000pt;}
.h3_c00288{height:69.813333pt;}
.h8_c00288{height:76.800000pt;}
.h6_c00288{height:87.466667pt;}
.h0_c00288{height:1122.520000pt;}
.h1_c00288{height:1122.666667pt;}
.w0_c00288{width:793.701333pt;}
.w1_c00288{width:794.000000pt;}
.x0_c00288{left:0.000000pt;}
.x2_c00288{left:80.000000pt;}
.x8_c00288{left:83.719067pt;}
.x3_c00288{left:94.666667pt;}
.x9_c00288{left:155.569467pt;}
.x4_c00288{left:245.751067pt;}
.x5_c00288{left:333.932400pt;}
.x6_c00288{left:413.121733pt;}
.x7_c00288{left:488.791067pt;}
.x1_c00288{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9336a84ddb46a296126c8b8f.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.160000;font-style:normal;font-weight:normal;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_e12e76fc6151d647455519d2.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_69257c7cc4b5a0ad933e588a.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.161000;font-style: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);}
.m1_c00289{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls2_c00289{letter-spacing:0.000000px;}
.ls0_c00289{letter-spacing:0.720000px;}
.ls1_c00289{letter-spacing:0.840000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00289{word-spacing:-17.640000px;}
.ws0_c00289{word-spacing:-10.200000px;}
.ws11_c00289{word-spacing:-6.984000px;}
.wsd_c00289{word-spacing:-3.960000px;}
.ws10_c00289{word-spacing:-3.240000px;}
.wsc_c00289{word-spacing:-1.584000px;}
.ws3_c00289{word-spacing:-0.840000px;}
.wsf_c00289{word-spacing:-0.720000px;}
.ws2_c00289{word-spacing:0.000000px;}
.ws8_c00289{word-spacing:0.072000px;}
.wse_c00289{word-spacing:0.360000px;}
.ws7_c00289{word-spacing:1.080000px;}
.wsb_c00289{word-spacing:1.440000px;}
.ws9_c00289{word-spacing:3.528000px;}
.wsa_c00289{word-spacing:5.904000px;}
.ws5_c00289{word-spacing:10.368000px;}
.ws4_c00289{word-spacing:12.744000px;}
.ws6_c00289{word-spacing:17.136000px;}
.ws12_c00289{word-spacing:19.296000px;}
.ws13_c00289{word-spacing:25.416000px;}
._0_c00289{margin-left:-480.336600px;}
._4_c00289{margin-left:-8.640000px;}
._2_c00289{margin-left:-6.480000px;}
._1_c00289{margin-left:-4.200000px;}
._5_c00289{margin-left:-2.520000px;}
._3_c00289{margin-left:-1.440000px;}
._6_c00289{width:1.440000px;}
._7_c00289{width:3.542400px;}
._8_c00289{width:7.624800px;}
.fc3_c00289{color:rgb(135,135,135);}
.fc2_c00289{color:rgb(32,32,32);}
.fc1_c00289{color:rgb(232,86,17);}
.fc0_c00289{color:rgb(60,60,59);}
.fs1_c00289{font-size:42.000000px;}
.fs0_c00289{font-size:60.000000px;}
.fs3_c00289{font-size:72.000000px;}
.fs2_c00289{font-size:84.000000px;}
.y0_c00289{bottom:0.000000px;}
.y1_c00289{bottom:41.250000px;}
.y14_c00289{bottom:256.322700px;}
.y13_c00289{bottom:286.328700px;}
.y12_c00289{bottom:316.334700px;}
.y11_c00289{bottom:376.328700px;}
.y10_c00289{bottom:406.334700px;}
.yf_c00289{bottom:436.340700px;}
.ye_c00289{bottom:496.334700px;}
.yd_c00289{bottom:556.334700px;}
.yc_c00289{bottom:646.292700px;}
.yb_c00289{bottom:676.298700px;}
.ya_c00289{bottom:706.304700px;}
.y9_c00289{bottom:736.310700px;}
.y8_c00289{bottom:796.304700px;}
.y7_c00289{bottom:826.310700px;}
.y6_c00289{bottom:856.316700px;}
.y5_c00289{bottom:886.322700px;}
.y4_c00289{bottom:916.328700px;}
.y3_c00289{bottom:946.334700px;}
.y2_c00289{bottom:1006.334700px;}
.h2_c00289{height:54.000000px;}
.h4_c00289{height:64.800000px;}
.h3_c00289{height:78.540000px;}
.h0_c00289{height:1262.835000px;}
.h1_c00289{height:1263.000000px;}
.w0_c00289{width:892.914000px;}
.w1_c00289{width:893.250000px;}
.x0_c00289{left:0.000000px;}
.x2_c00289{left:90.000000px;}
.x4_c00289{left:105.000000px;}
.x3_c00289{left:106.500000px;}
.x5_c00289{left:119.994000px;}
.x1_c00289{left:785.753700px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls2_c00289{letter-spacing:0.000000pt;}
.ls0_c00289{letter-spacing:0.640000pt;}
.ls1_c00289{letter-spacing:0.746667pt;}
.ws1_c00289{word-spacing:-15.680000pt;}
.ws0_c00289{word-spacing:-9.066667pt;}
.ws11_c00289{word-spacing:-6.208000pt;}
.wsd_c00289{word-spacing:-3.520000pt;}
.ws10_c00289{word-spacing:-2.880000pt;}
.wsc_c00289{word-spacing:-1.408000pt;}
.ws3_c00289{word-spacing:-0.746667pt;}
.wsf_c00289{word-spacing:-0.640000pt;}
.ws2_c00289{word-spacing:0.000000pt;}
.ws8_c00289{word-spacing:0.064000pt;}
.wse_c00289{word-spacing:0.320000pt;}
.ws7_c00289{word-spacing:0.960000pt;}
.wsb_c00289{word-spacing:1.280000pt;}
.ws9_c00289{word-spacing:3.136000pt;}
.wsa_c00289{word-spacing:5.248000pt;}
.ws5_c00289{word-spacing:9.216000pt;}
.ws4_c00289{word-spacing:11.328000pt;}
.ws6_c00289{word-spacing:15.232000pt;}
.ws12_c00289{word-spacing:17.152000pt;}
.ws13_c00289{word-spacing:22.592000pt;}
._0_c00289{margin-left:-426.965867pt;}
._4_c00289{margin-left:-7.680000pt;}
._2_c00289{margin-left:-5.760000pt;}
._1_c00289{margin-left:-3.733333pt;}
._5_c00289{margin-left:-2.240000pt;}
._3_c00289{margin-left:-1.280000pt;}
._6_c00289{width:1.280000pt;}
._7_c00289{width:3.148800pt;}
._8_c00289{width:6.777600pt;}
.fs1_c00289{font-size:37.333333pt;}
.fs0_c00289{font-size:53.333333pt;}
.fs3_c00289{font-size:64.000000pt;}
.fs2_c00289{font-size:74.666667pt;}
.y0_c00289{bottom:0.000000pt;}
.y1_c00289{bottom:36.666667pt;}
.y14_c00289{bottom:227.842400pt;}
.y13_c00289{bottom:254.514400pt;}
.y12_c00289{bottom:281.186400pt;}
.y11_c00289{bottom:334.514400pt;}
.y10_c00289{bottom:361.186400pt;}
.yf_c00289{bottom:387.858400pt;}
.ye_c00289{bottom:441.186400pt;}
.yd_c00289{bottom:494.519733pt;}
.yc_c00289{bottom:574.482400pt;}
.yb_c00289{bottom:601.154400pt;}
.ya_c00289{bottom:627.826400pt;}
.y9_c00289{bottom:654.498400pt;}
.y8_c00289{bottom:707.826400pt;}
.y7_c00289{bottom:734.498400pt;}
.y6_c00289{bottom:761.170400pt;}
.y5_c00289{bottom:787.842400pt;}
.y4_c00289{bottom:814.514400pt;}
.y3_c00289{bottom:841.186400pt;}
.y2_c00289{bottom:894.519733pt;}
.h2_c00289{height:48.000000pt;}
.h4_c00289{height:57.600000pt;}
.h3_c00289{height:69.813333pt;}
.h0_c00289{height:1122.520000pt;}
.h1_c00289{height:1122.666667pt;}
.w0_c00289{width:793.701333pt;}
.w1_c00289{width:794.000000pt;}
.x0_c00289{left:0.000000pt;}
.x2_c00289{left:80.000000pt;}
.x4_c00289{left:93.333333pt;}
.x3_c00289{left:94.666667pt;}
.x5_c00289{left:106.661333pt;}
.x1_c00289{left:698.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_795c1aff8c99ee916373da00.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00290;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00290;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.161000;font-style: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);}
.m1_c00290{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls5_c00290{letter-spacing:-0.324000px;}
.ls4_c00290{letter-spacing:0.000000px;}
.ls0_c00290{letter-spacing:0.720000px;}
.ls1_c00290{letter-spacing:0.840000px;}
.ls3_c00290{letter-spacing:1.500000px;}
.ls2_c00290{letter-spacing:1.650000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00290{word-spacing:-21.276000px;}
.ws2_c00290{word-spacing:-17.640000px;}
.ws3_c00290{word-spacing:-14.850000px;}
.ws0_c00290{word-spacing:-10.200000px;}
.wse_c00290{word-spacing:-2.880000px;}
.ws11_c00290{word-spacing:-2.376000px;}
.ws10_c00290{word-spacing:-1.800000px;}
.ws15_c00290{word-spacing:-1.224000px;}
.ws5_c00290{word-spacing:-0.840000px;}
.wsc_c00290{word-spacing:-0.432000px;}
.ws4_c00290{word-spacing:0.000000px;}
.ws14_c00290{word-spacing:0.288000px;}
.wsd_c00290{word-spacing:1.656000px;}
.ws13_c00290{word-spacing:2.304000px;}
.ws6_c00290{word-spacing:3.240000px;}
.wsf_c00290{word-spacing:3.672000px;}
.wsa_c00290{word-spacing:4.464000px;}
.ws8_c00290{word-spacing:5.904000px;}
.wsb_c00290{word-spacing:6.768000px;}
.ws7_c00290{word-spacing:8.352000px;}
.ws9_c00290{word-spacing:11.952000px;}
.ws12_c00290{word-spacing:20.088000px;}
._0_c00290{margin-left:-480.337200px;}
._9_c00290{margin-left:-26.582400px;}
._3_c00290{margin-left:-6.480000px;}
._a_c00290{margin-left:-5.400000px;}
._1_c00290{margin-left:-4.200000px;}
._4_c00290{margin-left:-2.764800px;}
._2_c00290{margin-left:-1.134000px;}
._6_c00290{width:1.022400px;}
._7_c00290{width:2.365200px;}
._8_c00290{width:3.661200px;}
._5_c00290{width:4.903200px;}
.fc3_c00290{color:rgb(32,32,32);}
.fc2_c00290{color:rgb(233,83,14);}
.fc1_c00290{color:rgb(232,86,17);}
.fc4_c00290{color:rgb(157,157,156);}
.fc0_c00290{color:rgb(60,60,59);}
.fs1_c00290{font-size:42.000000px;}
.fs0_c00290{font-size:60.000000px;}
.fs5_c00290{font-size:66.000000px;}
.fs4_c00290{font-size:72.000000px;}
.fs3_c00290{font-size:84.000000px;}
.fs2_c00290{font-size:108.000000px;}
.y0_c00290{bottom:0.000000px;}
.y1_c00290{bottom:41.250000px;}
.y17_c00290{bottom:106.298700px;}
.y16_c00290{bottom:136.304700px;}
.y15_c00290{bottom:166.310700px;}
.y14_c00290{bottom:196.316700px;}
.y13_c00290{bottom:226.322700px;}
.y12_c00290{bottom:256.328700px;}
.y11_c00290{bottom:286.334700px;}
.y10_c00290{bottom:346.334700px;}
.yf_c00290{bottom:436.316700px;}
.ye_c00290{bottom:466.322700px;}
.yd_c00290{bottom:496.328700px;}
.yc_c00290{bottom:526.334700px;}
.yb_c00290{bottom:586.334700px;}
.ya_c00290{bottom:676.298700px;}
.y9_c00290{bottom:706.304700px;}
.y8_c00290{bottom:736.310700px;}
.y7_c00290{bottom:766.316700px;}
.y6_c00290{bottom:796.322700px;}
.y1a_c00290{bottom:796.334700px;}
.y5_c00290{bottom:826.328700px;}
.y19_c00290{bottom:826.334700px;}
.y4_c00290{bottom:856.334700px;}
.y18_c00290{bottom:856.376100px;}
.y3_c00290{bottom:916.334700px;}
.y2_c00290{bottom:1006.334700px;}
.h6_c00290{height:50.292000px;}
.h2_c00290{height:54.000000px;}
.h5_c00290{height:64.800000px;}
.h4_c00290{height:78.540000px;}
.h3_c00290{height:100.980000px;}
.h0_c00290{height:1262.835000px;}
.h1_c00290{height:1263.000000px;}
.w0_c00290{width:892.914000px;}
.w1_c00290{width:893.250000px;}
.x0_c00290{left:0.000000px;}
.x2_c00290{left:82.500000px;}
.x3_c00290{left:90.000000px;}
.x4_c00290{left:106.500000px;}
.x5_c00290{left:675.611100px;}
.x1_c00290{left:789.413850px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls5_c00290{letter-spacing:-0.288000pt;}
.ls4_c00290{letter-spacing:0.000000pt;}
.ls0_c00290{letter-spacing:0.640000pt;}
.ls1_c00290{letter-spacing:0.746667pt;}
.ls3_c00290{letter-spacing:1.333333pt;}
.ls2_c00290{letter-spacing:1.466667pt;}
.ws1_c00290{word-spacing:-18.912000pt;}
.ws2_c00290{word-spacing:-15.680000pt;}
.ws3_c00290{word-spacing:-13.200000pt;}
.ws0_c00290{word-spacing:-9.066667pt;}
.wse_c00290{word-spacing:-2.560000pt;}
.ws11_c00290{word-spacing:-2.112000pt;}
.ws10_c00290{word-spacing:-1.600000pt;}
.ws15_c00290{word-spacing:-1.088000pt;}
.ws5_c00290{word-spacing:-0.746667pt;}
.wsc_c00290{word-spacing:-0.384000pt;}
.ws4_c00290{word-spacing:0.000000pt;}
.ws14_c00290{word-spacing:0.256000pt;}
.wsd_c00290{word-spacing:1.472000pt;}
.ws13_c00290{word-spacing:2.048000pt;}
.ws6_c00290{word-spacing:2.880000pt;}
.wsf_c00290{word-spacing:3.264000pt;}
.wsa_c00290{word-spacing:3.968000pt;}
.ws8_c00290{word-spacing:5.248000pt;}
.wsb_c00290{word-spacing:6.016000pt;}
.ws7_c00290{word-spacing:7.424000pt;}
.ws9_c00290{word-spacing:10.624000pt;}
.ws12_c00290{word-spacing:17.856000pt;}
._0_c00290{margin-left:-426.966400pt;}
._9_c00290{margin-left:-23.628800pt;}
._3_c00290{margin-left:-5.760000pt;}
._a_c00290{margin-left:-4.800000pt;}
._1_c00290{margin-left:-3.733333pt;}
._4_c00290{margin-left:-2.457600pt;}
._2_c00290{margin-left:-1.008000pt;}
._6_c00290{width:0.908800pt;}
._7_c00290{width:2.102400pt;}
._8_c00290{width:3.254400pt;}
._5_c00290{width:4.358400pt;}
.fs1_c00290{font-size:37.333333pt;}
.fs0_c00290{font-size:53.333333pt;}
.fs5_c00290{font-size:58.666667pt;}
.fs4_c00290{font-size:64.000000pt;}
.fs3_c00290{font-size:74.666667pt;}
.fs2_c00290{font-size:96.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y1_c00290{bottom:36.666667pt;}
.y17_c00290{bottom:94.487733pt;}
.y16_c00290{bottom:121.159733pt;}
.y15_c00290{bottom:147.831733pt;}
.y14_c00290{bottom:174.503733pt;}
.y13_c00290{bottom:201.175733pt;}
.y12_c00290{bottom:227.847733pt;}
.y11_c00290{bottom:254.519733pt;}
.y10_c00290{bottom:307.853067pt;}
.yf_c00290{bottom:387.837067pt;}
.ye_c00290{bottom:414.509067pt;}
.yd_c00290{bottom:441.181067pt;}
.yc_c00290{bottom:467.853067pt;}
.yb_c00290{bottom:521.186400pt;}
.ya_c00290{bottom:601.154400pt;}
.y9_c00290{bottom:627.826400pt;}
.y8_c00290{bottom:654.498400pt;}
.y7_c00290{bottom:681.170400pt;}
.y6_c00290{bottom:707.842400pt;}
.y1a_c00290{bottom:707.853067pt;}
.y5_c00290{bottom:734.514400pt;}
.y19_c00290{bottom:734.519733pt;}
.y4_c00290{bottom:761.186400pt;}
.y18_c00290{bottom:761.223200pt;}
.y3_c00290{bottom:814.519733pt;}
.y2_c00290{bottom:894.519733pt;}
.h6_c00290{height:44.704000pt;}
.h2_c00290{height:48.000000pt;}
.h5_c00290{height:57.600000pt;}
.h4_c00290{height:69.813333pt;}
.h3_c00290{height:89.760000pt;}
.h0_c00290{height:1122.520000pt;}
.h1_c00290{height:1122.666667pt;}
.w0_c00290{width:793.701333pt;}
.w1_c00290{width:794.000000pt;}
.x0_c00290{left:0.000000pt;}
.x2_c00290{left:73.333333pt;}
.x3_c00290{left:80.000000pt;}
.x4_c00290{left:94.666667pt;}
.x5_c00290{left:600.543200pt;}
.x1_c00290{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9336a84ddb46a296126c8b8f.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.v1_c00291{vertical-align:55.200000px;}
.ls1_c00291{letter-spacing:0.000000px;}
.ls0_c00291{letter-spacing:0.720000px;}
.ls2_c00291{letter-spacing:0.840000px;}
.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;}
}
.ws4_c00291{word-spacing:-12.000000px;}
.ws0_c00291{word-spacing:-10.200000px;}
.wsc_c00291{word-spacing:-3.528000px;}
.ws9_c00291{word-spacing:-0.840000px;}
.wsd_c00291{word-spacing:-0.288000px;}
.wsb_c00291{word-spacing:-0.216000px;}
.ws8_c00291{word-spacing:0.000000px;}
.wsa_c00291{word-spacing:1.080000px;}
.wse_c00291{word-spacing:5.400000px;}
.ws2_c00291{word-spacing:215.040000px;}
.ws6_c00291{word-spacing:248.304000px;}
.ws3_c00291{word-spacing:267.408000px;}
.ws7_c00291{word-spacing:269.424000px;}
.ws5_c00291{word-spacing:367.776000px;}
.ws1_c00291{word-spacing:368.112000px;}
._0_c00291{margin-left:-480.336000px;}
._1_c00291{margin-left:-4.200000px;}
._3_c00291{margin-left:-2.400000px;}
._2_c00291{margin-left:-1.200000px;}
._4_c00291{width:116.976000px;}
._5_c00291{width:145.152000px;}
._6_c00291{width:226.704000px;}
._7_c00291{width:272.736000px;}
._9_c00291{width:278.928000px;}
._d_c00291{width:280.944000px;}
._b_c00291{width:291.984000px;}
._c_c00291{width:302.736000px;}
._8_c00291{width:315.456000px;}
._a_c00291{width:325.152000px;}
._e_c00291{width:333.312000px;}
.fc3_c00291{color:rgb(0,0,0);}
.fc2_c00291{color:rgb(32,32,32);}
.fc1_c00291{color:rgb(232,86,17);}
.fc0_c00291{color:rgb(60,60,59);}
.fs1_c00291{font-size:42.000000px;}
.fs4_c00291{font-size:48.000000px;}
.fs0_c00291{font-size:60.000000px;}
.fs3_c00291{font-size:72.000000px;}
.fs2_c00291{font-size:84.000000px;}
.y0_c00291{bottom:0.000000px;}
.y1_c00291{bottom:41.250000px;}
.y13_c00291{bottom:436.328700px;}
.y12_c00291{bottom:466.334700px;}
.y11_c00291{bottom:536.572200px;}
.ye_c00291{bottom:552.634350px;}
.y10_c00291{bottom:568.372200px;}
.yf_c00291{bottom:582.172200px;}
.yd_c00291{bottom:628.150200px;}
.ya_c00291{bottom:639.784350px;}
.yc_c00291{bottom:660.022200px;}
.yb_c00291{bottom:673.822200px;}
.y9_c00291{bottom:715.372200px;}
.y8_c00291{bottom:729.172200px;}
.y7_c00291{bottom:826.310700px;}
.y6_c00291{bottom:856.316700px;}
.y5_c00291{bottom:886.322700px;}
.y4_c00291{bottom:916.328700px;}
.y3_c00291{bottom:946.334700px;}
.y2_c00291{bottom:1006.334700px;}
.h5_c00291{height:43.200000px;}
.h2_c00291{height:54.000000px;}
.h7_c00291{height:56.100000px;}
.h4_c00291{height:64.800000px;}
.h3_c00291{height:78.540000px;}
.h6_c00291{height:98.400000px;}
.h0_c00291{height:1262.835000px;}
.h1_c00291{height:1263.000000px;}
.w0_c00291{width:892.914000px;}
.w1_c00291{width:893.250000px;}
.x0_c00291{left:0.000000px;}
.x2_c00291{left:90.000000px;}
.x3_c00291{left:106.500000px;}
.x8_c00291{left:121.125000px;}
.x9_c00291{left:182.456700px;}
.x4_c00291{left:283.095150px;}
.x5_c00291{left:374.403150px;}
.x6_c00291{left:449.367150px;}
.x7_c00291{left:542.487150px;}
.x1_c00291{left:786.938550px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.v1_c00291{vertical-align:49.066667pt;}
.ls1_c00291{letter-spacing:0.000000pt;}
.ls0_c00291{letter-spacing:0.640000pt;}
.ls2_c00291{letter-spacing:0.746667pt;}
.ws4_c00291{word-spacing:-10.666667pt;}
.ws0_c00291{word-spacing:-9.066667pt;}
.wsc_c00291{word-spacing:-3.136000pt;}
.ws9_c00291{word-spacing:-0.746667pt;}
.wsd_c00291{word-spacing:-0.256000pt;}
.wsb_c00291{word-spacing:-0.192000pt;}
.ws8_c00291{word-spacing:0.000000pt;}
.wsa_c00291{word-spacing:0.960000pt;}
.wse_c00291{word-spacing:4.800000pt;}
.ws2_c00291{word-spacing:191.146667pt;}
.ws6_c00291{word-spacing:220.714667pt;}
.ws3_c00291{word-spacing:237.696000pt;}
.ws7_c00291{word-spacing:239.488000pt;}
.ws5_c00291{word-spacing:326.912000pt;}
.ws1_c00291{word-spacing:327.210667pt;}
._0_c00291{margin-left:-426.965333pt;}
._1_c00291{margin-left:-3.733333pt;}
._3_c00291{margin-left:-2.133333pt;}
._2_c00291{margin-left:-1.066667pt;}
._4_c00291{width:103.978667pt;}
._5_c00291{width:129.024000pt;}
._6_c00291{width:201.514667pt;}
._7_c00291{width:242.432000pt;}
._9_c00291{width:247.936000pt;}
._d_c00291{width:249.728000pt;}
._b_c00291{width:259.541333pt;}
._c_c00291{width:269.098667pt;}
._8_c00291{width:280.405333pt;}
._a_c00291{width:289.024000pt;}
._e_c00291{width:296.277333pt;}
.fs1_c00291{font-size:37.333333pt;}
.fs4_c00291{font-size:42.666667pt;}
.fs0_c00291{font-size:53.333333pt;}
.fs3_c00291{font-size:64.000000pt;}
.fs2_c00291{font-size:74.666667pt;}
.y0_c00291{bottom:0.000000pt;}
.y1_c00291{bottom:36.666667pt;}
.y13_c00291{bottom:387.847733pt;}
.y12_c00291{bottom:414.519733pt;}
.y11_c00291{bottom:476.953067pt;}
.ye_c00291{bottom:491.230533pt;}
.y10_c00291{bottom:505.219733pt;}
.yf_c00291{bottom:517.486400pt;}
.yd_c00291{bottom:558.355733pt;}
.ya_c00291{bottom:568.697200pt;}
.yc_c00291{bottom:586.686400pt;}
.yb_c00291{bottom:598.953067pt;}
.y9_c00291{bottom:635.886400pt;}
.y8_c00291{bottom:648.153067pt;}
.y7_c00291{bottom:734.498400pt;}
.y6_c00291{bottom:761.170400pt;}
.y5_c00291{bottom:787.842400pt;}
.y4_c00291{bottom:814.514400pt;}
.y3_c00291{bottom:841.186400pt;}
.y2_c00291{bottom:894.519733pt;}
.h5_c00291{height:38.400000pt;}
.h2_c00291{height:48.000000pt;}
.h7_c00291{height:49.866667pt;}
.h4_c00291{height:57.600000pt;}
.h3_c00291{height:69.813333pt;}
.h6_c00291{height:87.466667pt;}
.h0_c00291{height:1122.520000pt;}
.h1_c00291{height:1122.666667pt;}
.w0_c00291{width:793.701333pt;}
.w1_c00291{width:794.000000pt;}
.x0_c00291{left:0.000000pt;}
.x2_c00291{left:80.000000pt;}
.x3_c00291{left:94.666667pt;}
.x8_c00291{left:107.666667pt;}
.x9_c00291{left:162.183733pt;}
.x4_c00291{left:251.640133pt;}
.x5_c00291{left:332.802800pt;}
.x6_c00291{left:399.437467pt;}
.x7_c00291{left:482.210800pt;}
.x1_c00291{left:699.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9336a84ddb46a296126c8b8f.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.160000;font-style:normal;font-weight:normal;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_e12e76fc6151d647455519d2.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_69257c7cc4b5a0ad933e588a.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.161000;font-style: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);}
.m1_c00292{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls2_c00292{letter-spacing:0.000000px;}
.ls0_c00292{letter-spacing:0.720000px;}
.ls1_c00292{letter-spacing:0.840000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00292{word-spacing:-17.640000px;}
.ws0_c00292{word-spacing:-10.200000px;}
.wsc_c00292{word-spacing:-3.960000px;}
.wsf_c00292{word-spacing:-3.240000px;}
.ws9_c00292{word-spacing:-1.944000px;}
.ws5_c00292{word-spacing:-1.656000px;}
.wsb_c00292{word-spacing:-1.584000px;}
.ws3_c00292{word-spacing:-0.840000px;}
.wse_c00292{word-spacing:-0.720000px;}
.ws7_c00292{word-spacing:-0.144000px;}
.ws2_c00292{word-spacing:0.000000px;}
.wsd_c00292{word-spacing:0.360000px;}
.ws8_c00292{word-spacing:3.312000px;}
.ws4_c00292{word-spacing:3.528000px;}
.wsa_c00292{word-spacing:6.552000px;}
.ws6_c00292{word-spacing:11.592000px;}
.ws11_c00292{word-spacing:14.040000px;}
.ws12_c00292{word-spacing:15.192000px;}
.ws10_c00292{word-spacing:20.304000px;}
.ws13_c00292{word-spacing:21.312000px;}
._0_c00292{margin-left:-480.336600px;}
._4_c00292{margin-left:-8.640000px;}
._2_c00292{margin-left:-6.480000px;}
._1_c00292{margin-left:-4.200000px;}
._5_c00292{margin-left:-2.520000px;}
._3_c00292{margin-left:-1.440000px;}
._6_c00292{width:1.029600px;}
._7_c00292{width:2.505600px;}
._8_c00292{width:3.981600px;}
._9_c00292{width:8.697600px;}
.fc3_c00292{color:rgb(135,135,135);}
.fc2_c00292{color:rgb(32,32,32);}
.fc1_c00292{color:rgb(232,86,17);}
.fc0_c00292{color:rgb(60,60,59);}
.fs1_c00292{font-size:42.000000px;}
.fs0_c00292{font-size:60.000000px;}
.fs3_c00292{font-size:72.000000px;}
.fs2_c00292{font-size:84.000000px;}
.y0_c00292{bottom:0.000000px;}
.y1_c00292{bottom:41.250000px;}
.y12_c00292{bottom:346.322700px;}
.y11_c00292{bottom:376.328700px;}
.y10_c00292{bottom:406.334700px;}
.yf_c00292{bottom:466.328700px;}
.ye_c00292{bottom:496.334700px;}
.yd_c00292{bottom:526.340700px;}
.yc_c00292{bottom:586.334700px;}
.yb_c00292{bottom:646.334700px;}
.ya_c00292{bottom:736.292700px;}
.y9_c00292{bottom:766.298700px;}
.y8_c00292{bottom:796.304700px;}
.y7_c00292{bottom:826.310700px;}
.y6_c00292{bottom:856.316700px;}
.y5_c00292{bottom:886.322700px;}
.y4_c00292{bottom:916.328700px;}
.y3_c00292{bottom:946.334700px;}
.y2_c00292{bottom:1006.334700px;}
.h2_c00292{height:54.000000px;}
.h4_c00292{height:64.800000px;}
.h3_c00292{height:78.540000px;}
.h0_c00292{height:1262.835000px;}
.h1_c00292{height:1263.000000px;}
.w0_c00292{width:892.914000px;}
.w1_c00292{width:893.250000px;}
.x0_c00292{left:0.000000px;}
.x2_c00292{left:90.000000px;}
.x4_c00292{left:105.000000px;}
.x3_c00292{left:106.500000px;}
.x5_c00292{left:119.994000px;}
.x1_c00292{left:786.788700px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls2_c00292{letter-spacing:0.000000pt;}
.ls0_c00292{letter-spacing:0.640000pt;}
.ls1_c00292{letter-spacing:0.746667pt;}
.ws1_c00292{word-spacing:-15.680000pt;}
.ws0_c00292{word-spacing:-9.066667pt;}
.wsc_c00292{word-spacing:-3.520000pt;}
.wsf_c00292{word-spacing:-2.880000pt;}
.ws9_c00292{word-spacing:-1.728000pt;}
.ws5_c00292{word-spacing:-1.472000pt;}
.wsb_c00292{word-spacing:-1.408000pt;}
.ws3_c00292{word-spacing:-0.746667pt;}
.wse_c00292{word-spacing:-0.640000pt;}
.ws7_c00292{word-spacing:-0.128000pt;}
.ws2_c00292{word-spacing:0.000000pt;}
.wsd_c00292{word-spacing:0.320000pt;}
.ws8_c00292{word-spacing:2.944000pt;}
.ws4_c00292{word-spacing:3.136000pt;}
.wsa_c00292{word-spacing:5.824000pt;}
.ws6_c00292{word-spacing:10.304000pt;}
.ws11_c00292{word-spacing:12.480000pt;}
.ws12_c00292{word-spacing:13.504000pt;}
.ws10_c00292{word-spacing:18.048000pt;}
.ws13_c00292{word-spacing:18.944000pt;}
._0_c00292{margin-left:-426.965867pt;}
._4_c00292{margin-left:-7.680000pt;}
._2_c00292{margin-left:-5.760000pt;}
._1_c00292{margin-left:-3.733333pt;}
._5_c00292{margin-left:-2.240000pt;}
._3_c00292{margin-left:-1.280000pt;}
._6_c00292{width:0.915200pt;}
._7_c00292{width:2.227200pt;}
._8_c00292{width:3.539200pt;}
._9_c00292{width:7.731200pt;}
.fs1_c00292{font-size:37.333333pt;}
.fs0_c00292{font-size:53.333333pt;}
.fs3_c00292{font-size:64.000000pt;}
.fs2_c00292{font-size:74.666667pt;}
.y0_c00292{bottom:0.000000pt;}
.y1_c00292{bottom:36.666667pt;}
.y12_c00292{bottom:307.842400pt;}
.y11_c00292{bottom:334.514400pt;}
.y10_c00292{bottom:361.186400pt;}
.yf_c00292{bottom:414.514400pt;}
.ye_c00292{bottom:441.186400pt;}
.yd_c00292{bottom:467.858400pt;}
.yc_c00292{bottom:521.186400pt;}
.yb_c00292{bottom:574.519733pt;}
.ya_c00292{bottom:654.482400pt;}
.y9_c00292{bottom:681.154400pt;}
.y8_c00292{bottom:707.826400pt;}
.y7_c00292{bottom:734.498400pt;}
.y6_c00292{bottom:761.170400pt;}
.y5_c00292{bottom:787.842400pt;}
.y4_c00292{bottom:814.514400pt;}
.y3_c00292{bottom:841.186400pt;}
.y2_c00292{bottom:894.519733pt;}
.h2_c00292{height:48.000000pt;}
.h4_c00292{height:57.600000pt;}
.h3_c00292{height:69.813333pt;}
.h0_c00292{height:1122.520000pt;}
.h1_c00292{height:1122.666667pt;}
.w0_c00292{width:793.701333pt;}
.w1_c00292{width:794.000000pt;}
.x0_c00292{left:0.000000pt;}
.x2_c00292{left:80.000000pt;}
.x4_c00292{left:93.333333pt;}
.x3_c00292{left:94.666667pt;}
.x5_c00292{left:106.661333pt;}
.x1_c00292{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00293;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00293;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00293;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls2_c00293{letter-spacing:0.000000px;}
.ls0_c00293{letter-spacing:0.864000px;}
.ls1_c00293{letter-spacing:1.200000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00293{word-spacing:-13.104000px;}
.ws0_c00293{word-spacing:-10.200000px;}
.ws3_c00293{word-spacing:-1.440000px;}
.ws4_c00293{word-spacing:-1.200000px;}
.ws2_c00293{word-spacing:0.000000px;}
._0_c00293{margin-left:-480.336600px;}
._6_c00293{margin-left:-10.800000px;}
._7_c00293{margin-left:-9.600000px;}
._4_c00293{margin-left:-6.480000px;}
._1_c00293{margin-left:-4.200000px;}
._5_c00293{margin-left:-2.880000px;}
._2_c00293{margin-left:-1.440000px;}
._3_c00293{width:1.440000px;}
.fc3_c00293{color:rgb(255,255,255);}
.fc2_c00293{color:rgb(233,83,14);}
.fc1_c00293{color:rgb(232,86,17);}
.fc0_c00293{color:rgb(60,60,59);}
.fs1_c00293{font-size:42.000000px;}
.fs0_c00293{font-size:60.000000px;}
.fs3_c00293{font-size:72.000000px;}
.fs4_c00293{font-size:120.000000px;}
.fs2_c00293{font-size:360.000000px;}
.y0_c00293{bottom:0.000000px;}
.y1_c00293{bottom:41.250000px;}
.y10_c00293{bottom:364.268700px;}
.yf_c00293{bottom:385.274700px;}
.ye_c00293{bottom:406.280700px;}
.yd_c00293{bottom:463.286700px;}
.yc_c00293{bottom:484.292700px;}
.yb_c00293{bottom:505.298700px;}
.ya_c00293{bottom:526.304700px;}
.y9_c00293{bottom:574.310700px;}
.y8_c00293{bottom:595.316700px;}
.y7_c00293{bottom:616.322700px;}
.y6_c00293{bottom:664.328700px;}
.y5_c00293{bottom:685.334700px;}
.y4_c00293{bottom:706.340700px;}
.y3_c00293{bottom:752.834700px;}
.y15_c00293{bottom:886.334700px;}
.y14_c00293{bottom:916.334700px;}
.y13_c00293{bottom:946.334700px;}
.y12_c00293{bottom:976.334700px;}
.y11_c00293{bottom:1006.334700px;}
.y2_c00293{bottom:1093.526700px;}
.h2_c00293{height:54.000000px;}
.h5_c00293{height:64.800000px;}
.h4_c00293{height:66.456000px;}
.h6_c00293{height:112.200000px;}
.h3_c00293{height:324.000000px;}
.h0_c00293{height:1262.835000px;}
.h1_c00293{height:1263.000000px;}
.w0_c00293{width:892.914000px;}
.w1_c00293{width:893.250000px;}
.x0_c00293{left:0.000000px;}
.x2_c00293{left:81.290250px;}
.x3_c00293{left:82.393650px;}
.x5_c00293{left:112.287450px;}
.x4_c00293{left:127.393650px;}
.x1_c00293{left:785.813700px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls2_c00293{letter-spacing:0.000000pt;}
.ls0_c00293{letter-spacing:0.768000pt;}
.ls1_c00293{letter-spacing:1.066667pt;}
.ws1_c00293{word-spacing:-11.648000pt;}
.ws0_c00293{word-spacing:-9.066667pt;}
.ws3_c00293{word-spacing:-1.280000pt;}
.ws4_c00293{word-spacing:-1.066667pt;}
.ws2_c00293{word-spacing:0.000000pt;}
._0_c00293{margin-left:-426.965867pt;}
._6_c00293{margin-left:-9.600000pt;}
._7_c00293{margin-left:-8.533333pt;}
._4_c00293{margin-left:-5.760000pt;}
._1_c00293{margin-left:-3.733333pt;}
._5_c00293{margin-left:-2.560000pt;}
._2_c00293{margin-left:-1.280000pt;}
._3_c00293{width:1.280000pt;}
.fs1_c00293{font-size:37.333333pt;}
.fs0_c00293{font-size:53.333333pt;}
.fs3_c00293{font-size:64.000000pt;}
.fs4_c00293{font-size:106.666667pt;}
.fs2_c00293{font-size:320.000000pt;}
.y0_c00293{bottom:0.000000pt;}
.y1_c00293{bottom:36.666667pt;}
.y10_c00293{bottom:323.794400pt;}
.yf_c00293{bottom:342.466400pt;}
.ye_c00293{bottom:361.138400pt;}
.yd_c00293{bottom:411.810400pt;}
.yc_c00293{bottom:430.482400pt;}
.yb_c00293{bottom:449.154400pt;}
.ya_c00293{bottom:467.826400pt;}
.y9_c00293{bottom:510.498400pt;}
.y8_c00293{bottom:529.170400pt;}
.y7_c00293{bottom:547.842400pt;}
.y6_c00293{bottom:590.514400pt;}
.y5_c00293{bottom:609.186400pt;}
.y4_c00293{bottom:627.858400pt;}
.y3_c00293{bottom:669.186400pt;}
.y15_c00293{bottom:787.853067pt;}
.y14_c00293{bottom:814.519733pt;}
.y13_c00293{bottom:841.186400pt;}
.y12_c00293{bottom:867.853067pt;}
.y11_c00293{bottom:894.519733pt;}
.y2_c00293{bottom:972.023733pt;}
.h2_c00293{height:48.000000pt;}
.h5_c00293{height:57.600000pt;}
.h4_c00293{height:59.072000pt;}
.h6_c00293{height:99.733333pt;}
.h3_c00293{height:288.000000pt;}
.h0_c00293{height:1122.520000pt;}
.h1_c00293{height:1122.666667pt;}
.w0_c00293{width:793.701333pt;}
.w1_c00293{width:794.000000pt;}
.x0_c00293{left:0.000000pt;}
.x2_c00293{left:72.258000pt;}
.x3_c00293{left:73.238800pt;}
.x5_c00293{left:99.811067pt;}
.x4_c00293{left:113.238800pt;}
.x1_c00293{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00294;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00294;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00294;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:1.024000;font-style: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);}
.m1_c00294{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00294{vertical-align:-5.520000px;}
.v0_c00294{vertical-align:0.000000px;}
.v1_c00294{vertical-align:5.976000px;}
.ls9_c00294{letter-spacing:-0.720000px;}
.ls8_c00294{letter-spacing:-0.540000px;}
.ls7_c00294{letter-spacing:0.000000px;}
.ls2_c00294{letter-spacing:0.420000px;}
.ls4_c00294{letter-spacing:0.648000px;}
.ls1_c00294{letter-spacing:0.658800px;}
.ls0_c00294{letter-spacing:0.720000px;}
.ls3_c00294{letter-spacing:0.731400px;}
.ls6_c00294{letter-spacing:1.500000px;}
.ls5_c00294{letter-spacing:1.650000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00294{word-spacing:-21.060000px;}
.ws3_c00294{word-spacing:-11.520000px;}
.ws0_c00294{word-spacing:-10.200000px;}
.ws2_c00294{word-spacing:-7.560000px;}
.wsa_c00294{word-spacing:-5.400000px;}
.wse_c00294{word-spacing:-4.032000px;}
.ws20_c00294{word-spacing:-3.960000px;}
.ws1f_c00294{word-spacing:-3.096000px;}
.ws6_c00294{word-spacing:-2.160000px;}
.ws1e_c00294{word-spacing:-1.512000px;}
.ws22_c00294{word-spacing:-1.500000px;}
.ws9_c00294{word-spacing:-1.224000px;}
.ws17_c00294{word-spacing:-1.152000px;}
.ws13_c00294{word-spacing:-0.720000px;}
.ws1b_c00294{word-spacing:-0.420000px;}
.ws19_c00294{word-spacing:-0.288000px;}
.ws4_c00294{word-spacing:0.000000px;}
.ws10_c00294{word-spacing:0.144000px;}
.ws16_c00294{word-spacing:1.296000px;}
.ws5_c00294{word-spacing:2.016000px;}
.ws1c_c00294{word-spacing:2.880000px;}
.ws8_c00294{word-spacing:3.384000px;}
.ws11_c00294{word-spacing:3.600000px;}
.ws21_c00294{word-spacing:4.032000px;}
.ws15_c00294{word-spacing:4.536000px;}
.ws18_c00294{word-spacing:6.624000px;}
.wsb_c00294{word-spacing:7.272000px;}
.wsf_c00294{word-spacing:7.416000px;}
.wsc_c00294{word-spacing:7.992000px;}
.ws1d_c00294{word-spacing:8.064000px;}
.ws12_c00294{word-spacing:8.496000px;}
.ws7_c00294{word-spacing:9.936000px;}
.wsd_c00294{word-spacing:14.472000px;}
.ws14_c00294{word-spacing:16.776000px;}
.ws1a_c00294{word-spacing:18.936000px;}
._0_c00294{margin-left:-480.336000px;}
._5_c00294{margin-left:-5.392800px;}
._1_c00294{margin-left:-4.200000px;}
._a_c00294{margin-left:-2.808000px;}
._2_c00294{margin-left:-1.800000px;}
._6_c00294{width:1.065600px;}
._4_c00294{width:4.226400px;}
._3_c00294{width:5.644800px;}
._9_c00294{width:8.784000px;}
._8_c00294{width:11.860200px;}
._7_c00294{width:19.654800px;}
.fc3_c00294{color:rgb(32,32,32);}
.fc2_c00294{color:rgb(233,83,14);}
.fc1_c00294{color:rgb(232,86,17);}
.fc4_c00294{color:rgb(157,157,156);}
.fc0_c00294{color:rgb(60,60,59);}
.fs1_c00294{font-size:42.000000px;}
.fs0_c00294{font-size:60.000000px;}
.fs4_c00294{font-size:66.000000px;}
.fs3_c00294{font-size:72.000000px;}
.fs2_c00294{font-size:108.000000px;}
.y0_c00294{bottom:0.000000px;}
.y1_c00294{bottom:41.250000px;}
.y1f_c00294{bottom:76.298700px;}
.y1e_c00294{bottom:106.304700px;}
.y1d_c00294{bottom:136.310700px;}
.y1c_c00294{bottom:166.316700px;}
.y1b_c00294{bottom:196.322700px;}
.y1a_c00294{bottom:226.328700px;}
.y19_c00294{bottom:257.828700px;}
.y18_c00294{bottom:287.714700px;}
.y17_c00294{bottom:316.226700px;}
.y16_c00294{bottom:346.232700px;}
.y15_c00294{bottom:376.238700px;}
.y14_c00294{bottom:406.244700px;}
.y13_c00294{bottom:436.250700px;}
.y12_c00294{bottom:466.256700px;}
.y11_c00294{bottom:526.250700px;}
.y10_c00294{bottom:556.256700px;}
.yf_c00294{bottom:586.262700px;}
.ye_c00294{bottom:616.268700px;}
.yd_c00294{bottom:646.274700px;}
.yc_c00294{bottom:676.280700px;}
.yb_c00294{bottom:706.286700px;}
.ya_c00294{bottom:736.292700px;}
.y27_c00294{bottom:736.334700px;}
.y9_c00294{bottom:766.298700px;}
.y26_c00294{bottom:766.334700px;}
.y8_c00294{bottom:796.304700px;}
.y25_c00294{bottom:796.334700px;}
.y7_c00294{bottom:826.310700px;}
.y24_c00294{bottom:826.334700px;}
.y6_c00294{bottom:856.316700px;}
.y23_c00294{bottom:856.334700px;}
.y5_c00294{bottom:886.322700px;}
.y22_c00294{bottom:886.334700px;}
.y4_c00294{bottom:916.328700px;}
.y21_c00294{bottom:916.334700px;}
.y3_c00294{bottom:946.334700px;}
.y20_c00294{bottom:947.477400px;}
.y2_c00294{bottom:1006.334700px;}
.h7_c00294{height:50.292000px;}
.h2_c00294{height:54.000000px;}
.h4_c00294{height:64.800000px;}
.h6_c00294{height:65.280000px;}
.h5_c00294{height:70.776000px;}
.h3_c00294{height:100.980000px;}
.h0_c00294{height:1262.835000px;}
.h1_c00294{height:1263.000000px;}
.w0_c00294{width:892.914000px;}
.w1_c00294{width:893.250000px;}
.x0_c00294{left:0.000000px;}
.x2_c00294{left:82.500000px;}
.x3_c00294{left:106.500000px;}
.x4_c00294{left:675.611100px;}
.x1_c00294{left:786.863550px;}
@media print{
.v2_c00294{vertical-align:-4.906667pt;}
.v0_c00294{vertical-align:0.000000pt;}
.v1_c00294{vertical-align:5.312000pt;}
.ls9_c00294{letter-spacing:-0.640000pt;}
.ls8_c00294{letter-spacing:-0.480000pt;}
.ls7_c00294{letter-spacing:0.000000pt;}
.ls2_c00294{letter-spacing:0.373333pt;}
.ls4_c00294{letter-spacing:0.576000pt;}
.ls1_c00294{letter-spacing:0.585600pt;}
.ls0_c00294{letter-spacing:0.640000pt;}
.ls3_c00294{letter-spacing:0.650133pt;}
.ls6_c00294{letter-spacing:1.333333pt;}
.ls5_c00294{letter-spacing:1.466667pt;}
.ws1_c00294{word-spacing:-18.720000pt;}
.ws3_c00294{word-spacing:-10.240000pt;}
.ws0_c00294{word-spacing:-9.066667pt;}
.ws2_c00294{word-spacing:-6.720000pt;}
.wsa_c00294{word-spacing:-4.800000pt;}
.wse_c00294{word-spacing:-3.584000pt;}
.ws20_c00294{word-spacing:-3.520000pt;}
.ws1f_c00294{word-spacing:-2.752000pt;}
.ws6_c00294{word-spacing:-1.920000pt;}
.ws1e_c00294{word-spacing:-1.344000pt;}
.ws22_c00294{word-spacing:-1.333333pt;}
.ws9_c00294{word-spacing:-1.088000pt;}
.ws17_c00294{word-spacing:-1.024000pt;}
.ws13_c00294{word-spacing:-0.640000pt;}
.ws1b_c00294{word-spacing:-0.373333pt;}
.ws19_c00294{word-spacing:-0.256000pt;}
.ws4_c00294{word-spacing:0.000000pt;}
.ws10_c00294{word-spacing:0.128000pt;}
.ws16_c00294{word-spacing:1.152000pt;}
.ws5_c00294{word-spacing:1.792000pt;}
.ws1c_c00294{word-spacing:2.560000pt;}
.ws8_c00294{word-spacing:3.008000pt;}
.ws11_c00294{word-spacing:3.200000pt;}
.ws21_c00294{word-spacing:3.584000pt;}
.ws15_c00294{word-spacing:4.032000pt;}
.ws18_c00294{word-spacing:5.888000pt;}
.wsb_c00294{word-spacing:6.464000pt;}
.wsf_c00294{word-spacing:6.592000pt;}
.wsc_c00294{word-spacing:7.104000pt;}
.ws1d_c00294{word-spacing:7.168000pt;}
.ws12_c00294{word-spacing:7.552000pt;}
.ws7_c00294{word-spacing:8.832000pt;}
.wsd_c00294{word-spacing:12.864000pt;}
.ws14_c00294{word-spacing:14.912000pt;}
.ws1a_c00294{word-spacing:16.832000pt;}
._0_c00294{margin-left:-426.965333pt;}
._5_c00294{margin-left:-4.793600pt;}
._1_c00294{margin-left:-3.733333pt;}
._a_c00294{margin-left:-2.496000pt;}
._2_c00294{margin-left:-1.600000pt;}
._6_c00294{width:0.947200pt;}
._4_c00294{width:3.756800pt;}
._3_c00294{width:5.017600pt;}
._9_c00294{width:7.808000pt;}
._8_c00294{width:10.542400pt;}
._7_c00294{width:17.470933pt;}
.fs1_c00294{font-size:37.333333pt;}
.fs0_c00294{font-size:53.333333pt;}
.fs4_c00294{font-size:58.666667pt;}
.fs3_c00294{font-size:64.000000pt;}
.fs2_c00294{font-size:96.000000pt;}
.y0_c00294{bottom:0.000000pt;}
.y1_c00294{bottom:36.666667pt;}
.y1f_c00294{bottom:67.821067pt;}
.y1e_c00294{bottom:94.493067pt;}
.y1d_c00294{bottom:121.165067pt;}
.y1c_c00294{bottom:147.837067pt;}
.y1b_c00294{bottom:174.509067pt;}
.y1a_c00294{bottom:201.181067pt;}
.y19_c00294{bottom:229.181067pt;}
.y18_c00294{bottom:255.746400pt;}
.y17_c00294{bottom:281.090400pt;}
.y16_c00294{bottom:307.762400pt;}
.y15_c00294{bottom:334.434400pt;}
.y14_c00294{bottom:361.106400pt;}
.y13_c00294{bottom:387.778400pt;}
.y12_c00294{bottom:414.450400pt;}
.y11_c00294{bottom:467.778400pt;}
.y10_c00294{bottom:494.450400pt;}
.yf_c00294{bottom:521.122400pt;}
.ye_c00294{bottom:547.794400pt;}
.yd_c00294{bottom:574.466400pt;}
.yc_c00294{bottom:601.138400pt;}
.yb_c00294{bottom:627.810400pt;}
.ya_c00294{bottom:654.482400pt;}
.y27_c00294{bottom:654.519733pt;}
.y9_c00294{bottom:681.154400pt;}
.y26_c00294{bottom:681.186400pt;}
.y8_c00294{bottom:707.826400pt;}
.y25_c00294{bottom:707.853067pt;}
.y7_c00294{bottom:734.498400pt;}
.y24_c00294{bottom:734.519733pt;}
.y6_c00294{bottom:761.170400pt;}
.y23_c00294{bottom:761.186400pt;}
.y5_c00294{bottom:787.842400pt;}
.y22_c00294{bottom:787.853067pt;}
.y4_c00294{bottom:814.514400pt;}
.y21_c00294{bottom:814.519733pt;}
.y3_c00294{bottom:841.186400pt;}
.y20_c00294{bottom:842.202133pt;}
.y2_c00294{bottom:894.519733pt;}
.h7_c00294{height:44.704000pt;}
.h2_c00294{height:48.000000pt;}
.h4_c00294{height:57.600000pt;}
.h6_c00294{height:58.026667pt;}
.h5_c00294{height:62.912000pt;}
.h3_c00294{height:89.760000pt;}
.h0_c00294{height:1122.520000pt;}
.h1_c00294{height:1122.666667pt;}
.w0_c00294{width:793.701333pt;}
.w1_c00294{width:794.000000pt;}
.x0_c00294{left:0.000000pt;}
.x2_c00294{left:73.333333pt;}
.x3_c00294{left:94.666667pt;}
.x4_c00294{left:600.543200pt;}
.x1_c00294{left:699.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd1eb4de56bb4528e00a09cf.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00295;src:url('chunks/assets/font_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00295;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00295;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls7_c00295{letter-spacing:-0.324000px;}
.ls6_c00295{letter-spacing:0.000000px;}
.ls2_c00295{letter-spacing:0.655200px;}
.ls3_c00295{letter-spacing:0.684000px;}
.ls0_c00295{letter-spacing:0.720000px;}
.ls1_c00295{letter-spacing:0.763200px;}
.ls5_c00295{letter-spacing:1.500000px;}
.ls4_c00295{letter-spacing:1.650000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00295{word-spacing:-21.276000px;}
.ws2_c00295{word-spacing:-14.850000px;}
.ws0_c00295{word-spacing:-10.200000px;}
.ws20_c00295{word-spacing:-6.552000px;}
.ws10_c00295{word-spacing:-4.248000px;}
.ws11_c00295{word-spacing:-3.960000px;}
.ws7_c00295{word-spacing:-3.816000px;}
.wsf_c00295{word-spacing:-3.672000px;}
.ws1d_c00295{word-spacing:-3.312000px;}
.ws1c_c00295{word-spacing:-2.952000px;}
.ws22_c00295{word-spacing:-1.500000px;}
.wse_c00295{word-spacing:-1.224000px;}
.ws1e_c00295{word-spacing:-1.008000px;}
.ws1b_c00295{word-spacing:-0.864000px;}
.ws17_c00295{word-spacing:-0.720000px;}
.ws21_c00295{word-spacing:-0.504000px;}
.ws3_c00295{word-spacing:0.000000px;}
.ws4_c00295{word-spacing:1.224000px;}
.wsd_c00295{word-spacing:2.520000px;}
.ws12_c00295{word-spacing:2.664000px;}
.ws15_c00295{word-spacing:3.672000px;}
.ws19_c00295{word-spacing:4.176000px;}
.ws1f_c00295{word-spacing:5.328000px;}
.ws14_c00295{word-spacing:6.264000px;}
.ws8_c00295{word-spacing:6.768000px;}
.ws1a_c00295{word-spacing:8.496000px;}
.wsc_c00295{word-spacing:8.712000px;}
.wsb_c00295{word-spacing:9.576000px;}
.ws13_c00295{word-spacing:12.024000px;}
.ws9_c00295{word-spacing:12.456000px;}
.ws6_c00295{word-spacing:13.392000px;}
.wsa_c00295{word-spacing:17.352000px;}
.ws18_c00295{word-spacing:17.424000px;}
.ws5_c00295{word-spacing:22.320000px;}
.ws16_c00295{word-spacing:22.392000px;}
._0_c00295{margin-left:-480.336000px;}
._5_c00295{margin-left:-6.832800px;}
._6_c00295{margin-left:-5.760000px;}
._1_c00295{margin-left:-4.200000px;}
._3_c00295{margin-left:-2.340000px;}
._2_c00295{margin-left:-1.134000px;}
._4_c00295{width:1.900800px;}
._7_c00295{width:4.334400px;}
._9_c00295{width:5.392800px;}
._a_c00295{width:9.864000px;}
._8_c00295{width:18.676800px;}
.fc3_c00295{color:rgb(32,32,32);}
.fc2_c00295{color:rgb(233,83,14);}
.fc1_c00295{color:rgb(232,86,17);}
.fc4_c00295{color:rgb(157,157,156);}
.fc0_c00295{color:rgb(60,60,59);}
.fs1_c00295{font-size:42.000000px;}
.fs0_c00295{font-size:60.000000px;}
.fs4_c00295{font-size:66.000000px;}
.fs3_c00295{font-size:72.000000px;}
.fs2_c00295{font-size:108.000000px;}
.y0_c00295{bottom:0.000000px;}
.y1_c00295{bottom:41.250000px;}
.y1e_c00295{bottom:76.196700px;}
.y1d_c00295{bottom:106.202700px;}
.y1c_c00295{bottom:136.208700px;}
.y1b_c00295{bottom:166.214700px;}
.y1a_c00295{bottom:196.220700px;}
.y19_c00295{bottom:256.214700px;}
.y18_c00295{bottom:286.220700px;}
.y17_c00295{bottom:316.226700px;}
.y16_c00295{bottom:346.232700px;}
.y15_c00295{bottom:376.238700px;}
.y14_c00295{bottom:406.244700px;}
.y13_c00295{bottom:436.250700px;}
.y12_c00295{bottom:466.256700px;}
.y11_c00295{bottom:496.262700px;}
.y10_c00295{bottom:556.256700px;}
.yf_c00295{bottom:586.262700px;}
.ye_c00295{bottom:616.268700px;}
.yd_c00295{bottom:646.274700px;}
.yc_c00295{bottom:676.280700px;}
.yb_c00295{bottom:706.286700px;}
.ya_c00295{bottom:736.292700px;}
.y26_c00295{bottom:736.334700px;}
.y9_c00295{bottom:766.298700px;}
.y25_c00295{bottom:766.334700px;}
.y8_c00295{bottom:796.304700px;}
.y24_c00295{bottom:796.334700px;}
.y7_c00295{bottom:826.310700px;}
.y23_c00295{bottom:826.334700px;}
.y6_c00295{bottom:856.316700px;}
.y22_c00295{bottom:856.334700px;}
.y5_c00295{bottom:886.322700px;}
.y21_c00295{bottom:886.334700px;}
.y4_c00295{bottom:916.328700px;}
.y20_c00295{bottom:916.334700px;}
.y3_c00295{bottom:946.334700px;}
.y1f_c00295{bottom:946.376100px;}
.y2_c00295{bottom:1006.334700px;}
.h5_c00295{height:50.292000px;}
.h2_c00295{height:54.000000px;}
.h4_c00295{height:64.800000px;}
.h3_c00295{height:100.980000px;}
.h0_c00295{height:1262.835000px;}
.h1_c00295{height:1263.000000px;}
.w0_c00295{width:892.914000px;}
.w1_c00295{width:893.250000px;}
.x0_c00295{left:0.000000px;}
.x2_c00295{left:82.500000px;}
.x3_c00295{left:106.500000px;}
.x4_c00295{left:675.236100px;}
.x1_c00295{left:785.738550px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls7_c00295{letter-spacing:-0.288000pt;}
.ls6_c00295{letter-spacing:0.000000pt;}
.ls2_c00295{letter-spacing:0.582400pt;}
.ls3_c00295{letter-spacing:0.608000pt;}
.ls0_c00295{letter-spacing:0.640000pt;}
.ls1_c00295{letter-spacing:0.678400pt;}
.ls5_c00295{letter-spacing:1.333333pt;}
.ls4_c00295{letter-spacing:1.466667pt;}
.ws1_c00295{word-spacing:-18.912000pt;}
.ws2_c00295{word-spacing:-13.200000pt;}
.ws0_c00295{word-spacing:-9.066667pt;}
.ws20_c00295{word-spacing:-5.824000pt;}
.ws10_c00295{word-spacing:-3.776000pt;}
.ws11_c00295{word-spacing:-3.520000pt;}
.ws7_c00295{word-spacing:-3.392000pt;}
.wsf_c00295{word-spacing:-3.264000pt;}
.ws1d_c00295{word-spacing:-2.944000pt;}
.ws1c_c00295{word-spacing:-2.624000pt;}
.ws22_c00295{word-spacing:-1.333333pt;}
.wse_c00295{word-spacing:-1.088000pt;}
.ws1e_c00295{word-spacing:-0.896000pt;}
.ws1b_c00295{word-spacing:-0.768000pt;}
.ws17_c00295{word-spacing:-0.640000pt;}
.ws21_c00295{word-spacing:-0.448000pt;}
.ws3_c00295{word-spacing:0.000000pt;}
.ws4_c00295{word-spacing:1.088000pt;}
.wsd_c00295{word-spacing:2.240000pt;}
.ws12_c00295{word-spacing:2.368000pt;}
.ws15_c00295{word-spacing:3.264000pt;}
.ws19_c00295{word-spacing:3.712000pt;}
.ws1f_c00295{word-spacing:4.736000pt;}
.ws14_c00295{word-spacing:5.568000pt;}
.ws8_c00295{word-spacing:6.016000pt;}
.ws1a_c00295{word-spacing:7.552000pt;}
.wsc_c00295{word-spacing:7.744000pt;}
.wsb_c00295{word-spacing:8.512000pt;}
.ws13_c00295{word-spacing:10.688000pt;}
.ws9_c00295{word-spacing:11.072000pt;}
.ws6_c00295{word-spacing:11.904000pt;}
.wsa_c00295{word-spacing:15.424000pt;}
.ws18_c00295{word-spacing:15.488000pt;}
.ws5_c00295{word-spacing:19.840000pt;}
.ws16_c00295{word-spacing:19.904000pt;}
._0_c00295{margin-left:-426.965333pt;}
._5_c00295{margin-left:-6.073600pt;}
._6_c00295{margin-left:-5.120000pt;}
._1_c00295{margin-left:-3.733333pt;}
._3_c00295{margin-left:-2.080000pt;}
._2_c00295{margin-left:-1.008000pt;}
._4_c00295{width:1.689600pt;}
._7_c00295{width:3.852800pt;}
._9_c00295{width:4.793600pt;}
._a_c00295{width:8.768000pt;}
._8_c00295{width:16.601600pt;}
.fs1_c00295{font-size:37.333333pt;}
.fs0_c00295{font-size:53.333333pt;}
.fs4_c00295{font-size:58.666667pt;}
.fs3_c00295{font-size:64.000000pt;}
.fs2_c00295{font-size:96.000000pt;}
.y0_c00295{bottom:0.000000pt;}
.y1_c00295{bottom:36.666667pt;}
.y1e_c00295{bottom:67.730400pt;}
.y1d_c00295{bottom:94.402400pt;}
.y1c_c00295{bottom:121.074400pt;}
.y1b_c00295{bottom:147.746400pt;}
.y1a_c00295{bottom:174.418400pt;}
.y19_c00295{bottom:227.746400pt;}
.y18_c00295{bottom:254.418400pt;}
.y17_c00295{bottom:281.090400pt;}
.y16_c00295{bottom:307.762400pt;}
.y15_c00295{bottom:334.434400pt;}
.y14_c00295{bottom:361.106400pt;}
.y13_c00295{bottom:387.778400pt;}
.y12_c00295{bottom:414.450400pt;}
.y11_c00295{bottom:441.122400pt;}
.y10_c00295{bottom:494.450400pt;}
.yf_c00295{bottom:521.122400pt;}
.ye_c00295{bottom:547.794400pt;}
.yd_c00295{bottom:574.466400pt;}
.yc_c00295{bottom:601.138400pt;}
.yb_c00295{bottom:627.810400pt;}
.ya_c00295{bottom:654.482400pt;}
.y26_c00295{bottom:654.519733pt;}
.y9_c00295{bottom:681.154400pt;}
.y25_c00295{bottom:681.186400pt;}
.y8_c00295{bottom:707.826400pt;}
.y24_c00295{bottom:707.853067pt;}
.y7_c00295{bottom:734.498400pt;}
.y23_c00295{bottom:734.519733pt;}
.y6_c00295{bottom:761.170400pt;}
.y22_c00295{bottom:761.186400pt;}
.y5_c00295{bottom:787.842400pt;}
.y21_c00295{bottom:787.853067pt;}
.y4_c00295{bottom:814.514400pt;}
.y20_c00295{bottom:814.519733pt;}
.y3_c00295{bottom:841.186400pt;}
.y1f_c00295{bottom:841.223200pt;}
.y2_c00295{bottom:894.519733pt;}
.h5_c00295{height:44.704000pt;}
.h2_c00295{height:48.000000pt;}
.h4_c00295{height:57.600000pt;}
.h3_c00295{height:89.760000pt;}
.h0_c00295{height:1122.520000pt;}
.h1_c00295{height:1122.666667pt;}
.w0_c00295{width:793.701333pt;}
.w1_c00295{width:794.000000pt;}
.x0_c00295{left:0.000000pt;}
.x2_c00295{left:73.333333pt;}
.x3_c00295{left:94.666667pt;}
.x4_c00295{left:600.209867pt;}
.x1_c00295{left:698.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00296;src:url('chunks/assets/font_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.155000;font-style: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);}
.m1_c00296{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls2_c00296{letter-spacing:0.000000px;}
.ls0_c00296{letter-spacing:0.864000px;}
.ls1_c00296{letter-spacing:1.200000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00296{word-spacing:-13.104000px;}
.ws0_c00296{word-spacing:-10.200000px;}
.ws3_c00296{word-spacing:-1.440000px;}
.ws2_c00296{word-spacing:0.000000px;}
._0_c00296{margin-left:-480.336000px;}
._6_c00296{margin-left:-15.240000px;}
._5_c00296{margin-left:-9.000000px;}
._4_c00296{margin-left:-6.480000px;}
._1_c00296{margin-left:-4.200000px;}
._2_c00296{margin-left:-2.160000px;}
._3_c00296{width:2.160000px;}
.fc3_c00296{color:rgb(255,255,255);}
.fc2_c00296{color:rgb(233,83,14);}
.fc1_c00296{color:rgb(232,86,17);}
.fc0_c00296{color:rgb(60,60,59);}
.fs1_c00296{font-size:42.000000px;}
.fs0_c00296{font-size:60.000000px;}
.fs3_c00296{font-size:72.000000px;}
.fs4_c00296{font-size:120.000000px;}
.fs2_c00296{font-size:360.000000px;}
.y0_c00296{bottom:0.000000px;}
.y1_c00296{bottom:41.250000px;}
.yb_c00296{bottom:523.298700px;}
.ya_c00296{bottom:544.304700px;}
.y9_c00296{bottom:565.310700px;}
.y8_c00296{bottom:586.316700px;}
.y7_c00296{bottom:643.322700px;}
.y6_c00296{bottom:664.328700px;}
.y5_c00296{bottom:685.334700px;}
.y4_c00296{bottom:706.340700px;}
.y3_c00296{bottom:752.834700px;}
.yf_c00296{bottom:916.334700px;}
.ye_c00296{bottom:946.334700px;}
.yd_c00296{bottom:976.334700px;}
.yc_c00296{bottom:1006.334700px;}
.y2_c00296{bottom:1093.526700px;}
.h2_c00296{height:54.000000px;}
.h5_c00296{height:64.800000px;}
.h4_c00296{height:66.456000px;}
.h6_c00296{height:112.200000px;}
.h3_c00296{height:324.000000px;}
.h0_c00296{height:1262.835000px;}
.h1_c00296{height:1263.000000px;}
.w0_c00296{width:892.914000px;}
.w1_c00296{width:893.250000px;}
.x0_c00296{left:0.000000px;}
.x2_c00296{left:81.290250px;}
.x3_c00296{left:82.393650px;}
.x5_c00296{left:112.287450px;}
.x4_c00296{left:127.393650px;}
.x1_c00296{left:787.838550px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls2_c00296{letter-spacing:0.000000pt;}
.ls0_c00296{letter-spacing:0.768000pt;}
.ls1_c00296{letter-spacing:1.066667pt;}
.ws1_c00296{word-spacing:-11.648000pt;}
.ws0_c00296{word-spacing:-9.066667pt;}
.ws3_c00296{word-spacing:-1.280000pt;}
.ws2_c00296{word-spacing:0.000000pt;}
._0_c00296{margin-left:-426.965333pt;}
._6_c00296{margin-left:-13.546667pt;}
._5_c00296{margin-left:-8.000000pt;}
._4_c00296{margin-left:-5.760000pt;}
._1_c00296{margin-left:-3.733333pt;}
._2_c00296{margin-left:-1.920000pt;}
._3_c00296{width:1.920000pt;}
.fs1_c00296{font-size:37.333333pt;}
.fs0_c00296{font-size:53.333333pt;}
.fs3_c00296{font-size:64.000000pt;}
.fs4_c00296{font-size:106.666667pt;}
.fs2_c00296{font-size:320.000000pt;}
.y0_c00296{bottom:0.000000pt;}
.y1_c00296{bottom:36.666667pt;}
.yb_c00296{bottom:465.154400pt;}
.ya_c00296{bottom:483.826400pt;}
.y9_c00296{bottom:502.498400pt;}
.y8_c00296{bottom:521.170400pt;}
.y7_c00296{bottom:571.842400pt;}
.y6_c00296{bottom:590.514400pt;}
.y5_c00296{bottom:609.186400pt;}
.y4_c00296{bottom:627.858400pt;}
.y3_c00296{bottom:669.186400pt;}
.yf_c00296{bottom:814.519733pt;}
.ye_c00296{bottom:841.186400pt;}
.yd_c00296{bottom:867.853067pt;}
.yc_c00296{bottom:894.519733pt;}
.y2_c00296{bottom:972.023733pt;}
.h2_c00296{height:48.000000pt;}
.h5_c00296{height:57.600000pt;}
.h4_c00296{height:59.072000pt;}
.h6_c00296{height:99.733333pt;}
.h3_c00296{height:288.000000pt;}
.h0_c00296{height:1122.520000pt;}
.h1_c00296{height:1122.666667pt;}
.w0_c00296{width:793.701333pt;}
.w1_c00296{width:794.000000pt;}
.x0_c00296{left:0.000000pt;}
.x2_c00296{left:72.258000pt;}
.x3_c00296{left:73.238800pt;}
.x5_c00296{left:99.811067pt;}
.x4_c00296{left:113.238800pt;}
.x1_c00296{left:700.300933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00297;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00297;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:1.161000;font-style: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);}
.m1_c00297{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls5_c00297{letter-spacing:-0.540000px;}
.ls4_c00297{letter-spacing:0.000000px;}
.ls0_c00297{letter-spacing:0.720000px;}
.ls1_c00297{letter-spacing:0.840000px;}
.ls3_c00297{letter-spacing:1.500000px;}
.ls2_c00297{letter-spacing:1.650000px;}
.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:-21.060000px;}
.ws2_c00297{word-spacing:-17.640000px;}
.ws0_c00297{word-spacing:-10.200000px;}
.wse_c00297{word-spacing:-1.500000px;}
.wsb_c00297{word-spacing:-1.008000px;}
.ws4_c00297{word-spacing:-0.840000px;}
.ws3_c00297{word-spacing:0.000000px;}
.ws5_c00297{word-spacing:0.288000px;}
.wsa_c00297{word-spacing:3.024000px;}
.wsc_c00297{word-spacing:3.600000px;}
.ws8_c00297{word-spacing:6.768000px;}
.ws9_c00297{word-spacing:7.344000px;}
.ws7_c00297{word-spacing:7.416000px;}
.ws6_c00297{word-spacing:10.512000px;}
.wsd_c00297{word-spacing:13.968000px;}
._0_c00297{margin-left:-480.336600px;}
._1_c00297{margin-left:-4.200000px;}
._2_c00297{margin-left:-1.440000px;}
.fc3_c00297{color:rgb(32,32,32);}
.fc2_c00297{color:rgb(233,83,14);}
.fc1_c00297{color:rgb(232,86,17);}
.fc4_c00297{color:rgb(157,157,156);}
.fc0_c00297{color:rgb(60,60,59);}
.fs1_c00297{font-size:42.000000px;}
.fs0_c00297{font-size:60.000000px;}
.fs5_c00297{font-size:66.000000px;}
.fs4_c00297{font-size:72.000000px;}
.fs3_c00297{font-size:84.000000px;}
.fs2_c00297{font-size:108.000000px;}
.y0_c00297{bottom:0.000000px;}
.y1_c00297{bottom:41.250000px;}
.yf_c00297{bottom:436.328700px;}
.ye_c00297{bottom:466.334700px;}
.yd_c00297{bottom:526.334700px;}
.yc_c00297{bottom:616.286700px;}
.yb_c00297{bottom:646.292700px;}
.y17_c00297{bottom:646.334700px;}
.ya_c00297{bottom:676.298700px;}
.y16_c00297{bottom:676.334700px;}
.y9_c00297{bottom:706.304700px;}
.y15_c00297{bottom:706.334700px;}
.y8_c00297{bottom:736.310700px;}
.y14_c00297{bottom:736.334700px;}
.y7_c00297{bottom:766.316700px;}
.y13_c00297{bottom:766.334700px;}
.y6_c00297{bottom:796.322700px;}
.y12_c00297{bottom:796.334700px;}
.y5_c00297{bottom:826.328700px;}
.y11_c00297{bottom:826.334700px;}
.y4_c00297{bottom:856.334700px;}
.y10_c00297{bottom:856.376100px;}
.y3_c00297{bottom:916.334700px;}
.y2_c00297{bottom:1006.334700px;}
.h6_c00297{height:50.292000px;}
.h2_c00297{height:54.000000px;}
.h5_c00297{height:64.800000px;}
.h4_c00297{height:78.540000px;}
.h3_c00297{height:100.980000px;}
.h0_c00297{height:1262.835000px;}
.h1_c00297{height:1263.000000px;}
.w0_c00297{width:892.914000px;}
.w1_c00297{width:893.250000px;}
.x0_c00297{left:0.000000px;}
.x2_c00297{left:82.500000px;}
.x3_c00297{left:90.000000px;}
.x4_c00297{left:106.500000px;}
.x5_c00297{left:675.611100px;}
.x1_c00297{left:785.813700px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls5_c00297{letter-spacing:-0.480000pt;}
.ls4_c00297{letter-spacing:0.000000pt;}
.ls0_c00297{letter-spacing:0.640000pt;}
.ls1_c00297{letter-spacing:0.746667pt;}
.ls3_c00297{letter-spacing:1.333333pt;}
.ls2_c00297{letter-spacing:1.466667pt;}
.ws1_c00297{word-spacing:-18.720000pt;}
.ws2_c00297{word-spacing:-15.680000pt;}
.ws0_c00297{word-spacing:-9.066667pt;}
.wse_c00297{word-spacing:-1.333333pt;}
.wsb_c00297{word-spacing:-0.896000pt;}
.ws4_c00297{word-spacing:-0.746667pt;}
.ws3_c00297{word-spacing:0.000000pt;}
.ws5_c00297{word-spacing:0.256000pt;}
.wsa_c00297{word-spacing:2.688000pt;}
.wsc_c00297{word-spacing:3.200000pt;}
.ws8_c00297{word-spacing:6.016000pt;}
.ws9_c00297{word-spacing:6.528000pt;}
.ws7_c00297{word-spacing:6.592000pt;}
.ws6_c00297{word-spacing:9.344000pt;}
.wsd_c00297{word-spacing:12.416000pt;}
._0_c00297{margin-left:-426.965867pt;}
._1_c00297{margin-left:-3.733333pt;}
._2_c00297{margin-left:-1.280000pt;}
.fs1_c00297{font-size:37.333333pt;}
.fs0_c00297{font-size:53.333333pt;}
.fs5_c00297{font-size:58.666667pt;}
.fs4_c00297{font-size:64.000000pt;}
.fs3_c00297{font-size:74.666667pt;}
.fs2_c00297{font-size:96.000000pt;}
.y0_c00297{bottom:0.000000pt;}
.y1_c00297{bottom:36.666667pt;}
.yf_c00297{bottom:387.847733pt;}
.ye_c00297{bottom:414.519733pt;}
.yd_c00297{bottom:467.853067pt;}
.yc_c00297{bottom:547.810400pt;}
.yb_c00297{bottom:574.482400pt;}
.y17_c00297{bottom:574.519733pt;}
.ya_c00297{bottom:601.154400pt;}
.y16_c00297{bottom:601.186400pt;}
.y9_c00297{bottom:627.826400pt;}
.y15_c00297{bottom:627.853067pt;}
.y8_c00297{bottom:654.498400pt;}
.y14_c00297{bottom:654.519733pt;}
.y7_c00297{bottom:681.170400pt;}
.y13_c00297{bottom:681.186400pt;}
.y6_c00297{bottom:707.842400pt;}
.y12_c00297{bottom:707.853067pt;}
.y5_c00297{bottom:734.514400pt;}
.y11_c00297{bottom:734.519733pt;}
.y4_c00297{bottom:761.186400pt;}
.y10_c00297{bottom:761.223200pt;}
.y3_c00297{bottom:814.519733pt;}
.y2_c00297{bottom:894.519733pt;}
.h6_c00297{height:44.704000pt;}
.h2_c00297{height:48.000000pt;}
.h5_c00297{height:57.600000pt;}
.h4_c00297{height:69.813333pt;}
.h3_c00297{height:89.760000pt;}
.h0_c00297{height:1122.520000pt;}
.h1_c00297{height:1122.666667pt;}
.w0_c00297{width:793.701333pt;}
.w1_c00297{width:794.000000pt;}
.x0_c00297{left:0.000000pt;}
.x2_c00297{left:73.333333pt;}
.x3_c00297{left:80.000000pt;}
.x4_c00297{left:94.666667pt;}
.x5_c00297{left:600.543200pt;}
.x1_c00297{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00298;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.161000;font-style: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);}
.m1_c00298{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls2_c00298{letter-spacing:0.000000px;}
.ls1_c00298{letter-spacing:0.640800px;}
.ls0_c00298{letter-spacing:0.720000px;}
.ls3_c00298{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsf_c00298{word-spacing:-1.944000px;}
.ws7_c00298{word-spacing:-1.872000px;}
.wsc_c00298{word-spacing:-1.008000px;}
.ws2_c00298{word-spacing:-0.840000px;}
.wse_c00298{word-spacing:-0.720000px;}
.wsd_c00298{word-spacing:-0.144000px;}
.ws1_c00298{word-spacing:0.000000px;}
.wsb_c00298{word-spacing:0.720000px;}
.ws4_c00298{word-spacing:3.600000px;}
.ws12_c00298{word-spacing:5.400000px;}
.wsa_c00298{word-spacing:5.688000px;}
.ws5_c00298{word-spacing:5.976000px;}
.ws10_c00298{word-spacing:8.136000px;}
.ws9_c00298{word-spacing:10.584000px;}
.ws11_c00298{word-spacing:10.728000px;}
.ws8_c00298{word-spacing:11.448000px;}
.ws6_c00298{word-spacing:17.424000px;}
.ws3_c00298{word-spacing:17.712000px;}
._0_c00298{margin-left:-480.336000px;}
._1_c00298{margin-left:-4.200000px;}
._3_c00298{margin-left:-2.798400px;}
._2_c00298{margin-left:-1.440000px;}
._4_c00298{width:1.224000px;}
._5_c00298{width:3.787200px;}
.fc2_c00298{color:rgb(32,32,32);}
.fc1_c00298{color:rgb(232,86,17);}
.fc0_c00298{color:rgb(60,60,59);}
.fs1_c00298{font-size:42.000000px;}
.fs0_c00298{font-size:60.000000px;}
.fs3_c00298{font-size:72.000000px;}
.fs2_c00298{font-size:84.000000px;}
.y0_c00298{bottom:0.000000px;}
.y1_c00298{bottom:41.250000px;}
.y16_c00298{bottom:196.310700px;}
.y15_c00298{bottom:226.316700px;}
.y14_c00298{bottom:256.322700px;}
.y13_c00298{bottom:286.328700px;}
.y12_c00298{bottom:316.334700px;}
.y11_c00298{bottom:376.334700px;}
.y10_c00298{bottom:466.286700px;}
.yf_c00298{bottom:496.292700px;}
.ye_c00298{bottom:526.298700px;}
.yd_c00298{bottom:556.304700px;}
.yc_c00298{bottom:586.310700px;}
.yb_c00298{bottom:616.316700px;}
.ya_c00298{bottom:646.322700px;}
.y9_c00298{bottom:676.328700px;}
.y8_c00298{bottom:706.334700px;}
.y7_c00298{bottom:766.334700px;}
.y6_c00298{bottom:856.316700px;}
.y5_c00298{bottom:886.322700px;}
.y4_c00298{bottom:916.328700px;}
.y3_c00298{bottom:946.334700px;}
.y2_c00298{bottom:1006.334700px;}
.h2_c00298{height:54.000000px;}
.h4_c00298{height:64.800000px;}
.h3_c00298{height:78.540000px;}
.h0_c00298{height:1262.835000px;}
.h1_c00298{height:1263.000000px;}
.w0_c00298{width:892.914000px;}
.w1_c00298{width:893.250000px;}
.x0_c00298{left:0.000000px;}
.x2_c00298{left:90.000000px;}
.x3_c00298{left:106.500000px;}
.x1_c00298{left:785.738550px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls2_c00298{letter-spacing:0.000000pt;}
.ls1_c00298{letter-spacing:0.569600pt;}
.ls0_c00298{letter-spacing:0.640000pt;}
.ls3_c00298{letter-spacing:0.746667pt;}
.ws0_c00298{word-spacing:-9.066667pt;}
.wsf_c00298{word-spacing:-1.728000pt;}
.ws7_c00298{word-spacing:-1.664000pt;}
.wsc_c00298{word-spacing:-0.896000pt;}
.ws2_c00298{word-spacing:-0.746667pt;}
.wse_c00298{word-spacing:-0.640000pt;}
.wsd_c00298{word-spacing:-0.128000pt;}
.ws1_c00298{word-spacing:0.000000pt;}
.wsb_c00298{word-spacing:0.640000pt;}
.ws4_c00298{word-spacing:3.200000pt;}
.ws12_c00298{word-spacing:4.800000pt;}
.wsa_c00298{word-spacing:5.056000pt;}
.ws5_c00298{word-spacing:5.312000pt;}
.ws10_c00298{word-spacing:7.232000pt;}
.ws9_c00298{word-spacing:9.408000pt;}
.ws11_c00298{word-spacing:9.536000pt;}
.ws8_c00298{word-spacing:10.176000pt;}
.ws6_c00298{word-spacing:15.488000pt;}
.ws3_c00298{word-spacing:15.744000pt;}
._0_c00298{margin-left:-426.965333pt;}
._1_c00298{margin-left:-3.733333pt;}
._3_c00298{margin-left:-2.487467pt;}
._2_c00298{margin-left:-1.280000pt;}
._4_c00298{width:1.088000pt;}
._5_c00298{width:3.366400pt;}
.fs1_c00298{font-size:37.333333pt;}
.fs0_c00298{font-size:53.333333pt;}
.fs3_c00298{font-size:64.000000pt;}
.fs2_c00298{font-size:74.666667pt;}
.y0_c00298{bottom:0.000000pt;}
.y1_c00298{bottom:36.666667pt;}
.y16_c00298{bottom:174.498400pt;}
.y15_c00298{bottom:201.170400pt;}
.y14_c00298{bottom:227.842400pt;}
.y13_c00298{bottom:254.514400pt;}
.y12_c00298{bottom:281.186400pt;}
.y11_c00298{bottom:334.519733pt;}
.y10_c00298{bottom:414.477067pt;}
.yf_c00298{bottom:441.149067pt;}
.ye_c00298{bottom:467.821067pt;}
.yd_c00298{bottom:494.493067pt;}
.yc_c00298{bottom:521.165067pt;}
.yb_c00298{bottom:547.837067pt;}
.ya_c00298{bottom:574.509067pt;}
.y9_c00298{bottom:601.181067pt;}
.y8_c00298{bottom:627.853067pt;}
.y7_c00298{bottom:681.186400pt;}
.y6_c00298{bottom:761.170400pt;}
.y5_c00298{bottom:787.842400pt;}
.y4_c00298{bottom:814.514400pt;}
.y3_c00298{bottom:841.186400pt;}
.y2_c00298{bottom:894.519733pt;}
.h2_c00298{height:48.000000pt;}
.h4_c00298{height:57.600000pt;}
.h3_c00298{height:69.813333pt;}
.h0_c00298{height:1122.520000pt;}
.h1_c00298{height:1122.666667pt;}
.w0_c00298{width:793.701333pt;}
.w1_c00298{width:794.000000pt;}
.x0_c00298{left:0.000000pt;}
.x2_c00298{left:80.000000pt;}
.x3_c00298{left:94.666667pt;}
.x1_c00298{left:698.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8681537a773ef45a2954054.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.160000;font-style:normal;font-weight:normal;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_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00299;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:1.161000;font-style: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);}
.m1_c00299{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls6_c00299{letter-spacing:-0.324000px;}
.ls5_c00299{letter-spacing:0.000000px;}
.ls2_c00299{letter-spacing:0.600000px;}
.ls1_c00299{letter-spacing:0.720000px;}
.ls0_c00299{letter-spacing:0.840000px;}
.ls4_c00299{letter-spacing:1.500000px;}
.ls3_c00299{letter-spacing:1.650000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00299{word-spacing:-21.276000px;}
.ws2_c00299{word-spacing:-17.640000px;}
.ws3_c00299{word-spacing:-14.850000px;}
.ws0_c00299{word-spacing:-10.200000px;}
.wsa_c00299{word-spacing:-6.192000px;}
.ws9_c00299{word-spacing:-5.280000px;}
.wse_c00299{word-spacing:-2.664000px;}
.ws13_c00299{word-spacing:-1.500000px;}
.ws11_c00299{word-spacing:-1.296000px;}
.ws12_c00299{word-spacing:-1.080000px;}
.ws5_c00299{word-spacing:-0.840000px;}
.ws4_c00299{word-spacing:0.000000px;}
.wsb_c00299{word-spacing:0.216000px;}
.wsf_c00299{word-spacing:0.360000px;}
.ws10_c00299{word-spacing:0.864000px;}
.wsd_c00299{word-spacing:1.224000px;}
.ws7_c00299{word-spacing:5.400000px;}
.ws8_c00299{word-spacing:6.300000px;}
.ws6_c00299{word-spacing:9.360000px;}
.wsc_c00299{word-spacing:12.456000px;}
._0_c00299{margin-left:-480.337800px;}
._6_c00299{margin-left:-6.480000px;}
._1_c00299{margin-left:-4.200000px;}
._3_c00299{margin-left:-2.160000px;}
._2_c00299{margin-left:-1.134000px;}
._4_c00299{width:1.452000px;}
._5_c00299{width:2.454600px;}
.fc3_c00299{color:rgb(32,32,32);}
.fc2_c00299{color:rgb(233,83,14);}
.fc1_c00299{color:rgb(232,86,17);}
.fc4_c00299{color:rgb(157,157,156);}
.fc0_c00299{color:rgb(60,60,59);}
.fs1_c00299{font-size:42.000000px;}
.fs0_c00299{font-size:60.000000px;}
.fs5_c00299{font-size:66.000000px;}
.fs4_c00299{font-size:72.000000px;}
.fs3_c00299{font-size:84.000000px;}
.fs2_c00299{font-size:108.000000px;}
.y0_c00299{bottom:0.000000px;}
.y1_c00299{bottom:41.250000px;}
.y12_c00299{bottom:256.334700px;}
.y11_c00299{bottom:286.328700px;}
.y10_c00299{bottom:316.334700px;}
.yf_c00299{bottom:376.334700px;}
.ye_c00299{bottom:466.328700px;}
.yd_c00299{bottom:496.334700px;}
.yc_c00299{bottom:556.334700px;}
.yb_c00299{bottom:646.310700px;}
.ya_c00299{bottom:676.316700px;}
.y9_c00299{bottom:706.322700px;}
.y8_c00299{bottom:736.328700px;}
.y15_c00299{bottom:736.334700px;}
.y7_c00299{bottom:766.334700px;}
.y6_c00299{bottom:796.334700px;}
.y5_c00299{bottom:826.328700px;}
.y14_c00299{bottom:826.334700px;}
.y4_c00299{bottom:856.334700px;}
.y13_c00299{bottom:856.376100px;}
.y3_c00299{bottom:916.334700px;}
.y2_c00299{bottom:1006.334700px;}
.h6_c00299{height:50.292000px;}
.h2_c00299{height:54.000000px;}
.h5_c00299{height:64.800000px;}
.h4_c00299{height:78.540000px;}
.h3_c00299{height:100.980000px;}
.h0_c00299{height:1262.835000px;}
.h1_c00299{height:1263.000000px;}
.w0_c00299{width:892.914000px;}
.w1_c00299{width:893.250000px;}
.x0_c00299{left:0.000000px;}
.x2_c00299{left:82.500000px;}
.x3_c00299{left:90.000000px;}
.x4_c00299{left:106.500000px;}
.x5_c00299{left:675.611100px;}
.x1_c00299{left:785.619000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls6_c00299{letter-spacing:-0.288000pt;}
.ls5_c00299{letter-spacing:0.000000pt;}
.ls2_c00299{letter-spacing:0.533333pt;}
.ls1_c00299{letter-spacing:0.640000pt;}
.ls0_c00299{letter-spacing:0.746667pt;}
.ls4_c00299{letter-spacing:1.333333pt;}
.ls3_c00299{letter-spacing:1.466667pt;}
.ws1_c00299{word-spacing:-18.912000pt;}
.ws2_c00299{word-spacing:-15.680000pt;}
.ws3_c00299{word-spacing:-13.200000pt;}
.ws0_c00299{word-spacing:-9.066667pt;}
.wsa_c00299{word-spacing:-5.504000pt;}
.ws9_c00299{word-spacing:-4.693333pt;}
.wse_c00299{word-spacing:-2.368000pt;}
.ws13_c00299{word-spacing:-1.333333pt;}
.ws11_c00299{word-spacing:-1.152000pt;}
.ws12_c00299{word-spacing:-0.960000pt;}
.ws5_c00299{word-spacing:-0.746667pt;}
.ws4_c00299{word-spacing:0.000000pt;}
.wsb_c00299{word-spacing:0.192000pt;}
.wsf_c00299{word-spacing:0.320000pt;}
.ws10_c00299{word-spacing:0.768000pt;}
.wsd_c00299{word-spacing:1.088000pt;}
.ws7_c00299{word-spacing:4.800000pt;}
.ws8_c00299{word-spacing:5.600000pt;}
.ws6_c00299{word-spacing:8.320000pt;}
.wsc_c00299{word-spacing:11.072000pt;}
._0_c00299{margin-left:-426.966933pt;}
._6_c00299{margin-left:-5.760000pt;}
._1_c00299{margin-left:-3.733333pt;}
._3_c00299{margin-left:-1.920000pt;}
._2_c00299{margin-left:-1.008000pt;}
._4_c00299{width:1.290667pt;}
._5_c00299{width:2.181867pt;}
.fs1_c00299{font-size:37.333333pt;}
.fs0_c00299{font-size:53.333333pt;}
.fs5_c00299{font-size:58.666667pt;}
.fs4_c00299{font-size:64.000000pt;}
.fs3_c00299{font-size:74.666667pt;}
.fs2_c00299{font-size:96.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y1_c00299{bottom:36.666667pt;}
.y12_c00299{bottom:227.853067pt;}
.y11_c00299{bottom:254.514400pt;}
.y10_c00299{bottom:281.186400pt;}
.yf_c00299{bottom:334.519733pt;}
.ye_c00299{bottom:414.514400pt;}
.yd_c00299{bottom:441.186400pt;}
.yc_c00299{bottom:494.519733pt;}
.yb_c00299{bottom:574.498400pt;}
.ya_c00299{bottom:601.170400pt;}
.y9_c00299{bottom:627.842400pt;}
.y8_c00299{bottom:654.514400pt;}
.y15_c00299{bottom:654.519733pt;}
.y7_c00299{bottom:681.186400pt;}
.y6_c00299{bottom:707.853067pt;}
.y5_c00299{bottom:734.514400pt;}
.y14_c00299{bottom:734.519733pt;}
.y4_c00299{bottom:761.186400pt;}
.y13_c00299{bottom:761.223200pt;}
.y3_c00299{bottom:814.519733pt;}
.y2_c00299{bottom:894.519733pt;}
.h6_c00299{height:44.704000pt;}
.h2_c00299{height:48.000000pt;}
.h5_c00299{height:57.600000pt;}
.h4_c00299{height:69.813333pt;}
.h3_c00299{height:89.760000pt;}
.h0_c00299{height:1122.520000pt;}
.h1_c00299{height:1122.666667pt;}
.w0_c00299{width:793.701333pt;}
.w1_c00299{width:794.000000pt;}
.x0_c00299{left:0.000000pt;}
.x2_c00299{left:73.333333pt;}
.x3_c00299{left:80.000000pt;}
.x4_c00299{left:94.666667pt;}
.x5_c00299{left:600.543200pt;}
.x1_c00299{left:698.328000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9336a84ddb46a296126c8b8f.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00300;src:url('chunks/assets/font_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.161000;font-style: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);}
.m1_c00300{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls2_c00300{letter-spacing:0.000000px;}
.ls1_c00300{letter-spacing:0.720000px;}
.ls3_c00300{letter-spacing:0.840000px;}
.ls0_c00300{letter-spacing:2.088000px;}
.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:-10.200000px;}
.wsf_c00300{word-spacing:-5.256000px;}
.wsb_c00300{word-spacing:-3.600000px;}
.ws6_c00300{word-spacing:-1.728000px;}
.ws7_c00300{word-spacing:-1.584000px;}
.ws2_c00300{word-spacing:-0.840000px;}
.wsa_c00300{word-spacing:-0.720000px;}
.ws8_c00300{word-spacing:-0.360000px;}
.ws1_c00300{word-spacing:0.000000px;}
.ws9_c00300{word-spacing:0.792000px;}
.ws3_c00300{word-spacing:1.152000px;}
.wse_c00300{word-spacing:2.016000px;}
.wsc_c00300{word-spacing:3.888000px;}
.ws4_c00300{word-spacing:6.192000px;}
.ws5_c00300{word-spacing:7.848000px;}
.wsd_c00300{word-spacing:10.728000px;}
._0_c00300{margin-left:-480.337800px;}
._1_c00300{margin-left:-4.200000px;}
._2_c00300{margin-left:-1.440000px;}
._3_c00300{width:1.022400px;}
._4_c00300{width:3.564000px;}
._5_c00300{width:5.256000px;}
.fc2_c00300{color:rgb(32,32,32);}
.fc1_c00300{color:rgb(232,86,17);}
.fc0_c00300{color:rgb(60,60,59);}
.fs1_c00300{font-size:42.000000px;}
.fs0_c00300{font-size:60.000000px;}
.fs3_c00300{font-size:72.000000px;}
.fs2_c00300{font-size:84.000000px;}
.y0_c00300{bottom:0.000000px;}
.y1_c00300{bottom:41.250000px;}
.yf_c00300{bottom:496.316700px;}
.ye_c00300{bottom:526.322700px;}
.yd_c00300{bottom:556.328700px;}
.yc_c00300{bottom:586.334700px;}
.yb_c00300{bottom:646.334700px;}
.ya_c00300{bottom:736.292700px;}
.y9_c00300{bottom:766.298700px;}
.y8_c00300{bottom:796.304700px;}
.y7_c00300{bottom:826.310700px;}
.y6_c00300{bottom:856.316700px;}
.y5_c00300{bottom:886.322700px;}
.y4_c00300{bottom:916.328700px;}
.y3_c00300{bottom:946.334700px;}
.y2_c00300{bottom:1006.334700px;}
.h2_c00300{height:54.000000px;}
.h5_c00300{height:64.800000px;}
.h4_c00300{height:67.320000px;}
.h3_c00300{height:78.540000px;}
.h0_c00300{height:1262.835000px;}
.h1_c00300{height:1263.000000px;}
.w0_c00300{width:892.914000px;}
.w1_c00300{width:893.250000px;}
.x0_c00300{left:0.000000px;}
.x2_c00300{left:90.000000px;}
.x3_c00300{left:106.500000px;}
.x1_c00300{left:789.279000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls2_c00300{letter-spacing:0.000000pt;}
.ls1_c00300{letter-spacing:0.640000pt;}
.ls3_c00300{letter-spacing:0.746667pt;}
.ls0_c00300{letter-spacing:1.856000pt;}
.ws0_c00300{word-spacing:-9.066667pt;}
.wsf_c00300{word-spacing:-4.672000pt;}
.wsb_c00300{word-spacing:-3.200000pt;}
.ws6_c00300{word-spacing:-1.536000pt;}
.ws7_c00300{word-spacing:-1.408000pt;}
.ws2_c00300{word-spacing:-0.746667pt;}
.wsa_c00300{word-spacing:-0.640000pt;}
.ws8_c00300{word-spacing:-0.320000pt;}
.ws1_c00300{word-spacing:0.000000pt;}
.ws9_c00300{word-spacing:0.704000pt;}
.ws3_c00300{word-spacing:1.024000pt;}
.wse_c00300{word-spacing:1.792000pt;}
.wsc_c00300{word-spacing:3.456000pt;}
.ws4_c00300{word-spacing:5.504000pt;}
.ws5_c00300{word-spacing:6.976000pt;}
.wsd_c00300{word-spacing:9.536000pt;}
._0_c00300{margin-left:-426.966933pt;}
._1_c00300{margin-left:-3.733333pt;}
._2_c00300{margin-left:-1.280000pt;}
._3_c00300{width:0.908800pt;}
._4_c00300{width:3.168000pt;}
._5_c00300{width:4.672000pt;}
.fs1_c00300{font-size:37.333333pt;}
.fs0_c00300{font-size:53.333333pt;}
.fs3_c00300{font-size:64.000000pt;}
.fs2_c00300{font-size:74.666667pt;}
.y0_c00300{bottom:0.000000pt;}
.y1_c00300{bottom:36.666667pt;}
.yf_c00300{bottom:441.170400pt;}
.ye_c00300{bottom:467.842400pt;}
.yd_c00300{bottom:494.514400pt;}
.yc_c00300{bottom:521.186400pt;}
.yb_c00300{bottom:574.519733pt;}
.ya_c00300{bottom:654.482400pt;}
.y9_c00300{bottom:681.154400pt;}
.y8_c00300{bottom:707.826400pt;}
.y7_c00300{bottom:734.498400pt;}
.y6_c00300{bottom:761.170400pt;}
.y5_c00300{bottom:787.842400pt;}
.y4_c00300{bottom:814.514400pt;}
.y3_c00300{bottom:841.186400pt;}
.y2_c00300{bottom:894.519733pt;}
.h2_c00300{height:48.000000pt;}
.h5_c00300{height:57.600000pt;}
.h4_c00300{height:59.840000pt;}
.h3_c00300{height:69.813333pt;}
.h0_c00300{height:1122.520000pt;}
.h1_c00300{height:1122.666667pt;}
.w0_c00300{width:793.701333pt;}
.w1_c00300{width:794.000000pt;}
.x0_c00300{left:0.000000pt;}
.x2_c00300{left:80.000000pt;}
.x3_c00300{left:94.666667pt;}
.x1_c00300{left:701.581333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00301;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00301;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00301;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;line-height:1.155000;font-style: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);}
.m1_c00301{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls2_c00301{letter-spacing:0.000000px;}
.ls0_c00301{letter-spacing:0.864000px;}
.ls1_c00301{letter-spacing:1.200000px;}
.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:-13.104000px;}
.ws0_c00301{word-spacing:-10.200000px;}
.ws3_c00301{word-spacing:-1.440000px;}
.ws4_c00301{word-spacing:-1.200000px;}
.ws2_c00301{word-spacing:0.000000px;}
._0_c00301{margin-left:-480.337200px;}
._6_c00301{margin-left:-12.000000px;}
._5_c00301{margin-left:-9.000000px;}
._4_c00301{margin-left:-6.480000px;}
._1_c00301{margin-left:-4.200000px;}
._2_c00301{margin-left:-1.440000px;}
._3_c00301{width:1.440000px;}
.fc3_c00301{color:rgb(255,255,255);}
.fc2_c00301{color:rgb(233,83,14);}
.fc1_c00301{color:rgb(232,86,17);}
.fc0_c00301{color:rgb(60,60,59);}
.fs1_c00301{font-size:42.000000px;}
.fs0_c00301{font-size:60.000000px;}
.fs3_c00301{font-size:72.000000px;}
.fs4_c00301{font-size:120.000000px;}
.fs2_c00301{font-size:360.000000px;}
.y0_c00301{bottom:0.000000px;}
.y1_c00301{bottom:41.250000px;}
.y13_c00301{bottom:283.250700px;}
.y12_c00301{bottom:304.256700px;}
.y11_c00301{bottom:325.262700px;}
.y10_c00301{bottom:346.268700px;}
.yf_c00301{bottom:403.274700px;}
.ye_c00301{bottom:424.280700px;}
.yd_c00301{bottom:445.286700px;}
.yc_c00301{bottom:466.292700px;}
.yb_c00301{bottom:523.298700px;}
.ya_c00301{bottom:544.304700px;}
.y9_c00301{bottom:565.310700px;}
.y8_c00301{bottom:586.316700px;}
.y7_c00301{bottom:643.322700px;}
.y6_c00301{bottom:664.328700px;}
.y5_c00301{bottom:685.334700px;}
.y4_c00301{bottom:706.340700px;}
.y3_c00301{bottom:752.834700px;}
.y18_c00301{bottom:886.334700px;}
.y17_c00301{bottom:916.334700px;}
.y16_c00301{bottom:946.334700px;}
.y15_c00301{bottom:976.334700px;}
.y14_c00301{bottom:1006.334700px;}
.y2_c00301{bottom:1093.526700px;}
.h2_c00301{height:54.000000px;}
.h5_c00301{height:64.800000px;}
.h4_c00301{height:66.456000px;}
.h6_c00301{height:112.200000px;}
.h3_c00301{height:324.000000px;}
.h0_c00301{height:1262.835000px;}
.h1_c00301{height:1263.000000px;}
.w0_c00301{width:892.914000px;}
.w1_c00301{width:893.250000px;}
.x0_c00301{left:0.000000px;}
.x2_c00301{left:81.290250px;}
.x3_c00301{left:82.393650px;}
.x5_c00301{left:112.287450px;}
.x4_c00301{left:127.393650px;}
.x1_c00301{left:786.803850px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls2_c00301{letter-spacing:0.000000pt;}
.ls0_c00301{letter-spacing:0.768000pt;}
.ls1_c00301{letter-spacing:1.066667pt;}
.ws1_c00301{word-spacing:-11.648000pt;}
.ws0_c00301{word-spacing:-9.066667pt;}
.ws3_c00301{word-spacing:-1.280000pt;}
.ws4_c00301{word-spacing:-1.066667pt;}
.ws2_c00301{word-spacing:0.000000pt;}
._0_c00301{margin-left:-426.966400pt;}
._6_c00301{margin-left:-10.666667pt;}
._5_c00301{margin-left:-8.000000pt;}
._4_c00301{margin-left:-5.760000pt;}
._1_c00301{margin-left:-3.733333pt;}
._2_c00301{margin-left:-1.280000pt;}
._3_c00301{width:1.280000pt;}
.fs1_c00301{font-size:37.333333pt;}
.fs0_c00301{font-size:53.333333pt;}
.fs3_c00301{font-size:64.000000pt;}
.fs4_c00301{font-size:106.666667pt;}
.fs2_c00301{font-size:320.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y1_c00301{bottom:36.666667pt;}
.y13_c00301{bottom:251.778400pt;}
.y12_c00301{bottom:270.450400pt;}
.y11_c00301{bottom:289.122400pt;}
.y10_c00301{bottom:307.794400pt;}
.yf_c00301{bottom:358.466400pt;}
.ye_c00301{bottom:377.138400pt;}
.yd_c00301{bottom:395.810400pt;}
.yc_c00301{bottom:414.482400pt;}
.yb_c00301{bottom:465.154400pt;}
.ya_c00301{bottom:483.826400pt;}
.y9_c00301{bottom:502.498400pt;}
.y8_c00301{bottom:521.170400pt;}
.y7_c00301{bottom:571.842400pt;}
.y6_c00301{bottom:590.514400pt;}
.y5_c00301{bottom:609.186400pt;}
.y4_c00301{bottom:627.858400pt;}
.y3_c00301{bottom:669.186400pt;}
.y18_c00301{bottom:787.853067pt;}
.y17_c00301{bottom:814.519733pt;}
.y16_c00301{bottom:841.186400pt;}
.y15_c00301{bottom:867.853067pt;}
.y14_c00301{bottom:894.519733pt;}
.y2_c00301{bottom:972.023733pt;}
.h2_c00301{height:48.000000pt;}
.h5_c00301{height:57.600000pt;}
.h4_c00301{height:59.072000pt;}
.h6_c00301{height:99.733333pt;}
.h3_c00301{height:288.000000pt;}
.h0_c00301{height:1122.520000pt;}
.h1_c00301{height:1122.666667pt;}
.w0_c00301{width:793.701333pt;}
.w1_c00301{width:794.000000pt;}
.x0_c00301{left:0.000000pt;}
.x2_c00301{left:72.258000pt;}
.x3_c00301{left:73.238800pt;}
.x5_c00301{left:99.811067pt;}
.x4_c00301{left:113.238800pt;}
.x1_c00301{left:699.381200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00302;src:url('chunks/assets/font_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00302;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00302;src:url('chunks/assets/font_7613350094aa9ba7d0a6da04.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:1.161000;font-style: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);}
.m1_c00302{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls5_c00302{letter-spacing:-0.540000px;}
.ls4_c00302{letter-spacing:0.000000px;}
.ls0_c00302{letter-spacing:0.720000px;}
.ls1_c00302{letter-spacing:0.840000px;}
.ls3_c00302{letter-spacing:1.500000px;}
.ls2_c00302{letter-spacing:1.650000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00302{word-spacing:-21.060000px;}
.ws2_c00302{word-spacing:-17.640000px;}
.ws3_c00302{word-spacing:-11.700000px;}
.ws0_c00302{word-spacing:-10.200000px;}
.ws10_c00302{word-spacing:-3.960000px;}
.ws14_c00302{word-spacing:-1.500000px;}
.ws5_c00302{word-spacing:-0.840000px;}
.ws4_c00302{word-spacing:0.000000px;}
.ws13_c00302{word-spacing:1.152000px;}
.ws12_c00302{word-spacing:1.296000px;}
.wsa_c00302{word-spacing:1.728000px;}
.ws11_c00302{word-spacing:2.016000px;}
.ws7_c00302{word-spacing:2.304000px;}
.ws8_c00302{word-spacing:2.376000px;}
.wsd_c00302{word-spacing:2.664000px;}
.ws6_c00302{word-spacing:3.456000px;}
.ws9_c00302{word-spacing:3.816000px;}
.wsb_c00302{word-spacing:7.704000px;}
.wsc_c00302{word-spacing:9.648000px;}
.wse_c00302{word-spacing:10.944000px;}
.wsf_c00302{word-spacing:12.960000px;}
._0_c00302{margin-left:-480.337200px;}
._1_c00302{margin-left:-4.200000px;}
._5_c00302{margin-left:-3.036000px;}
._2_c00302{margin-left:-1.440000px;}
._3_c00302{width:1.958400px;}
._4_c00302{width:3.369600px;}
.fc3_c00302{color:rgb(32,32,32);}
.fc2_c00302{color:rgb(233,83,14);}
.fc1_c00302{color:rgb(232,86,17);}
.fc4_c00302{color:rgb(157,157,156);}
.fc0_c00302{color:rgb(60,60,59);}
.fs1_c00302{font-size:42.000000px;}
.fs0_c00302{font-size:60.000000px;}
.fs5_c00302{font-size:66.000000px;}
.fs4_c00302{font-size:72.000000px;}
.fs3_c00302{font-size:84.000000px;}
.fs2_c00302{font-size:108.000000px;}
.y0_c00302{bottom:0.000000px;}
.y1_c00302{bottom:41.250000px;}
.y14_c00302{bottom:286.316700px;}
.y13_c00302{bottom:316.322700px;}
.y12_c00302{bottom:346.328700px;}
.y11_c00302{bottom:376.334700px;}
.y10_c00302{bottom:436.334700px;}
.yf_c00302{bottom:526.268700px;}
.ye_c00302{bottom:556.274700px;}
.yd_c00302{bottom:586.280700px;}
.yc_c00302{bottom:616.286700px;}
.yb_c00302{bottom:646.292700px;}
.ya_c00302{bottom:676.298700px;}
.y9_c00302{bottom:706.304700px;}
.y1a_c00302{bottom:706.334700px;}
.y8_c00302{bottom:736.310700px;}
.y19_c00302{bottom:736.334700px;}
.y7_c00302{bottom:766.316700px;}
.y18_c00302{bottom:766.334700px;}
.y6_c00302{bottom:796.322700px;}
.y17_c00302{bottom:796.334700px;}
.y5_c00302{bottom:826.328700px;}
.y16_c00302{bottom:826.334700px;}
.y4_c00302{bottom:856.334700px;}
.y15_c00302{bottom:856.376100px;}
.y3_c00302{bottom:916.334700px;}
.y2_c00302{bottom:1006.334700px;}
.h6_c00302{height:50.292000px;}
.h2_c00302{height:54.000000px;}
.h5_c00302{height:64.800000px;}
.h4_c00302{height:78.540000px;}
.h3_c00302{height:100.980000px;}
.h0_c00302{height:1262.835000px;}
.h1_c00302{height:1263.000000px;}
.w0_c00302{width:892.914000px;}
.w1_c00302{width:893.250000px;}
.x0_c00302{left:0.000000px;}
.x2_c00302{left:82.500000px;}
.x3_c00302{left:90.000000px;}
.x4_c00302{left:106.500000px;}
.x5_c00302{left:675.611100px;}
.x1_c00302{left:786.653850px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls5_c00302{letter-spacing:-0.480000pt;}
.ls4_c00302{letter-spacing:0.000000pt;}
.ls0_c00302{letter-spacing:0.640000pt;}
.ls1_c00302{letter-spacing:0.746667pt;}
.ls3_c00302{letter-spacing:1.333333pt;}
.ls2_c00302{letter-spacing:1.466667pt;}
.ws1_c00302{word-spacing:-18.720000pt;}
.ws2_c00302{word-spacing:-15.680000pt;}
.ws3_c00302{word-spacing:-10.400000pt;}
.ws0_c00302{word-spacing:-9.066667pt;}
.ws10_c00302{word-spacing:-3.520000pt;}
.ws14_c00302{word-spacing:-1.333333pt;}
.ws5_c00302{word-spacing:-0.746667pt;}
.ws4_c00302{word-spacing:0.000000pt;}
.ws13_c00302{word-spacing:1.024000pt;}
.ws12_c00302{word-spacing:1.152000pt;}
.wsa_c00302{word-spacing:1.536000pt;}
.ws11_c00302{word-spacing:1.792000pt;}
.ws7_c00302{word-spacing:2.048000pt;}
.ws8_c00302{word-spacing:2.112000pt;}
.wsd_c00302{word-spacing:2.368000pt;}
.ws6_c00302{word-spacing:3.072000pt;}
.ws9_c00302{word-spacing:3.392000pt;}
.wsb_c00302{word-spacing:6.848000pt;}
.wsc_c00302{word-spacing:8.576000pt;}
.wse_c00302{word-spacing:9.728000pt;}
.wsf_c00302{word-spacing:11.520000pt;}
._0_c00302{margin-left:-426.966400pt;}
._1_c00302{margin-left:-3.733333pt;}
._5_c00302{margin-left:-2.698667pt;}
._2_c00302{margin-left:-1.280000pt;}
._3_c00302{width:1.740800pt;}
._4_c00302{width:2.995200pt;}
.fs1_c00302{font-size:37.333333pt;}
.fs0_c00302{font-size:53.333333pt;}
.fs5_c00302{font-size:58.666667pt;}
.fs4_c00302{font-size:64.000000pt;}
.fs3_c00302{font-size:74.666667pt;}
.fs2_c00302{font-size:96.000000pt;}
.y0_c00302{bottom:0.000000pt;}
.y1_c00302{bottom:36.666667pt;}
.y14_c00302{bottom:254.503733pt;}
.y13_c00302{bottom:281.175733pt;}
.y12_c00302{bottom:307.847733pt;}
.y11_c00302{bottom:334.519733pt;}
.y10_c00302{bottom:387.853067pt;}
.yf_c00302{bottom:467.794400pt;}
.ye_c00302{bottom:494.466400pt;}
.yd_c00302{bottom:521.138400pt;}
.yc_c00302{bottom:547.810400pt;}
.yb_c00302{bottom:574.482400pt;}
.ya_c00302{bottom:601.154400pt;}
.y9_c00302{bottom:627.826400pt;}
.y1a_c00302{bottom:627.853067pt;}
.y8_c00302{bottom:654.498400pt;}
.y19_c00302{bottom:654.519733pt;}
.y7_c00302{bottom:681.170400pt;}
.y18_c00302{bottom:681.186400pt;}
.y6_c00302{bottom:707.842400pt;}
.y17_c00302{bottom:707.853067pt;}
.y5_c00302{bottom:734.514400pt;}
.y16_c00302{bottom:734.519733pt;}
.y4_c00302{bottom:761.186400pt;}
.y15_c00302{bottom:761.223200pt;}
.y3_c00302{bottom:814.519733pt;}
.y2_c00302{bottom:894.519733pt;}
.h6_c00302{height:44.704000pt;}
.h2_c00302{height:48.000000pt;}
.h5_c00302{height:57.600000pt;}
.h4_c00302{height:69.813333pt;}
.h3_c00302{height:89.760000pt;}
.h0_c00302{height:1122.520000pt;}
.h1_c00302{height:1122.666667pt;}
.w0_c00302{width:793.701333pt;}
.w1_c00302{width:794.000000pt;}
.x0_c00302{left:0.000000pt;}
.x2_c00302{left:73.333333pt;}
.x3_c00302{left:80.000000pt;}
.x4_c00302{left:94.666667pt;}
.x5_c00302{left:600.543200pt;}
.x1_c00302{left:699.247867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.199000;font-style: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);}
.m1_c00303{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls1_c00303{letter-spacing:0.000000px;}
.ls0_c00303{letter-spacing:0.720000px;}
.ls2_c00303{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws4_c00303{word-spacing:-2.232000px;}
.wsa_c00303{word-spacing:-1.584000px;}
.ws2_c00303{word-spacing:-0.840000px;}
.ws8_c00303{word-spacing:-0.720000px;}
.ws1_c00303{word-spacing:0.000000px;}
.ws9_c00303{word-spacing:0.720000px;}
.wsb_c00303{word-spacing:1.800000px;}
.ws6_c00303{word-spacing:3.312000px;}
.ws7_c00303{word-spacing:5.184000px;}
.ws5_c00303{word-spacing:7.416000px;}
.ws3_c00303{word-spacing:9.720000px;}
._0_c00303{margin-left:-480.337200px;}
._1_c00303{margin-left:-4.200000px;}
._3_c00303{margin-left:-2.592000px;}
._2_c00303{margin-left:-1.440000px;}
._4_c00303{width:12.024000px;}
.fc2_c00303{color:rgb(32,32,32);}
.fc1_c00303{color:rgb(232,86,17);}
.fc0_c00303{color:rgb(60,60,59);}
.fs1_c00303{font-size:42.000000px;}
.fs0_c00303{font-size:60.000000px;}
.fs3_c00303{font-size:72.000000px;}
.fs2_c00303{font-size:84.000000px;}
.y0_c00303{bottom:0.000000px;}
.y1_c00303{bottom:41.250000px;}
.y10_c00303{bottom:376.322700px;}
.yf_c00303{bottom:406.328700px;}
.ye_c00303{bottom:436.334700px;}
.yd_c00303{bottom:496.334700px;}
.yc_c00303{bottom:586.316700px;}
.yb_c00303{bottom:616.322700px;}
.ya_c00303{bottom:646.328700px;}
.y9_c00303{bottom:676.334700px;}
.y8_c00303{bottom:736.334700px;}
.y7_c00303{bottom:826.310700px;}
.y6_c00303{bottom:856.316700px;}
.y5_c00303{bottom:886.322700px;}
.y4_c00303{bottom:916.328700px;}
.y3_c00303{bottom:946.334700px;}
.y2_c00303{bottom:1006.334700px;}
.h2_c00303{height:54.000000px;}
.h4_c00303{height:64.800000px;}
.h3_c00303{height:78.540000px;}
.h0_c00303{height:1262.835000px;}
.h1_c00303{height:1263.000000px;}
.w0_c00303{width:892.914000px;}
.w1_c00303{width:893.250000px;}
.x0_c00303{left:0.000000px;}
.x2_c00303{left:90.000000px;}
.x3_c00303{left:106.500000px;}
.x1_c00303{left:785.678850px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls1_c00303{letter-spacing:0.000000pt;}
.ls0_c00303{letter-spacing:0.640000pt;}
.ls2_c00303{letter-spacing:0.746667pt;}
.ws0_c00303{word-spacing:-9.066667pt;}
.ws4_c00303{word-spacing:-1.984000pt;}
.wsa_c00303{word-spacing:-1.408000pt;}
.ws2_c00303{word-spacing:-0.746667pt;}
.ws8_c00303{word-spacing:-0.640000pt;}
.ws1_c00303{word-spacing:0.000000pt;}
.ws9_c00303{word-spacing:0.640000pt;}
.wsb_c00303{word-spacing:1.600000pt;}
.ws6_c00303{word-spacing:2.944000pt;}
.ws7_c00303{word-spacing:4.608000pt;}
.ws5_c00303{word-spacing:6.592000pt;}
.ws3_c00303{word-spacing:8.640000pt;}
._0_c00303{margin-left:-426.966400pt;}
._1_c00303{margin-left:-3.733333pt;}
._3_c00303{margin-left:-2.304000pt;}
._2_c00303{margin-left:-1.280000pt;}
._4_c00303{width:10.688000pt;}
.fs1_c00303{font-size:37.333333pt;}
.fs0_c00303{font-size:53.333333pt;}
.fs3_c00303{font-size:64.000000pt;}
.fs2_c00303{font-size:74.666667pt;}
.y0_c00303{bottom:0.000000pt;}
.y1_c00303{bottom:36.666667pt;}
.y10_c00303{bottom:334.509067pt;}
.yf_c00303{bottom:361.181067pt;}
.ye_c00303{bottom:387.853067pt;}
.yd_c00303{bottom:441.186400pt;}
.yc_c00303{bottom:521.170400pt;}
.yb_c00303{bottom:547.842400pt;}
.ya_c00303{bottom:574.514400pt;}
.y9_c00303{bottom:601.186400pt;}
.y8_c00303{bottom:654.519733pt;}
.y7_c00303{bottom:734.498400pt;}
.y6_c00303{bottom:761.170400pt;}
.y5_c00303{bottom:787.842400pt;}
.y4_c00303{bottom:814.514400pt;}
.y3_c00303{bottom:841.186400pt;}
.y2_c00303{bottom:894.519733pt;}
.h2_c00303{height:48.000000pt;}
.h4_c00303{height:57.600000pt;}
.h3_c00303{height:69.813333pt;}
.h0_c00303{height:1122.520000pt;}
.h1_c00303{height:1122.666667pt;}
.w0_c00303{width:793.701333pt;}
.w1_c00303{width:794.000000pt;}
.x0_c00303{left:0.000000pt;}
.x2_c00303{left:80.000000pt;}
.x3_c00303{left:94.666667pt;}
.x1_c00303{left:698.381200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc04a28aa7b69d9b6e0497a8.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.160000;font-style:normal;font-weight:normal;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_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:1.161000;font-style: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);}
.m1_c00304{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls5_c00304{letter-spacing:-0.324000px;}
.ls4_c00304{letter-spacing:0.000000px;}
.ls1_c00304{letter-spacing:0.720000px;}
.ls0_c00304{letter-spacing:0.840000px;}
.ls3_c00304{letter-spacing:1.500000px;}
.ls2_c00304{letter-spacing:1.650000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00304{word-spacing:-21.276000px;}
.ws2_c00304{word-spacing:-17.640000px;}
.ws3_c00304{word-spacing:-14.850000px;}
.ws0_c00304{word-spacing:-10.200000px;}
.ws5_c00304{word-spacing:-0.840000px;}
.ws4_c00304{word-spacing:0.000000px;}
.ws9_c00304{word-spacing:0.720000px;}
.wsc_c00304{word-spacing:2.088000px;}
.ws8_c00304{word-spacing:3.672000px;}
.wsd_c00304{word-spacing:3.816000px;}
.wse_c00304{word-spacing:5.184000px;}
.ws7_c00304{word-spacing:5.688000px;}
.ws6_c00304{word-spacing:6.696000px;}
.wsa_c00304{word-spacing:8.136000px;}
.wsf_c00304{word-spacing:8.496000px;}
.wsb_c00304{word-spacing:9.432000px;}
.ws10_c00304{word-spacing:12.024000px;}
.ws11_c00304{word-spacing:16.560000px;}
._0_c00304{margin-left:-480.336600px;}
._6_c00304{margin-left:-6.480000px;}
._1_c00304{margin-left:-4.200000px;}
._3_c00304{margin-left:-2.152800px;}
._2_c00304{margin-left:-1.134000px;}
._5_c00304{width:1.105200px;}
._4_c00304{width:2.275200px;}
.fc3_c00304{color:rgb(32,32,32);}
.fc2_c00304{color:rgb(233,83,14);}
.fc1_c00304{color:rgb(232,86,17);}
.fc4_c00304{color:rgb(157,157,156);}
.fc0_c00304{color:rgb(60,60,59);}
.fs1_c00304{font-size:42.000000px;}
.fs0_c00304{font-size:60.000000px;}
.fs5_c00304{font-size:66.000000px;}
.fs4_c00304{font-size:72.000000px;}
.fs3_c00304{font-size:84.000000px;}
.fs2_c00304{font-size:108.000000px;}
.y0_c00304{bottom:0.000000px;}
.y1_c00304{bottom:41.250000px;}
.y12_c00304{bottom:346.322700px;}
.y11_c00304{bottom:376.328700px;}
.y10_c00304{bottom:406.334700px;}
.yf_c00304{bottom:466.334700px;}
.ye_c00304{bottom:556.274700px;}
.yd_c00304{bottom:586.280700px;}
.yc_c00304{bottom:616.286700px;}
.yb_c00304{bottom:646.292700px;}
.ya_c00304{bottom:676.298700px;}
.y9_c00304{bottom:706.304700px;}
.y8_c00304{bottom:736.310700px;}
.y17_c00304{bottom:736.334700px;}
.y7_c00304{bottom:766.316700px;}
.y16_c00304{bottom:766.334700px;}
.y6_c00304{bottom:796.322700px;}
.y15_c00304{bottom:796.334700px;}
.y5_c00304{bottom:826.328700px;}
.y14_c00304{bottom:826.334700px;}
.y4_c00304{bottom:856.334700px;}
.y13_c00304{bottom:856.376100px;}
.y3_c00304{bottom:916.334700px;}
.y2_c00304{bottom:1006.334700px;}
.h6_c00304{height:50.292000px;}
.h2_c00304{height:54.000000px;}
.h5_c00304{height:64.800000px;}
.h4_c00304{height:78.540000px;}
.h3_c00304{height:100.980000px;}
.h0_c00304{height:1262.835000px;}
.h1_c00304{height:1263.000000px;}
.w0_c00304{width:892.914000px;}
.w1_c00304{width:893.250000px;}
.x0_c00304{left:0.000000px;}
.x2_c00304{left:82.500000px;}
.x3_c00304{left:90.000000px;}
.x4_c00304{left:106.500000px;}
.x5_c00304{left:675.611100px;}
.x1_c00304{left:786.728700px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls5_c00304{letter-spacing:-0.288000pt;}
.ls4_c00304{letter-spacing:0.000000pt;}
.ls1_c00304{letter-spacing:0.640000pt;}
.ls0_c00304{letter-spacing:0.746667pt;}
.ls3_c00304{letter-spacing:1.333333pt;}
.ls2_c00304{letter-spacing:1.466667pt;}
.ws1_c00304{word-spacing:-18.912000pt;}
.ws2_c00304{word-spacing:-15.680000pt;}
.ws3_c00304{word-spacing:-13.200000pt;}
.ws0_c00304{word-spacing:-9.066667pt;}
.ws5_c00304{word-spacing:-0.746667pt;}
.ws4_c00304{word-spacing:0.000000pt;}
.ws9_c00304{word-spacing:0.640000pt;}
.wsc_c00304{word-spacing:1.856000pt;}
.ws8_c00304{word-spacing:3.264000pt;}
.wsd_c00304{word-spacing:3.392000pt;}
.wse_c00304{word-spacing:4.608000pt;}
.ws7_c00304{word-spacing:5.056000pt;}
.ws6_c00304{word-spacing:5.952000pt;}
.wsa_c00304{word-spacing:7.232000pt;}
.wsf_c00304{word-spacing:7.552000pt;}
.wsb_c00304{word-spacing:8.384000pt;}
.ws10_c00304{word-spacing:10.688000pt;}
.ws11_c00304{word-spacing:14.720000pt;}
._0_c00304{margin-left:-426.965867pt;}
._6_c00304{margin-left:-5.760000pt;}
._1_c00304{margin-left:-3.733333pt;}
._3_c00304{margin-left:-1.913600pt;}
._2_c00304{margin-left:-1.008000pt;}
._5_c00304{width:0.982400pt;}
._4_c00304{width:2.022400pt;}
.fs1_c00304{font-size:37.333333pt;}
.fs0_c00304{font-size:53.333333pt;}
.fs5_c00304{font-size:58.666667pt;}
.fs4_c00304{font-size:64.000000pt;}
.fs3_c00304{font-size:74.666667pt;}
.fs2_c00304{font-size:96.000000pt;}
.y0_c00304{bottom:0.000000pt;}
.y1_c00304{bottom:36.666667pt;}
.y12_c00304{bottom:307.842400pt;}
.y11_c00304{bottom:334.514400pt;}
.y10_c00304{bottom:361.186400pt;}
.yf_c00304{bottom:414.519733pt;}
.ye_c00304{bottom:494.466400pt;}
.yd_c00304{bottom:521.138400pt;}
.yc_c00304{bottom:547.810400pt;}
.yb_c00304{bottom:574.482400pt;}
.ya_c00304{bottom:601.154400pt;}
.y9_c00304{bottom:627.826400pt;}
.y8_c00304{bottom:654.498400pt;}
.y17_c00304{bottom:654.519733pt;}
.y7_c00304{bottom:681.170400pt;}
.y16_c00304{bottom:681.186400pt;}
.y6_c00304{bottom:707.842400pt;}
.y15_c00304{bottom:707.853067pt;}
.y5_c00304{bottom:734.514400pt;}
.y14_c00304{bottom:734.519733pt;}
.y4_c00304{bottom:761.186400pt;}
.y13_c00304{bottom:761.223200pt;}
.y3_c00304{bottom:814.519733pt;}
.y2_c00304{bottom:894.519733pt;}
.h6_c00304{height:44.704000pt;}
.h2_c00304{height:48.000000pt;}
.h5_c00304{height:57.600000pt;}
.h4_c00304{height:69.813333pt;}
.h3_c00304{height:89.760000pt;}
.h0_c00304{height:1122.520000pt;}
.h1_c00304{height:1122.666667pt;}
.w0_c00304{width:793.701333pt;}
.w1_c00304{width:794.000000pt;}
.x0_c00304{left:0.000000pt;}
.x2_c00304{left:73.333333pt;}
.x3_c00304{left:80.000000pt;}
.x4_c00304{left:94.666667pt;}
.x5_c00304{left:600.543200pt;}
.x1_c00304{left:699.314400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a378ba6f218df5456748c66d.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00305{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls1_c00305{letter-spacing:0.000000px;}
.ls0_c00305{letter-spacing:0.720000px;}
.ls2_c00305{letter-spacing:0.840000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00305{word-spacing:-10.200000px;}
.ws6_c00305{word-spacing:-2.304000px;}
.wsa_c00305{word-spacing:-0.936000px;}
.ws2_c00305{word-spacing:-0.840000px;}
.ws9_c00305{word-spacing:-0.072000px;}
.ws1_c00305{word-spacing:0.000000px;}
.ws4_c00305{word-spacing:0.360000px;}
.ws8_c00305{word-spacing:2.088000px;}
.ws7_c00305{word-spacing:3.672000px;}
.ws3_c00305{word-spacing:9.648000px;}
.ws5_c00305{word-spacing:14.184000px;}
._0_c00305{margin-left:-480.336600px;}
._4_c00305{margin-left:-5.760000px;}
._1_c00305{margin-left:-4.200000px;}
._3_c00305{margin-left:-2.973600px;}
._2_c00305{margin-left:-1.432800px;}
.fc2_c00305{color:rgb(32,32,32);}
.fc1_c00305{color:rgb(232,86,17);}
.fc0_c00305{color:rgb(60,60,59);}
.fs1_c00305{font-size:42.000000px;}
.fs0_c00305{font-size:60.000000px;}
.fs3_c00305{font-size:72.000000px;}
.fs2_c00305{font-size:84.000000px;}
.y0_c00305{bottom:0.000000px;}
.y1_c00305{bottom:41.250000px;}
.yf_c00305{bottom:406.322700px;}
.ye_c00305{bottom:436.328700px;}
.yd_c00305{bottom:466.334700px;}
.yc_c00305{bottom:526.334700px;}
.yb_c00305{bottom:616.316700px;}
.ya_c00305{bottom:646.322700px;}
.y9_c00305{bottom:676.328700px;}
.y8_c00305{bottom:706.334700px;}
.y7_c00305{bottom:766.334700px;}
.y6_c00305{bottom:856.316700px;}
.y5_c00305{bottom:886.322700px;}
.y4_c00305{bottom:916.328700px;}
.y3_c00305{bottom:946.334700px;}
.y2_c00305{bottom:1006.334700px;}
.h2_c00305{height:54.000000px;}
.h4_c00305{height:64.800000px;}
.h3_c00305{height:78.540000px;}
.h0_c00305{height:1262.835000px;}
.h1_c00305{height:1263.000000px;}
.w0_c00305{width:892.914000px;}
.w1_c00305{width:893.250000px;}
.x0_c00305{left:0.000000px;}
.x2_c00305{left:90.000000px;}
.x3_c00305{left:106.500000px;}
.x1_c00305{left:785.603700px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls1_c00305{letter-spacing:0.000000pt;}
.ls0_c00305{letter-spacing:0.640000pt;}
.ls2_c00305{letter-spacing:0.746667pt;}
.ws0_c00305{word-spacing:-9.066667pt;}
.ws6_c00305{word-spacing:-2.048000pt;}
.wsa_c00305{word-spacing:-0.832000pt;}
.ws2_c00305{word-spacing:-0.746667pt;}
.ws9_c00305{word-spacing:-0.064000pt;}
.ws1_c00305{word-spacing:0.000000pt;}
.ws4_c00305{word-spacing:0.320000pt;}
.ws8_c00305{word-spacing:1.856000pt;}
.ws7_c00305{word-spacing:3.264000pt;}
.ws3_c00305{word-spacing:8.576000pt;}
.ws5_c00305{word-spacing:12.608000pt;}
._0_c00305{margin-left:-426.965867pt;}
._4_c00305{margin-left:-5.120000pt;}
._1_c00305{margin-left:-3.733333pt;}
._3_c00305{margin-left:-2.643200pt;}
._2_c00305{margin-left:-1.273600pt;}
.fs1_c00305{font-size:37.333333pt;}
.fs0_c00305{font-size:53.333333pt;}
.fs3_c00305{font-size:64.000000pt;}
.fs2_c00305{font-size:74.666667pt;}
.y0_c00305{bottom:0.000000pt;}
.y1_c00305{bottom:36.666667pt;}
.yf_c00305{bottom:361.175733pt;}
.ye_c00305{bottom:387.847733pt;}
.yd_c00305{bottom:414.519733pt;}
.yc_c00305{bottom:467.853067pt;}
.yb_c00305{bottom:547.837067pt;}
.ya_c00305{bottom:574.509067pt;}
.y9_c00305{bottom:601.181067pt;}
.y8_c00305{bottom:627.853067pt;}
.y7_c00305{bottom:681.186400pt;}
.y6_c00305{bottom:761.170400pt;}
.y5_c00305{bottom:787.842400pt;}
.y4_c00305{bottom:814.514400pt;}
.y3_c00305{bottom:841.186400pt;}
.y2_c00305{bottom:894.519733pt;}
.h2_c00305{height:48.000000pt;}
.h4_c00305{height:57.600000pt;}
.h3_c00305{height:69.813333pt;}
.h0_c00305{height:1122.520000pt;}
.h1_c00305{height:1122.666667pt;}
.w0_c00305{width:793.701333pt;}
.w1_c00305{width:794.000000pt;}
.x0_c00305{left:0.000000pt;}
.x2_c00305{left:80.000000pt;}
.x3_c00305{left:94.666667pt;}
.x1_c00305{left:698.314400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00306;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00306;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00306;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:1.155000;font-style: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);}
.m1_c00306{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls2_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:0.864000px;}
.ls1_c00306{letter-spacing:1.200000px;}
.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;}
}
.ws2_c00306{word-spacing:-25.200000px;}
.ws1_c00306{word-spacing:-13.104000px;}
.ws0_c00306{word-spacing:-10.200000px;}
.ws4_c00306{word-spacing:-3.816000px;}
.ws5_c00306{word-spacing:-3.240000px;}
.ws6_c00306{word-spacing:-0.864000px;}
.ws3_c00306{word-spacing:0.000000px;}
._0_c00306{margin-left:-480.337200px;}
._5_c00306{margin-left:-9.000000px;}
._4_c00306{margin-left:-6.480000px;}
._1_c00306{margin-left:-4.200000px;}
._6_c00306{margin-left:-3.120000px;}
._2_c00306{margin-left:-1.440000px;}
._3_c00306{width:3.816000px;}
.fc3_c00306{color:rgb(255,255,255);}
.fc2_c00306{color:rgb(233,83,14);}
.fc1_c00306{color:rgb(232,86,17);}
.fc0_c00306{color:rgb(60,60,59);}
.fs1_c00306{font-size:42.000000px;}
.fs0_c00306{font-size:60.000000px;}
.fs3_c00306{font-size:72.000000px;}
.fs4_c00306{font-size:120.000000px;}
.fs2_c00306{font-size:360.000000px;}
.y0_c00306{bottom:0.000000px;}
.y1_c00306{bottom:41.250000px;}
.y9_c00306{bottom:574.310700px;}
.y8_c00306{bottom:595.316700px;}
.y7_c00306{bottom:616.322700px;}
.y6_c00306{bottom:664.328700px;}
.y5_c00306{bottom:685.334700px;}
.y4_c00306{bottom:706.340700px;}
.y3_c00306{bottom:752.834700px;}
.yd_c00306{bottom:916.334700px;}
.yc_c00306{bottom:946.334700px;}
.yb_c00306{bottom:976.334700px;}
.ya_c00306{bottom:1006.334700px;}
.y2_c00306{bottom:1093.526700px;}
.h2_c00306{height:54.000000px;}
.h5_c00306{height:64.800000px;}
.h4_c00306{height:66.456000px;}
.h6_c00306{height:112.200000px;}
.h3_c00306{height:324.000000px;}
.h0_c00306{height:1262.835000px;}
.h1_c00306{height:1263.000000px;}
.w0_c00306{width:892.914000px;}
.w1_c00306{width:893.250000px;}
.x0_c00306{left:0.000000px;}
.x2_c00306{left:81.290250px;}
.x3_c00306{left:82.393650px;}
.x5_c00306{left:112.287450px;}
.x4_c00306{left:127.393650px;}
.x1_c00306{left:787.703850px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls2_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:0.768000pt;}
.ls1_c00306{letter-spacing:1.066667pt;}
.ws2_c00306{word-spacing:-22.400000pt;}
.ws1_c00306{word-spacing:-11.648000pt;}
.ws0_c00306{word-spacing:-9.066667pt;}
.ws4_c00306{word-spacing:-3.392000pt;}
.ws5_c00306{word-spacing:-2.880000pt;}
.ws6_c00306{word-spacing:-0.768000pt;}
.ws3_c00306{word-spacing:0.000000pt;}
._0_c00306{margin-left:-426.966400pt;}
._5_c00306{margin-left:-8.000000pt;}
._4_c00306{margin-left:-5.760000pt;}
._1_c00306{margin-left:-3.733333pt;}
._6_c00306{margin-left:-2.773333pt;}
._2_c00306{margin-left:-1.280000pt;}
._3_c00306{width:3.392000pt;}
.fs1_c00306{font-size:37.333333pt;}
.fs0_c00306{font-size:53.333333pt;}
.fs3_c00306{font-size:64.000000pt;}
.fs4_c00306{font-size:106.666667pt;}
.fs2_c00306{font-size:320.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y1_c00306{bottom:36.666667pt;}
.y9_c00306{bottom:510.498400pt;}
.y8_c00306{bottom:529.170400pt;}
.y7_c00306{bottom:547.842400pt;}
.y6_c00306{bottom:590.514400pt;}
.y5_c00306{bottom:609.186400pt;}
.y4_c00306{bottom:627.858400pt;}
.y3_c00306{bottom:669.186400pt;}
.yd_c00306{bottom:814.519733pt;}
.yc_c00306{bottom:841.186400pt;}
.yb_c00306{bottom:867.853067pt;}
.ya_c00306{bottom:894.519733pt;}
.y2_c00306{bottom:972.023733pt;}
.h2_c00306{height:48.000000pt;}
.h5_c00306{height:57.600000pt;}
.h4_c00306{height:59.072000pt;}
.h6_c00306{height:99.733333pt;}
.h3_c00306{height:288.000000pt;}
.h0_c00306{height:1122.520000pt;}
.h1_c00306{height:1122.666667pt;}
.w0_c00306{width:793.701333pt;}
.w1_c00306{width:794.000000pt;}
.x0_c00306{left:0.000000pt;}
.x2_c00306{left:72.258000pt;}
.x3_c00306{left:73.238800pt;}
.x5_c00306{left:99.811067pt;}
.x4_c00306{left:113.238800pt;}
.x1_c00306{left:700.181200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.161000;font-style: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);}
.m1_c00307{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls5_c00307{letter-spacing:-0.540000px;}
.ls4_c00307{letter-spacing:0.000000px;}
.ls0_c00307{letter-spacing:0.720000px;}
.ls1_c00307{letter-spacing:0.840000px;}
.ls3_c00307{letter-spacing:1.500000px;}
.ls2_c00307{letter-spacing:1.650000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00307{word-spacing:-21.060000px;}
.ws2_c00307{word-spacing:-17.640000px;}
.ws3_c00307{word-spacing:-11.700000px;}
.ws0_c00307{word-spacing:-10.200000px;}
.ws7_c00307{word-spacing:-4.176000px;}
.wsc_c00307{word-spacing:-1.512000px;}
.ws10_c00307{word-spacing:-1.500000px;}
.ws5_c00307{word-spacing:-0.840000px;}
.wse_c00307{word-spacing:-0.504000px;}
.ws4_c00307{word-spacing:0.000000px;}
.ws8_c00307{word-spacing:2.232000px;}
.wsa_c00307{word-spacing:5.400000px;}
.wsb_c00307{word-spacing:6.552000px;}
.wsf_c00307{word-spacing:9.288000px;}
.ws9_c00307{word-spacing:10.944000px;}
.wsd_c00307{word-spacing:11.736000px;}
.ws6_c00307{word-spacing:25.416000px;}
._0_c00307{margin-left:-480.337200px;}
._6_c00307{margin-left:-6.264000px;}
._1_c00307{margin-left:-4.200000px;}
._5_c00307{margin-left:-2.613600px;}
._2_c00307{margin-left:-1.440000px;}
._4_c00307{width:1.065600px;}
._3_c00307{width:3.326400px;}
.fc3_c00307{color:rgb(32,32,32);}
.fc2_c00307{color:rgb(233,83,14);}
.fc1_c00307{color:rgb(232,86,17);}
.fc4_c00307{color:rgb(157,157,156);}
.fc0_c00307{color:rgb(60,60,59);}
.fs1_c00307{font-size:42.000000px;}
.fs0_c00307{font-size:60.000000px;}
.fs5_c00307{font-size:66.000000px;}
.fs4_c00307{font-size:72.000000px;}
.fs3_c00307{font-size:84.000000px;}
.fs2_c00307{font-size:108.000000px;}
.y0_c00307{bottom:0.000000px;}
.y1_c00307{bottom:41.250000px;}
.y10_c00307{bottom:406.316700px;}
.yf_c00307{bottom:436.322700px;}
.ye_c00307{bottom:466.328700px;}
.yd_c00307{bottom:496.334700px;}
.yc_c00307{bottom:556.334700px;}
.yb_c00307{bottom:646.292700px;}
.ya_c00307{bottom:676.298700px;}
.y9_c00307{bottom:706.304700px;}
.y8_c00307{bottom:736.310700px;}
.y15_c00307{bottom:736.334700px;}
.y7_c00307{bottom:766.316700px;}
.y14_c00307{bottom:766.334700px;}
.y6_c00307{bottom:796.322700px;}
.y13_c00307{bottom:796.334700px;}
.y5_c00307{bottom:826.328700px;}
.y12_c00307{bottom:826.334700px;}
.y4_c00307{bottom:856.334700px;}
.y11_c00307{bottom:856.376100px;}
.y3_c00307{bottom:916.334700px;}
.y2_c00307{bottom:1006.334700px;}
.h6_c00307{height:50.292000px;}
.h2_c00307{height:54.000000px;}
.h5_c00307{height:64.800000px;}
.h4_c00307{height:78.540000px;}
.h3_c00307{height:100.980000px;}
.h0_c00307{height:1262.835000px;}
.h1_c00307{height:1263.000000px;}
.w0_c00307{width:892.914000px;}
.w1_c00307{width:893.250000px;}
.x0_c00307{left:0.000000px;}
.x2_c00307{left:82.500000px;}
.x3_c00307{left:90.000000px;}
.x4_c00307{left:106.500000px;}
.x5_c00307{left:675.611100px;}
.x1_c00307{left:785.678850px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls5_c00307{letter-spacing:-0.480000pt;}
.ls4_c00307{letter-spacing:0.000000pt;}
.ls0_c00307{letter-spacing:0.640000pt;}
.ls1_c00307{letter-spacing:0.746667pt;}
.ls3_c00307{letter-spacing:1.333333pt;}
.ls2_c00307{letter-spacing:1.466667pt;}
.ws1_c00307{word-spacing:-18.720000pt;}
.ws2_c00307{word-spacing:-15.680000pt;}
.ws3_c00307{word-spacing:-10.400000pt;}
.ws0_c00307{word-spacing:-9.066667pt;}
.ws7_c00307{word-spacing:-3.712000pt;}
.wsc_c00307{word-spacing:-1.344000pt;}
.ws10_c00307{word-spacing:-1.333333pt;}
.ws5_c00307{word-spacing:-0.746667pt;}
.wse_c00307{word-spacing:-0.448000pt;}
.ws4_c00307{word-spacing:0.000000pt;}
.ws8_c00307{word-spacing:1.984000pt;}
.wsa_c00307{word-spacing:4.800000pt;}
.wsb_c00307{word-spacing:5.824000pt;}
.wsf_c00307{word-spacing:8.256000pt;}
.ws9_c00307{word-spacing:9.728000pt;}
.wsd_c00307{word-spacing:10.432000pt;}
.ws6_c00307{word-spacing:22.592000pt;}
._0_c00307{margin-left:-426.966400pt;}
._6_c00307{margin-left:-5.568000pt;}
._1_c00307{margin-left:-3.733333pt;}
._5_c00307{margin-left:-2.323200pt;}
._2_c00307{margin-left:-1.280000pt;}
._4_c00307{width:0.947200pt;}
._3_c00307{width:2.956800pt;}
.fs1_c00307{font-size:37.333333pt;}
.fs0_c00307{font-size:53.333333pt;}
.fs5_c00307{font-size:58.666667pt;}
.fs4_c00307{font-size:64.000000pt;}
.fs3_c00307{font-size:74.666667pt;}
.fs2_c00307{font-size:96.000000pt;}
.y0_c00307{bottom:0.000000pt;}
.y1_c00307{bottom:36.666667pt;}
.y10_c00307{bottom:361.170400pt;}
.yf_c00307{bottom:387.842400pt;}
.ye_c00307{bottom:414.514400pt;}
.yd_c00307{bottom:441.186400pt;}
.yc_c00307{bottom:494.519733pt;}
.yb_c00307{bottom:574.482400pt;}
.ya_c00307{bottom:601.154400pt;}
.y9_c00307{bottom:627.826400pt;}
.y8_c00307{bottom:654.498400pt;}
.y15_c00307{bottom:654.519733pt;}
.y7_c00307{bottom:681.170400pt;}
.y14_c00307{bottom:681.186400pt;}
.y6_c00307{bottom:707.842400pt;}
.y13_c00307{bottom:707.853067pt;}
.y5_c00307{bottom:734.514400pt;}
.y12_c00307{bottom:734.519733pt;}
.y4_c00307{bottom:761.186400pt;}
.y11_c00307{bottom:761.223200pt;}
.y3_c00307{bottom:814.519733pt;}
.y2_c00307{bottom:894.519733pt;}
.h6_c00307{height:44.704000pt;}
.h2_c00307{height:48.000000pt;}
.h5_c00307{height:57.600000pt;}
.h4_c00307{height:69.813333pt;}
.h3_c00307{height:89.760000pt;}
.h0_c00307{height:1122.520000pt;}
.h1_c00307{height:1122.666667pt;}
.w0_c00307{width:793.701333pt;}
.w1_c00307{width:794.000000pt;}
.x0_c00307{left:0.000000pt;}
.x2_c00307{left:73.333333pt;}
.x3_c00307{left:80.000000pt;}
.x4_c00307{left:94.666667pt;}
.x5_c00307{left:600.543200pt;}
.x1_c00307{left:698.381200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.199000;font-style: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);}
.m1_c00308{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls1_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:0.720000px;}
.ls2_c00308{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsd_c00308{word-spacing:-2.880000px;}
.ws10_c00308{word-spacing:-2.592000px;}
.wsc_c00308{word-spacing:-1.296000px;}
.ws2_c00308{word-spacing:-0.840000px;}
.wse_c00308{word-spacing:-0.720000px;}
.ws3_c00308{word-spacing:-0.216000px;}
.ws1_c00308{word-spacing:0.000000px;}
.wsf_c00308{word-spacing:0.360000px;}
.ws9_c00308{word-spacing:1.872000px;}
.ws6_c00308{word-spacing:2.160000px;}
.wsa_c00308{word-spacing:3.672000px;}
.ws8_c00308{word-spacing:4.464000px;}
.ws4_c00308{word-spacing:7.416000px;}
.wsb_c00308{word-spacing:8.280000px;}
.ws7_c00308{word-spacing:10.152000px;}
.ws5_c00308{word-spacing:27.432000px;}
._0_c00308{margin-left:-480.336600px;}
._5_c00308{margin-left:-7.096800px;}
._1_c00308{margin-left:-4.200000px;}
._3_c00308{margin-left:-2.683200px;}
._2_c00308{margin-left:-1.440000px;}
._4_c00308{width:1.123200px;}
.fc2_c00308{color:rgb(32,32,32);}
.fc1_c00308{color:rgb(232,86,17);}
.fc0_c00308{color:rgb(60,60,59);}
.fs1_c00308{font-size:42.000000px;}
.fs0_c00308{font-size:60.000000px;}
.fs3_c00308{font-size:72.000000px;}
.fs2_c00308{font-size:84.000000px;}
.y0_c00308{bottom:0.000000px;}
.y1_c00308{bottom:41.250000px;}
.y16_c00308{bottom:196.310700px;}
.y15_c00308{bottom:226.316700px;}
.y14_c00308{bottom:256.322700px;}
.y13_c00308{bottom:286.328700px;}
.y12_c00308{bottom:316.334700px;}
.y11_c00308{bottom:376.334700px;}
.y10_c00308{bottom:466.310700px;}
.yf_c00308{bottom:496.316700px;}
.ye_c00308{bottom:526.322700px;}
.yd_c00308{bottom:556.328700px;}
.yc_c00308{bottom:586.334700px;}
.yb_c00308{bottom:646.334700px;}
.ya_c00308{bottom:736.292700px;}
.y9_c00308{bottom:766.298700px;}
.y8_c00308{bottom:796.304700px;}
.y7_c00308{bottom:826.310700px;}
.y6_c00308{bottom:856.316700px;}
.y5_c00308{bottom:886.322700px;}
.y4_c00308{bottom:916.328700px;}
.y3_c00308{bottom:946.334700px;}
.y2_c00308{bottom:1006.334700px;}
.h2_c00308{height:54.000000px;}
.h4_c00308{height:64.800000px;}
.h3_c00308{height:78.540000px;}
.h0_c00308{height:1262.835000px;}
.h1_c00308{height:1263.000000px;}
.w0_c00308{width:892.914000px;}
.w1_c00308{width:893.250000px;}
.x0_c00308{left:0.000000px;}
.x2_c00308{left:90.000000px;}
.x3_c00308{left:106.500000px;}
.x1_c00308{left:785.603700px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls1_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:0.640000pt;}
.ls2_c00308{letter-spacing:0.746667pt;}
.ws0_c00308{word-spacing:-9.066667pt;}
.wsd_c00308{word-spacing:-2.560000pt;}
.ws10_c00308{word-spacing:-2.304000pt;}
.wsc_c00308{word-spacing:-1.152000pt;}
.ws2_c00308{word-spacing:-0.746667pt;}
.wse_c00308{word-spacing:-0.640000pt;}
.ws3_c00308{word-spacing:-0.192000pt;}
.ws1_c00308{word-spacing:0.000000pt;}
.wsf_c00308{word-spacing:0.320000pt;}
.ws9_c00308{word-spacing:1.664000pt;}
.ws6_c00308{word-spacing:1.920000pt;}
.wsa_c00308{word-spacing:3.264000pt;}
.ws8_c00308{word-spacing:3.968000pt;}
.ws4_c00308{word-spacing:6.592000pt;}
.wsb_c00308{word-spacing:7.360000pt;}
.ws7_c00308{word-spacing:9.024000pt;}
.ws5_c00308{word-spacing:24.384000pt;}
._0_c00308{margin-left:-426.965867pt;}
._5_c00308{margin-left:-6.308267pt;}
._1_c00308{margin-left:-3.733333pt;}
._3_c00308{margin-left:-2.385067pt;}
._2_c00308{margin-left:-1.280000pt;}
._4_c00308{width:0.998400pt;}
.fs1_c00308{font-size:37.333333pt;}
.fs0_c00308{font-size:53.333333pt;}
.fs3_c00308{font-size:64.000000pt;}
.fs2_c00308{font-size:74.666667pt;}
.y0_c00308{bottom:0.000000pt;}
.y1_c00308{bottom:36.666667pt;}
.y16_c00308{bottom:174.498400pt;}
.y15_c00308{bottom:201.170400pt;}
.y14_c00308{bottom:227.842400pt;}
.y13_c00308{bottom:254.514400pt;}
.y12_c00308{bottom:281.186400pt;}
.y11_c00308{bottom:334.519733pt;}
.y10_c00308{bottom:414.498400pt;}
.yf_c00308{bottom:441.170400pt;}
.ye_c00308{bottom:467.842400pt;}
.yd_c00308{bottom:494.514400pt;}
.yc_c00308{bottom:521.186400pt;}
.yb_c00308{bottom:574.519733pt;}
.ya_c00308{bottom:654.482400pt;}
.y9_c00308{bottom:681.154400pt;}
.y8_c00308{bottom:707.826400pt;}
.y7_c00308{bottom:734.498400pt;}
.y6_c00308{bottom:761.170400pt;}
.y5_c00308{bottom:787.842400pt;}
.y4_c00308{bottom:814.514400pt;}
.y3_c00308{bottom:841.186400pt;}
.y2_c00308{bottom:894.519733pt;}
.h2_c00308{height:48.000000pt;}
.h4_c00308{height:57.600000pt;}
.h3_c00308{height:69.813333pt;}
.h0_c00308{height:1122.520000pt;}
.h1_c00308{height:1122.666667pt;}
.w0_c00308{width:793.701333pt;}
.w1_c00308{width:794.000000pt;}
.x0_c00308{left:0.000000pt;}
.x2_c00308{left:80.000000pt;}
.x3_c00308{left:94.666667pt;}
.x1_c00308{left:698.314400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_404726e6b27da81fd5ea9fff.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.160000;font-style:normal;font-weight:normal;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_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:1.161000;font-style: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);}
.m1_c00309{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls5_c00309{letter-spacing:-0.324000px;}
.ls4_c00309{letter-spacing:0.000000px;}
.ls1_c00309{letter-spacing:0.720000px;}
.ls0_c00309{letter-spacing:0.840000px;}
.ls3_c00309{letter-spacing:1.500000px;}
.ls2_c00309{letter-spacing:1.650000px;}
.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:-21.276000px;}
.ws2_c00309{word-spacing:-17.640000px;}
.ws3_c00309{word-spacing:-14.850000px;}
.ws4_c00309{word-spacing:-11.700000px;}
.ws0_c00309{word-spacing:-10.200000px;}
.wse_c00309{word-spacing:-6.624000px;}
.wsf_c00309{word-spacing:-5.976000px;}
.ws12_c00309{word-spacing:-3.960000px;}
.ws16_c00309{word-spacing:-1.500000px;}
.ws6_c00309{word-spacing:-0.840000px;}
.ws5_c00309{word-spacing:0.000000px;}
.ws11_c00309{word-spacing:1.152000px;}
.wsb_c00309{word-spacing:1.440000px;}
.ws13_c00309{word-spacing:1.944000px;}
.ws8_c00309{word-spacing:2.376000px;}
.ws9_c00309{word-spacing:5.400000px;}
.ws10_c00309{word-spacing:5.544000px;}
.ws14_c00309{word-spacing:5.832000px;}
.ws15_c00309{word-spacing:5.976000px;}
.wsa_c00309{word-spacing:9.432000px;}
.wsc_c00309{word-spacing:12.240000px;}
.ws7_c00309{word-spacing:13.320000px;}
.wsd_c00309{word-spacing:13.752000px;}
._0_c00309{margin-left:-480.337800px;}
._4_c00309{margin-left:-5.752800px;}
._1_c00309{margin-left:-4.200000px;}
._3_c00309{margin-left:-2.160000px;}
._2_c00309{margin-left:-1.134000px;}
._8_c00309{width:1.008000px;}
._7_c00309{width:2.037600px;}
._6_c00309{width:3.873600px;}
._5_c00309{width:4.939200px;}
.fc3_c00309{color:rgb(32,32,32);}
.fc2_c00309{color:rgb(233,83,14);}
.fc1_c00309{color:rgb(232,86,17);}
.fc4_c00309{color:rgb(157,157,156);}
.fc0_c00309{color:rgb(60,60,59);}
.fs1_c00309{font-size:42.000000px;}
.fs0_c00309{font-size:60.000000px;}
.fs6_c00309{font-size:63.000000px;}
.fs5_c00309{font-size:66.000000px;}
.fs4_c00309{font-size:72.000000px;}
.fs3_c00309{font-size:84.000000px;}
.fs2_c00309{font-size:108.000000px;}
.y0_c00309{bottom:0.000000px;}
.y1_c00309{bottom:41.250000px;}
.y14_c00309{bottom:286.316700px;}
.y13_c00309{bottom:316.322700px;}
.y12_c00309{bottom:346.328700px;}
.y11_c00309{bottom:376.334700px;}
.y10_c00309{bottom:436.334700px;}
.yf_c00309{bottom:526.268700px;}
.ye_c00309{bottom:556.274700px;}
.yd_c00309{bottom:586.280700px;}
.yc_c00309{bottom:616.286700px;}
.yb_c00309{bottom:646.292700px;}
.ya_c00309{bottom:676.298700px;}
.y9_c00309{bottom:706.304700px;}
.y1a_c00309{bottom:706.334700px;}
.y8_c00309{bottom:736.310700px;}
.y19_c00309{bottom:736.334700px;}
.y7_c00309{bottom:766.316700px;}
.y18_c00309{bottom:766.334700px;}
.y6_c00309{bottom:796.322700px;}
.y17_c00309{bottom:796.334700px;}
.y5_c00309{bottom:826.328700px;}
.y16_c00309{bottom:826.334700px;}
.y4_c00309{bottom:856.334700px;}
.y15_c00309{bottom:856.376100px;}
.y3_c00309{bottom:916.334700px;}
.y2_c00309{bottom:1006.334700px;}
.h6_c00309{height:50.292000px;}
.h2_c00309{height:54.000000px;}
.h7_c00309{height:56.700000px;}
.h5_c00309{height:64.800000px;}
.h4_c00309{height:78.540000px;}
.h3_c00309{height:100.980000px;}
.h0_c00309{height:1262.835000px;}
.h1_c00309{height:1263.000000px;}
.w0_c00309{width:892.914000px;}
.w1_c00309{width:893.250000px;}
.x0_c00309{left:0.000000px;}
.x2_c00309{left:82.500000px;}
.x3_c00309{left:90.000000px;}
.x4_c00309{left:106.500000px;}
.x5_c00309{left:675.611100px;}
.x1_c00309{left:789.279000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls5_c00309{letter-spacing:-0.288000pt;}
.ls4_c00309{letter-spacing:0.000000pt;}
.ls1_c00309{letter-spacing:0.640000pt;}
.ls0_c00309{letter-spacing:0.746667pt;}
.ls3_c00309{letter-spacing:1.333333pt;}
.ls2_c00309{letter-spacing:1.466667pt;}
.ws1_c00309{word-spacing:-18.912000pt;}
.ws2_c00309{word-spacing:-15.680000pt;}
.ws3_c00309{word-spacing:-13.200000pt;}
.ws4_c00309{word-spacing:-10.400000pt;}
.ws0_c00309{word-spacing:-9.066667pt;}
.wse_c00309{word-spacing:-5.888000pt;}
.wsf_c00309{word-spacing:-5.312000pt;}
.ws12_c00309{word-spacing:-3.520000pt;}
.ws16_c00309{word-spacing:-1.333333pt;}
.ws6_c00309{word-spacing:-0.746667pt;}
.ws5_c00309{word-spacing:0.000000pt;}
.ws11_c00309{word-spacing:1.024000pt;}
.wsb_c00309{word-spacing:1.280000pt;}
.ws13_c00309{word-spacing:1.728000pt;}
.ws8_c00309{word-spacing:2.112000pt;}
.ws9_c00309{word-spacing:4.800000pt;}
.ws10_c00309{word-spacing:4.928000pt;}
.ws14_c00309{word-spacing:5.184000pt;}
.ws15_c00309{word-spacing:5.312000pt;}
.wsa_c00309{word-spacing:8.384000pt;}
.wsc_c00309{word-spacing:10.880000pt;}
.ws7_c00309{word-spacing:11.840000pt;}
.wsd_c00309{word-spacing:12.224000pt;}
._0_c00309{margin-left:-426.966933pt;}
._4_c00309{margin-left:-5.113600pt;}
._1_c00309{margin-left:-3.733333pt;}
._3_c00309{margin-left:-1.920000pt;}
._2_c00309{margin-left:-1.008000pt;}
._8_c00309{width:0.896000pt;}
._7_c00309{width:1.811200pt;}
._6_c00309{width:3.443200pt;}
._5_c00309{width:4.390400pt;}
.fs1_c00309{font-size:37.333333pt;}
.fs0_c00309{font-size:53.333333pt;}
.fs6_c00309{font-size:56.000000pt;}
.fs5_c00309{font-size:58.666667pt;}
.fs4_c00309{font-size:64.000000pt;}
.fs3_c00309{font-size:74.666667pt;}
.fs2_c00309{font-size:96.000000pt;}
.y0_c00309{bottom:0.000000pt;}
.y1_c00309{bottom:36.666667pt;}
.y14_c00309{bottom:254.503733pt;}
.y13_c00309{bottom:281.175733pt;}
.y12_c00309{bottom:307.847733pt;}
.y11_c00309{bottom:334.519733pt;}
.y10_c00309{bottom:387.853067pt;}
.yf_c00309{bottom:467.794400pt;}
.ye_c00309{bottom:494.466400pt;}
.yd_c00309{bottom:521.138400pt;}
.yc_c00309{bottom:547.810400pt;}
.yb_c00309{bottom:574.482400pt;}
.ya_c00309{bottom:601.154400pt;}
.y9_c00309{bottom:627.826400pt;}
.y1a_c00309{bottom:627.853067pt;}
.y8_c00309{bottom:654.498400pt;}
.y19_c00309{bottom:654.519733pt;}
.y7_c00309{bottom:681.170400pt;}
.y18_c00309{bottom:681.186400pt;}
.y6_c00309{bottom:707.842400pt;}
.y17_c00309{bottom:707.853067pt;}
.y5_c00309{bottom:734.514400pt;}
.y16_c00309{bottom:734.519733pt;}
.y4_c00309{bottom:761.186400pt;}
.y15_c00309{bottom:761.223200pt;}
.y3_c00309{bottom:814.519733pt;}
.y2_c00309{bottom:894.519733pt;}
.h6_c00309{height:44.704000pt;}
.h2_c00309{height:48.000000pt;}
.h7_c00309{height:50.400000pt;}
.h5_c00309{height:57.600000pt;}
.h4_c00309{height:69.813333pt;}
.h3_c00309{height:89.760000pt;}
.h0_c00309{height:1122.520000pt;}
.h1_c00309{height:1122.666667pt;}
.w0_c00309{width:793.701333pt;}
.w1_c00309{width:794.000000pt;}
.x0_c00309{left:0.000000pt;}
.x2_c00309{left:73.333333pt;}
.x3_c00309{left:80.000000pt;}
.x4_c00309{left:94.666667pt;}
.x5_c00309{left:600.543200pt;}
.x1_c00309{left:701.581333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_404726e6b27da81fd5ea9fff.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.199000;font-style: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);}
.m1_c00310{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls1_c00310{letter-spacing:0.000000px;}
.ls0_c00310{letter-spacing:0.720000px;}
.ls2_c00310{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsb_c00310{word-spacing:-5.760000px;}
.wsd_c00310{word-spacing:-4.320000px;}
.wsf_c00310{word-spacing:-1.656000px;}
.ws2_c00310{word-spacing:-0.840000px;}
.wsc_c00310{word-spacing:-0.576000px;}
.ws6_c00310{word-spacing:-0.072000px;}
.ws1_c00310{word-spacing:0.000000px;}
.ws3_c00310{word-spacing:0.864000px;}
.ws9_c00310{word-spacing:1.368000px;}
.wsa_c00310{word-spacing:4.536000px;}
.ws4_c00310{word-spacing:7.560000px;}
.ws7_c00310{word-spacing:9.792000px;}
.ws8_c00310{word-spacing:10.008000px;}
.wse_c00310{word-spacing:10.512000px;}
.ws5_c00310{word-spacing:12.528000px;}
._0_c00310{margin-left:-480.337800px;}
._3_c00310{margin-left:-6.494400px;}
._1_c00310{margin-left:-4.200000px;}
._4_c00310{margin-left:-2.899200px;}
._2_c00310{margin-left:-1.440000px;}
._6_c00310{width:1.164000px;}
._5_c00310{width:3.628800px;}
.fc2_c00310{color:rgb(32,32,32);}
.fc1_c00310{color:rgb(232,86,17);}
.fc0_c00310{color:rgb(60,60,59);}
.fs1_c00310{font-size:42.000000px;}
.fs0_c00310{font-size:60.000000px;}
.fs3_c00310{font-size:72.000000px;}
.fs2_c00310{font-size:84.000000px;}
.y0_c00310{bottom:0.000000px;}
.y1_c00310{bottom:41.250000px;}
.y13_c00310{bottom:286.310700px;}
.y12_c00310{bottom:316.316700px;}
.y11_c00310{bottom:346.322700px;}
.y10_c00310{bottom:376.328700px;}
.yf_c00310{bottom:406.334700px;}
.ye_c00310{bottom:466.334700px;}
.yd_c00310{bottom:556.316700px;}
.yc_c00310{bottom:586.322700px;}
.yb_c00310{bottom:616.328700px;}
.ya_c00310{bottom:646.334700px;}
.y9_c00310{bottom:706.334700px;}
.y8_c00310{bottom:796.304700px;}
.y7_c00310{bottom:826.310700px;}
.y6_c00310{bottom:856.316700px;}
.y5_c00310{bottom:886.322700px;}
.y4_c00310{bottom:916.328700px;}
.y3_c00310{bottom:946.334700px;}
.y2_c00310{bottom:1006.334700px;}
.h2_c00310{height:54.000000px;}
.h4_c00310{height:64.800000px;}
.h3_c00310{height:78.540000px;}
.h0_c00310{height:1262.835000px;}
.h1_c00310{height:1263.000000px;}
.w0_c00310{width:892.914000px;}
.w1_c00310{width:893.250000px;}
.x0_c00310{left:0.000000px;}
.x2_c00310{left:90.000000px;}
.x3_c00310{left:106.500000px;}
.x1_c00310{left:792.939000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls1_c00310{letter-spacing:0.000000pt;}
.ls0_c00310{letter-spacing:0.640000pt;}
.ls2_c00310{letter-spacing:0.746667pt;}
.ws0_c00310{word-spacing:-9.066667pt;}
.wsb_c00310{word-spacing:-5.120000pt;}
.wsd_c00310{word-spacing:-3.840000pt;}
.wsf_c00310{word-spacing:-1.472000pt;}
.ws2_c00310{word-spacing:-0.746667pt;}
.wsc_c00310{word-spacing:-0.512000pt;}
.ws6_c00310{word-spacing:-0.064000pt;}
.ws1_c00310{word-spacing:0.000000pt;}
.ws3_c00310{word-spacing:0.768000pt;}
.ws9_c00310{word-spacing:1.216000pt;}
.wsa_c00310{word-spacing:4.032000pt;}
.ws4_c00310{word-spacing:6.720000pt;}
.ws7_c00310{word-spacing:8.704000pt;}
.ws8_c00310{word-spacing:8.896000pt;}
.wse_c00310{word-spacing:9.344000pt;}
.ws5_c00310{word-spacing:11.136000pt;}
._0_c00310{margin-left:-426.966933pt;}
._3_c00310{margin-left:-5.772800pt;}
._1_c00310{margin-left:-3.733333pt;}
._4_c00310{margin-left:-2.577067pt;}
._2_c00310{margin-left:-1.280000pt;}
._6_c00310{width:1.034667pt;}
._5_c00310{width:3.225600pt;}
.fs1_c00310{font-size:37.333333pt;}
.fs0_c00310{font-size:53.333333pt;}
.fs3_c00310{font-size:64.000000pt;}
.fs2_c00310{font-size:74.666667pt;}
.y0_c00310{bottom:0.000000pt;}
.y1_c00310{bottom:36.666667pt;}
.y13_c00310{bottom:254.498400pt;}
.y12_c00310{bottom:281.170400pt;}
.y11_c00310{bottom:307.842400pt;}
.y10_c00310{bottom:334.514400pt;}
.yf_c00310{bottom:361.186400pt;}
.ye_c00310{bottom:414.519733pt;}
.yd_c00310{bottom:494.503733pt;}
.yc_c00310{bottom:521.175733pt;}
.yb_c00310{bottom:547.847733pt;}
.ya_c00310{bottom:574.519733pt;}
.y9_c00310{bottom:627.853067pt;}
.y8_c00310{bottom:707.826400pt;}
.y7_c00310{bottom:734.498400pt;}
.y6_c00310{bottom:761.170400pt;}
.y5_c00310{bottom:787.842400pt;}
.y4_c00310{bottom:814.514400pt;}
.y3_c00310{bottom:841.186400pt;}
.y2_c00310{bottom:894.519733pt;}
.h2_c00310{height:48.000000pt;}
.h4_c00310{height:57.600000pt;}
.h3_c00310{height:69.813333pt;}
.h0_c00310{height:1122.520000pt;}
.h1_c00310{height:1122.666667pt;}
.w0_c00310{width:793.701333pt;}
.w1_c00310{width:794.000000pt;}
.x0_c00310{left:0.000000pt;}
.x2_c00310{left:80.000000pt;}
.x3_c00310{left:94.666667pt;}
.x1_c00310{left:704.834667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00311;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00311;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00311{font-family:ff5_c00311;line-height:1.155000;font-style: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);}
.m1_c00311{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls3_c00311{letter-spacing:-0.288000px;}
.ls2_c00311{letter-spacing:0.000000px;}
.ls0_c00311{letter-spacing:0.864000px;}
.ls1_c00311{letter-spacing:1.200000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00311{word-spacing:-11.952000px;}
.ws0_c00311{word-spacing:-10.200000px;}
.ws5_c00311{word-spacing:-8.400000px;}
.ws6_c00311{word-spacing:-5.040000px;}
.ws4_c00311{word-spacing:-2.880000px;}
.ws3_c00311{word-spacing:-1.440000px;}
.ws2_c00311{word-spacing:0.000000px;}
._0_c00311{margin-left:-480.337800px;}
._4_c00311{margin-left:-6.480000px;}
._1_c00311{margin-left:-4.200000px;}
._2_c00311{margin-left:-1.440000px;}
._3_c00311{width:1.440000px;}
._5_c00311{width:2.880000px;}
._7_c00311{width:5.040000px;}
._6_c00311{width:8.040000px;}
.fc3_c00311{color:rgb(255,255,255);}
.fc2_c00311{color:rgb(233,83,14);}
.fc1_c00311{color:rgb(232,86,17);}
.fc0_c00311{color:rgb(60,60,59);}
.fs1_c00311{font-size:42.000000px;}
.fs0_c00311{font-size:60.000000px;}
.fs3_c00311{font-size:72.000000px;}
.fs4_c00311{font-size:120.000000px;}
.fs2_c00311{font-size:360.000000px;}
.y0_c00311{bottom:0.000000px;}
.y1_c00311{bottom:41.250000px;}
.yc_c00311{bottom:484.292700px;}
.yb_c00311{bottom:505.298700px;}
.ya_c00311{bottom:526.304700px;}
.y9_c00311{bottom:574.310700px;}
.y8_c00311{bottom:595.316700px;}
.y7_c00311{bottom:616.322700px;}
.y6_c00311{bottom:664.328700px;}
.y5_c00311{bottom:685.334700px;}
.y4_c00311{bottom:706.340700px;}
.y3_c00311{bottom:752.834700px;}
.y11_c00311{bottom:886.334700px;}
.y10_c00311{bottom:916.334700px;}
.yf_c00311{bottom:946.334700px;}
.ye_c00311{bottom:976.334700px;}
.yd_c00311{bottom:1006.334700px;}
.y2_c00311{bottom:1093.526700px;}
.h2_c00311{height:54.000000px;}
.h5_c00311{height:64.800000px;}
.h4_c00311{height:66.456000px;}
.h6_c00311{height:112.200000px;}
.h3_c00311{height:324.000000px;}
.h0_c00311{height:1262.835000px;}
.h1_c00311{height:1263.000000px;}
.w0_c00311{width:892.914000px;}
.w1_c00311{width:893.250000px;}
.x0_c00311{left:0.000000px;}
.x2_c00311{left:81.290250px;}
.x3_c00311{left:82.393650px;}
.x5_c00311{left:112.287450px;}
.x4_c00311{left:127.393650px;}
.x1_c00311{left:790.464000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls3_c00311{letter-spacing:-0.256000pt;}
.ls2_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:0.768000pt;}
.ls1_c00311{letter-spacing:1.066667pt;}
.ws1_c00311{word-spacing:-10.624000pt;}
.ws0_c00311{word-spacing:-9.066667pt;}
.ws5_c00311{word-spacing:-7.466667pt;}
.ws6_c00311{word-spacing:-4.480000pt;}
.ws4_c00311{word-spacing:-2.560000pt;}
.ws3_c00311{word-spacing:-1.280000pt;}
.ws2_c00311{word-spacing:0.000000pt;}
._0_c00311{margin-left:-426.966933pt;}
._4_c00311{margin-left:-5.760000pt;}
._1_c00311{margin-left:-3.733333pt;}
._2_c00311{margin-left:-1.280000pt;}
._3_c00311{width:1.280000pt;}
._5_c00311{width:2.560000pt;}
._7_c00311{width:4.480000pt;}
._6_c00311{width:7.146667pt;}
.fs1_c00311{font-size:37.333333pt;}
.fs0_c00311{font-size:53.333333pt;}
.fs3_c00311{font-size:64.000000pt;}
.fs4_c00311{font-size:106.666667pt;}
.fs2_c00311{font-size:320.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y1_c00311{bottom:36.666667pt;}
.yc_c00311{bottom:430.482400pt;}
.yb_c00311{bottom:449.154400pt;}
.ya_c00311{bottom:467.826400pt;}
.y9_c00311{bottom:510.498400pt;}
.y8_c00311{bottom:529.170400pt;}
.y7_c00311{bottom:547.842400pt;}
.y6_c00311{bottom:590.514400pt;}
.y5_c00311{bottom:609.186400pt;}
.y4_c00311{bottom:627.858400pt;}
.y3_c00311{bottom:669.186400pt;}
.y11_c00311{bottom:787.853067pt;}
.y10_c00311{bottom:814.519733pt;}
.yf_c00311{bottom:841.186400pt;}
.ye_c00311{bottom:867.853067pt;}
.yd_c00311{bottom:894.519733pt;}
.y2_c00311{bottom:972.023733pt;}
.h2_c00311{height:48.000000pt;}
.h5_c00311{height:57.600000pt;}
.h4_c00311{height:59.072000pt;}
.h6_c00311{height:99.733333pt;}
.h3_c00311{height:288.000000pt;}
.h0_c00311{height:1122.520000pt;}
.h1_c00311{height:1122.666667pt;}
.w0_c00311{width:793.701333pt;}
.w1_c00311{width:794.000000pt;}
.x0_c00311{left:0.000000pt;}
.x2_c00311{left:72.258000pt;}
.x3_c00311{left:73.238800pt;}
.x5_c00311{left:99.811067pt;}
.x4_c00311{left:113.238800pt;}
.x1_c00311{left:702.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00312;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.161000;font-style: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);}
.m1_c00312{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls5_c00312{letter-spacing:-0.540000px;}
.ls4_c00312{letter-spacing:0.000000px;}
.ls0_c00312{letter-spacing:0.720000px;}
.ls1_c00312{letter-spacing:0.840000px;}
.ls3_c00312{letter-spacing:1.500000px;}
.ls2_c00312{letter-spacing:1.650000px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00312{word-spacing:-21.060000px;}
.ws2_c00312{word-spacing:-17.640000px;}
.ws0_c00312{word-spacing:-10.200000px;}
.ws6_c00312{word-spacing:-2.376000px;}
.ws7_c00312{word-spacing:-2.088000px;}
.ws12_c00312{word-spacing:-1.584000px;}
.ws13_c00312{word-spacing:-1.500000px;}
.ws11_c00312{word-spacing:-1.080000px;}
.ws4_c00312{word-spacing:-0.840000px;}
.ws9_c00312{word-spacing:-0.720000px;}
.ws3_c00312{word-spacing:0.000000px;}
.ws8_c00312{word-spacing:0.288000px;}
.wsd_c00312{word-spacing:2.088000px;}
.wsa_c00312{word-spacing:2.736000px;}
.ws5_c00312{word-spacing:5.256000px;}
.ws10_c00312{word-spacing:5.400000px;}
.wse_c00312{word-spacing:9.936000px;}
.wsc_c00312{word-spacing:13.896000px;}
.wsf_c00312{word-spacing:22.032000px;}
.wsb_c00312{word-spacing:47.376000px;}
._0_c00312{margin-left:-480.337800px;}
._1_c00312{margin-left:-4.200000px;}
._4_c00312{margin-left:-2.649600px;}
._2_c00312{margin-left:-1.440000px;}
._3_c00312{width:2.001600px;}
.fc3_c00312{color:rgb(32,32,32);}
.fc2_c00312{color:rgb(233,83,14);}
.fc1_c00312{color:rgb(232,86,17);}
.fc4_c00312{color:rgb(157,157,156);}
.fc0_c00312{color:rgb(60,60,59);}
.fs1_c00312{font-size:42.000000px;}
.fs0_c00312{font-size:60.000000px;}
.fs5_c00312{font-size:66.000000px;}
.fs4_c00312{font-size:72.000000px;}
.fs3_c00312{font-size:84.000000px;}
.fs2_c00312{font-size:108.000000px;}
.y0_c00312{bottom:0.000000px;}
.y1_c00312{bottom:41.250000px;}
.y15_c00312{bottom:166.286700px;}
.y14_c00312{bottom:196.292700px;}
.y13_c00312{bottom:226.298700px;}
.y12_c00312{bottom:256.304700px;}
.y11_c00312{bottom:286.310700px;}
.y10_c00312{bottom:316.316700px;}
.yf_c00312{bottom:346.322700px;}
.ye_c00312{bottom:376.328700px;}
.yd_c00312{bottom:406.334700px;}
.yc_c00312{bottom:466.334700px;}
.yb_c00312{bottom:556.328700px;}
.ya_c00312{bottom:586.334700px;}
.y9_c00312{bottom:646.334700px;}
.y8_c00312{bottom:736.310700px;}
.y7_c00312{bottom:766.316700px;}
.y19_c00312{bottom:766.334700px;}
.y6_c00312{bottom:796.322700px;}
.y18_c00312{bottom:796.334700px;}
.y5_c00312{bottom:826.328700px;}
.y17_c00312{bottom:826.334700px;}
.y4_c00312{bottom:856.334700px;}
.y16_c00312{bottom:856.376100px;}
.y3_c00312{bottom:916.334700px;}
.y2_c00312{bottom:1006.334700px;}
.h6_c00312{height:50.292000px;}
.h2_c00312{height:54.000000px;}
.h5_c00312{height:64.800000px;}
.h4_c00312{height:78.540000px;}
.h3_c00312{height:100.980000px;}
.h0_c00312{height:1262.835000px;}
.h1_c00312{height:1263.000000px;}
.w0_c00312{width:892.914000px;}
.w1_c00312{width:893.250000px;}
.x0_c00312{left:0.000000px;}
.x2_c00312{left:82.500000px;}
.x3_c00312{left:90.000000px;}
.x4_c00312{left:106.500000px;}
.x5_c00312{left:675.611100px;}
.x1_c00312{left:790.314000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls5_c00312{letter-spacing:-0.480000pt;}
.ls4_c00312{letter-spacing:0.000000pt;}
.ls0_c00312{letter-spacing:0.640000pt;}
.ls1_c00312{letter-spacing:0.746667pt;}
.ls3_c00312{letter-spacing:1.333333pt;}
.ls2_c00312{letter-spacing:1.466667pt;}
.ws1_c00312{word-spacing:-18.720000pt;}
.ws2_c00312{word-spacing:-15.680000pt;}
.ws0_c00312{word-spacing:-9.066667pt;}
.ws6_c00312{word-spacing:-2.112000pt;}
.ws7_c00312{word-spacing:-1.856000pt;}
.ws12_c00312{word-spacing:-1.408000pt;}
.ws13_c00312{word-spacing:-1.333333pt;}
.ws11_c00312{word-spacing:-0.960000pt;}
.ws4_c00312{word-spacing:-0.746667pt;}
.ws9_c00312{word-spacing:-0.640000pt;}
.ws3_c00312{word-spacing:0.000000pt;}
.ws8_c00312{word-spacing:0.256000pt;}
.wsd_c00312{word-spacing:1.856000pt;}
.wsa_c00312{word-spacing:2.432000pt;}
.ws5_c00312{word-spacing:4.672000pt;}
.ws10_c00312{word-spacing:4.800000pt;}
.wse_c00312{word-spacing:8.832000pt;}
.wsc_c00312{word-spacing:12.352000pt;}
.wsf_c00312{word-spacing:19.584000pt;}
.wsb_c00312{word-spacing:42.112000pt;}
._0_c00312{margin-left:-426.966933pt;}
._1_c00312{margin-left:-3.733333pt;}
._4_c00312{margin-left:-2.355200pt;}
._2_c00312{margin-left:-1.280000pt;}
._3_c00312{width:1.779200pt;}
.fs1_c00312{font-size:37.333333pt;}
.fs0_c00312{font-size:53.333333pt;}
.fs5_c00312{font-size:58.666667pt;}
.fs4_c00312{font-size:64.000000pt;}
.fs3_c00312{font-size:74.666667pt;}
.fs2_c00312{font-size:96.000000pt;}
.y0_c00312{bottom:0.000000pt;}
.y1_c00312{bottom:36.666667pt;}
.y15_c00312{bottom:147.810400pt;}
.y14_c00312{bottom:174.482400pt;}
.y13_c00312{bottom:201.154400pt;}
.y12_c00312{bottom:227.826400pt;}
.y11_c00312{bottom:254.498400pt;}
.y10_c00312{bottom:281.170400pt;}
.yf_c00312{bottom:307.842400pt;}
.ye_c00312{bottom:334.514400pt;}
.yd_c00312{bottom:361.186400pt;}
.yc_c00312{bottom:414.519733pt;}
.yb_c00312{bottom:494.514400pt;}
.ya_c00312{bottom:521.186400pt;}
.y9_c00312{bottom:574.519733pt;}
.y8_c00312{bottom:654.498400pt;}
.y7_c00312{bottom:681.170400pt;}
.y19_c00312{bottom:681.186400pt;}
.y6_c00312{bottom:707.842400pt;}
.y18_c00312{bottom:707.853067pt;}
.y5_c00312{bottom:734.514400pt;}
.y17_c00312{bottom:734.519733pt;}
.y4_c00312{bottom:761.186400pt;}
.y16_c00312{bottom:761.223200pt;}
.y3_c00312{bottom:814.519733pt;}
.y2_c00312{bottom:894.519733pt;}
.h6_c00312{height:44.704000pt;}
.h2_c00312{height:48.000000pt;}
.h5_c00312{height:57.600000pt;}
.h4_c00312{height:69.813333pt;}
.h3_c00312{height:89.760000pt;}
.h0_c00312{height:1122.520000pt;}
.h1_c00312{height:1122.666667pt;}
.w0_c00312{width:793.701333pt;}
.w1_c00312{width:794.000000pt;}
.x0_c00312{left:0.000000pt;}
.x2_c00312{left:73.333333pt;}
.x3_c00312{left:80.000000pt;}
.x4_c00312{left:94.666667pt;}
.x5_c00312{left:600.543200pt;}
.x1_c00312{left:702.501333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_c10dce7148a230727f74a6f9.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00313{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls1_c00313{letter-spacing:0.000000px;}
.ls0_c00313{letter-spacing:0.720000px;}
.ls2_c00313{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00313{word-spacing:-0.840000px;}
.ws1_c00313{word-spacing:0.000000px;}
.wsc_c00313{word-spacing:0.576000px;}
.ws7_c00313{word-spacing:2.736000px;}
.ws4_c00313{word-spacing:4.536000px;}
.wsb_c00313{word-spacing:4.824000px;}
.ws9_c00313{word-spacing:5.328000px;}
.ws6_c00313{word-spacing:5.400000px;}
.ws5_c00313{word-spacing:7.776000px;}
.ws3_c00313{word-spacing:7.992000px;}
.wsa_c00313{word-spacing:14.040000px;}
.ws8_c00313{word-spacing:25.704000px;}
._0_c00313{margin-left:-480.337800px;}
._1_c00313{margin-left:-4.200000px;}
._2_c00313{margin-left:-1.440000px;}
.fc2_c00313{color:rgb(32,32,32);}
.fc1_c00313{color:rgb(232,86,17);}
.fc0_c00313{color:rgb(60,60,59);}
.fs1_c00313{font-size:42.000000px;}
.fs0_c00313{font-size:60.000000px;}
.fs3_c00313{font-size:72.000000px;}
.fs2_c00313{font-size:84.000000px;}
.y0_c00313{bottom:0.000000px;}
.y1_c00313{bottom:41.250000px;}
.yf_c00313{bottom:496.316700px;}
.ye_c00313{bottom:526.322700px;}
.yd_c00313{bottom:556.328700px;}
.yc_c00313{bottom:586.334700px;}
.yb_c00313{bottom:646.334700px;}
.ya_c00313{bottom:736.292700px;}
.y9_c00313{bottom:766.298700px;}
.y8_c00313{bottom:796.304700px;}
.y7_c00313{bottom:826.310700px;}
.y6_c00313{bottom:856.316700px;}
.y5_c00313{bottom:886.322700px;}
.y4_c00313{bottom:916.328700px;}
.y3_c00313{bottom:946.334700px;}
.y2_c00313{bottom:1006.334700px;}
.h2_c00313{height:54.000000px;}
.h4_c00313{height:64.800000px;}
.h3_c00313{height:78.540000px;}
.h0_c00313{height:1262.835000px;}
.h1_c00313{height:1263.000000px;}
.w0_c00313{width:892.914000px;}
.w1_c00313{width:893.250000px;}
.x0_c00313{left:0.000000px;}
.x2_c00313{left:90.000000px;}
.x3_c00313{left:106.500000px;}
.x1_c00313{left:789.339000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls1_c00313{letter-spacing:0.000000pt;}
.ls0_c00313{letter-spacing:0.640000pt;}
.ls2_c00313{letter-spacing:0.746667pt;}
.ws0_c00313{word-spacing:-9.066667pt;}
.ws2_c00313{word-spacing:-0.746667pt;}
.ws1_c00313{word-spacing:0.000000pt;}
.wsc_c00313{word-spacing:0.512000pt;}
.ws7_c00313{word-spacing:2.432000pt;}
.ws4_c00313{word-spacing:4.032000pt;}
.wsb_c00313{word-spacing:4.288000pt;}
.ws9_c00313{word-spacing:4.736000pt;}
.ws6_c00313{word-spacing:4.800000pt;}
.ws5_c00313{word-spacing:6.912000pt;}
.ws3_c00313{word-spacing:7.104000pt;}
.wsa_c00313{word-spacing:12.480000pt;}
.ws8_c00313{word-spacing:22.848000pt;}
._0_c00313{margin-left:-426.966933pt;}
._1_c00313{margin-left:-3.733333pt;}
._2_c00313{margin-left:-1.280000pt;}
.fs1_c00313{font-size:37.333333pt;}
.fs0_c00313{font-size:53.333333pt;}
.fs3_c00313{font-size:64.000000pt;}
.fs2_c00313{font-size:74.666667pt;}
.y0_c00313{bottom:0.000000pt;}
.y1_c00313{bottom:36.666667pt;}
.yf_c00313{bottom:441.170400pt;}
.ye_c00313{bottom:467.842400pt;}
.yd_c00313{bottom:494.514400pt;}
.yc_c00313{bottom:521.186400pt;}
.yb_c00313{bottom:574.519733pt;}
.ya_c00313{bottom:654.482400pt;}
.y9_c00313{bottom:681.154400pt;}
.y8_c00313{bottom:707.826400pt;}
.y7_c00313{bottom:734.498400pt;}
.y6_c00313{bottom:761.170400pt;}
.y5_c00313{bottom:787.842400pt;}
.y4_c00313{bottom:814.514400pt;}
.y3_c00313{bottom:841.186400pt;}
.y2_c00313{bottom:894.519733pt;}
.h2_c00313{height:48.000000pt;}
.h4_c00313{height:57.600000pt;}
.h3_c00313{height:69.813333pt;}
.h0_c00313{height:1122.520000pt;}
.h1_c00313{height:1122.666667pt;}
.w0_c00313{width:793.701333pt;}
.w1_c00313{width:794.000000pt;}
.x0_c00313{left:0.000000pt;}
.x2_c00313{left:80.000000pt;}
.x3_c00313{left:94.666667pt;}
.x1_c00313{left:701.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.155000;font-style: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);}
.m1_c00314{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls3_c00314{letter-spacing:-0.288000px;}
.ls2_c00314{letter-spacing:0.000000px;}
.ls0_c00314{letter-spacing:0.864000px;}
.ls1_c00314{letter-spacing:1.200000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00314{word-spacing:-11.952000px;}
.ws0_c00314{word-spacing:-10.200000px;}
.ws6_c00314{word-spacing:-6.720000px;}
.ws5_c00314{word-spacing:-3.720000px;}
.ws4_c00314{word-spacing:-2.880000px;}
.ws3_c00314{word-spacing:-1.440000px;}
.ws2_c00314{word-spacing:0.000000px;}
._0_c00314{margin-left:-480.337200px;}
._7_c00314{margin-left:-9.000000px;}
._4_c00314{margin-left:-6.480000px;}
._5_c00314{margin-left:-5.400000px;}
._1_c00314{margin-left:-4.200000px;}
._2_c00314{margin-left:-1.440000px;}
._3_c00314{width:1.440000px;}
._6_c00314{width:3.720000px;}
._8_c00314{width:4.920000px;}
.fc3_c00314{color:rgb(255,255,255);}
.fc2_c00314{color:rgb(233,83,14);}
.fc1_c00314{color:rgb(232,86,17);}
.fc0_c00314{color:rgb(60,60,59);}
.fs1_c00314{font-size:42.000000px;}
.fs0_c00314{font-size:60.000000px;}
.fs3_c00314{font-size:72.000000px;}
.fs4_c00314{font-size:120.000000px;}
.fs2_c00314{font-size:360.000000px;}
.y0_c00314{bottom:0.000000px;}
.y1_c00314{bottom:41.250000px;}
.yc_c00314{bottom:484.292700px;}
.yb_c00314{bottom:505.298700px;}
.ya_c00314{bottom:526.304700px;}
.y9_c00314{bottom:574.310700px;}
.y8_c00314{bottom:595.316700px;}
.y7_c00314{bottom:616.322700px;}
.y6_c00314{bottom:664.328700px;}
.y5_c00314{bottom:685.334700px;}
.y4_c00314{bottom:706.340700px;}
.y3_c00314{bottom:752.834700px;}
.y11_c00314{bottom:886.334700px;}
.y10_c00314{bottom:916.334700px;}
.yf_c00314{bottom:946.334700px;}
.ye_c00314{bottom:976.334700px;}
.yd_c00314{bottom:1006.334700px;}
.y2_c00314{bottom:1093.526700px;}
.h2_c00314{height:54.000000px;}
.h5_c00314{height:64.800000px;}
.h4_c00314{height:66.456000px;}
.h6_c00314{height:112.200000px;}
.h3_c00314{height:324.000000px;}
.h0_c00314{height:1262.835000px;}
.h1_c00314{height:1263.000000px;}
.w0_c00314{width:892.914000px;}
.w1_c00314{width:893.250000px;}
.x0_c00314{left:0.000000px;}
.x2_c00314{left:81.290250px;}
.x3_c00314{left:82.393650px;}
.x5_c00314{left:112.287450px;}
.x4_c00314{left:127.393650px;}
.x1_c00314{left:790.388850px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls3_c00314{letter-spacing:-0.256000pt;}
.ls2_c00314{letter-spacing:0.000000pt;}
.ls0_c00314{letter-spacing:0.768000pt;}
.ls1_c00314{letter-spacing:1.066667pt;}
.ws1_c00314{word-spacing:-10.624000pt;}
.ws0_c00314{word-spacing:-9.066667pt;}
.ws6_c00314{word-spacing:-5.973333pt;}
.ws5_c00314{word-spacing:-3.306667pt;}
.ws4_c00314{word-spacing:-2.560000pt;}
.ws3_c00314{word-spacing:-1.280000pt;}
.ws2_c00314{word-spacing:0.000000pt;}
._0_c00314{margin-left:-426.966400pt;}
._7_c00314{margin-left:-8.000000pt;}
._4_c00314{margin-left:-5.760000pt;}
._5_c00314{margin-left:-4.800000pt;}
._1_c00314{margin-left:-3.733333pt;}
._2_c00314{margin-left:-1.280000pt;}
._3_c00314{width:1.280000pt;}
._6_c00314{width:3.306667pt;}
._8_c00314{width:4.373333pt;}
.fs1_c00314{font-size:37.333333pt;}
.fs0_c00314{font-size:53.333333pt;}
.fs3_c00314{font-size:64.000000pt;}
.fs4_c00314{font-size:106.666667pt;}
.fs2_c00314{font-size:320.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.y1_c00314{bottom:36.666667pt;}
.yc_c00314{bottom:430.482400pt;}
.yb_c00314{bottom:449.154400pt;}
.ya_c00314{bottom:467.826400pt;}
.y9_c00314{bottom:510.498400pt;}
.y8_c00314{bottom:529.170400pt;}
.y7_c00314{bottom:547.842400pt;}
.y6_c00314{bottom:590.514400pt;}
.y5_c00314{bottom:609.186400pt;}
.y4_c00314{bottom:627.858400pt;}
.y3_c00314{bottom:669.186400pt;}
.y11_c00314{bottom:787.853067pt;}
.y10_c00314{bottom:814.519733pt;}
.yf_c00314{bottom:841.186400pt;}
.ye_c00314{bottom:867.853067pt;}
.yd_c00314{bottom:894.519733pt;}
.y2_c00314{bottom:972.023733pt;}
.h2_c00314{height:48.000000pt;}
.h5_c00314{height:57.600000pt;}
.h4_c00314{height:59.072000pt;}
.h6_c00314{height:99.733333pt;}
.h3_c00314{height:288.000000pt;}
.h0_c00314{height:1122.520000pt;}
.h1_c00314{height:1122.666667pt;}
.w0_c00314{width:793.701333pt;}
.w1_c00314{width:794.000000pt;}
.x0_c00314{left:0.000000pt;}
.x2_c00314{left:72.258000pt;}
.x3_c00314{left:73.238800pt;}
.x5_c00314{left:99.811067pt;}
.x4_c00314{left:113.238800pt;}
.x1_c00314{left:702.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00315;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.161000;font-style: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);}
.m1_c00315{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls5_c00315{letter-spacing:-0.540000px;}
.ls4_c00315{letter-spacing:0.000000px;}
.ls0_c00315{letter-spacing:0.720000px;}
.ls1_c00315{letter-spacing:0.840000px;}
.ls3_c00315{letter-spacing:1.500000px;}
.ls2_c00315{letter-spacing:1.650000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00315{word-spacing:-21.060000px;}
.ws2_c00315{word-spacing:-17.640000px;}
.ws0_c00315{word-spacing:-10.200000px;}
.ws12_c00315{word-spacing:-1.500000px;}
.ws4_c00315{word-spacing:-0.840000px;}
.wsa_c00315{word-spacing:-0.720000px;}
.ws10_c00315{word-spacing:-0.288000px;}
.ws3_c00315{word-spacing:0.000000px;}
.wsf_c00315{word-spacing:0.216000px;}
.ws7_c00315{word-spacing:0.360000px;}
.ws11_c00315{word-spacing:1.008000px;}
.ws6_c00315{word-spacing:1.080000px;}
.ws8_c00315{word-spacing:2.952000px;}
.wsc_c00315{word-spacing:4.392000px;}
.wse_c00315{word-spacing:5.400000px;}
.ws9_c00315{word-spacing:6.048000px;}
.wsb_c00315{word-spacing:10.152000px;}
.ws5_c00315{word-spacing:14.832000px;}
.wsd_c00315{word-spacing:54.288000px;}
._0_c00315{margin-left:-480.337200px;}
._3_c00315{margin-left:-5.832000px;}
._1_c00315{margin-left:-4.200000px;}
._7_c00315{margin-left:-2.628000px;}
._2_c00315{margin-left:-1.440000px;}
._5_c00315{width:1.893600px;}
._6_c00315{width:3.110400px;}
._4_c00315{width:4.586400px;}
.fc3_c00315{color:rgb(32,32,32);}
.fc2_c00315{color:rgb(233,83,14);}
.fc1_c00315{color:rgb(232,86,17);}
.fc4_c00315{color:rgb(157,157,156);}
.fc0_c00315{color:rgb(60,60,59);}
.fs1_c00315{font-size:42.000000px;}
.fs0_c00315{font-size:60.000000px;}
.fs5_c00315{font-size:66.000000px;}
.fs4_c00315{font-size:72.000000px;}
.fs3_c00315{font-size:84.000000px;}
.fs2_c00315{font-size:108.000000px;}
.y0_c00315{bottom:0.000000px;}
.y1_c00315{bottom:41.250000px;}
.y15_c00315{bottom:166.298700px;}
.y14_c00315{bottom:196.304700px;}
.y13_c00315{bottom:226.310700px;}
.y12_c00315{bottom:256.316700px;}
.y11_c00315{bottom:286.322700px;}
.y10_c00315{bottom:316.328700px;}
.yf_c00315{bottom:346.334700px;}
.ye_c00315{bottom:406.334700px;}
.yd_c00315{bottom:496.322700px;}
.yc_c00315{bottom:526.328700px;}
.yb_c00315{bottom:556.334700px;}
.ya_c00315{bottom:616.334700px;}
.y9_c00315{bottom:706.304700px;}
.y8_c00315{bottom:736.310700px;}
.y1a_c00315{bottom:736.334700px;}
.y7_c00315{bottom:766.316700px;}
.y19_c00315{bottom:766.334700px;}
.y6_c00315{bottom:796.322700px;}
.y18_c00315{bottom:796.334700px;}
.y5_c00315{bottom:826.328700px;}
.y17_c00315{bottom:826.334700px;}
.y4_c00315{bottom:856.334700px;}
.y16_c00315{bottom:856.376100px;}
.y3_c00315{bottom:916.334700px;}
.y2_c00315{bottom:1006.334700px;}
.h6_c00315{height:50.292000px;}
.h2_c00315{height:54.000000px;}
.h5_c00315{height:64.800000px;}
.h4_c00315{height:78.540000px;}
.h3_c00315{height:100.980000px;}
.h0_c00315{height:1262.835000px;}
.h1_c00315{height:1263.000000px;}
.w0_c00315{width:892.914000px;}
.w1_c00315{width:893.250000px;}
.x0_c00315{left:0.000000px;}
.x2_c00315{left:82.500000px;}
.x3_c00315{left:90.000000px;}
.x4_c00315{left:106.500000px;}
.x5_c00315{left:675.611100px;}
.x1_c00315{left:789.263850px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls5_c00315{letter-spacing:-0.480000pt;}
.ls4_c00315{letter-spacing:0.000000pt;}
.ls0_c00315{letter-spacing:0.640000pt;}
.ls1_c00315{letter-spacing:0.746667pt;}
.ls3_c00315{letter-spacing:1.333333pt;}
.ls2_c00315{letter-spacing:1.466667pt;}
.ws1_c00315{word-spacing:-18.720000pt;}
.ws2_c00315{word-spacing:-15.680000pt;}
.ws0_c00315{word-spacing:-9.066667pt;}
.ws12_c00315{word-spacing:-1.333333pt;}
.ws4_c00315{word-spacing:-0.746667pt;}
.wsa_c00315{word-spacing:-0.640000pt;}
.ws10_c00315{word-spacing:-0.256000pt;}
.ws3_c00315{word-spacing:0.000000pt;}
.wsf_c00315{word-spacing:0.192000pt;}
.ws7_c00315{word-spacing:0.320000pt;}
.ws11_c00315{word-spacing:0.896000pt;}
.ws6_c00315{word-spacing:0.960000pt;}
.ws8_c00315{word-spacing:2.624000pt;}
.wsc_c00315{word-spacing:3.904000pt;}
.wse_c00315{word-spacing:4.800000pt;}
.ws9_c00315{word-spacing:5.376000pt;}
.wsb_c00315{word-spacing:9.024000pt;}
.ws5_c00315{word-spacing:13.184000pt;}
.wsd_c00315{word-spacing:48.256000pt;}
._0_c00315{margin-left:-426.966400pt;}
._3_c00315{margin-left:-5.184000pt;}
._1_c00315{margin-left:-3.733333pt;}
._7_c00315{margin-left:-2.336000pt;}
._2_c00315{margin-left:-1.280000pt;}
._5_c00315{width:1.683200pt;}
._6_c00315{width:2.764800pt;}
._4_c00315{width:4.076800pt;}
.fs1_c00315{font-size:37.333333pt;}
.fs0_c00315{font-size:53.333333pt;}
.fs5_c00315{font-size:58.666667pt;}
.fs4_c00315{font-size:64.000000pt;}
.fs3_c00315{font-size:74.666667pt;}
.fs2_c00315{font-size:96.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y1_c00315{bottom:36.666667pt;}
.y15_c00315{bottom:147.821067pt;}
.y14_c00315{bottom:174.493067pt;}
.y13_c00315{bottom:201.165067pt;}
.y12_c00315{bottom:227.837067pt;}
.y11_c00315{bottom:254.509067pt;}
.y10_c00315{bottom:281.181067pt;}
.yf_c00315{bottom:307.853067pt;}
.ye_c00315{bottom:361.186400pt;}
.yd_c00315{bottom:441.175733pt;}
.yc_c00315{bottom:467.847733pt;}
.yb_c00315{bottom:494.519733pt;}
.ya_c00315{bottom:547.853067pt;}
.y9_c00315{bottom:627.826400pt;}
.y8_c00315{bottom:654.498400pt;}
.y1a_c00315{bottom:654.519733pt;}
.y7_c00315{bottom:681.170400pt;}
.y19_c00315{bottom:681.186400pt;}
.y6_c00315{bottom:707.842400pt;}
.y18_c00315{bottom:707.853067pt;}
.y5_c00315{bottom:734.514400pt;}
.y17_c00315{bottom:734.519733pt;}
.y4_c00315{bottom:761.186400pt;}
.y16_c00315{bottom:761.223200pt;}
.y3_c00315{bottom:814.519733pt;}
.y2_c00315{bottom:894.519733pt;}
.h6_c00315{height:44.704000pt;}
.h2_c00315{height:48.000000pt;}
.h5_c00315{height:57.600000pt;}
.h4_c00315{height:69.813333pt;}
.h3_c00315{height:89.760000pt;}
.h0_c00315{height:1122.520000pt;}
.h1_c00315{height:1122.666667pt;}
.w0_c00315{width:793.701333pt;}
.w1_c00315{width:794.000000pt;}
.x0_c00315{left:0.000000pt;}
.x2_c00315{left:73.333333pt;}
.x3_c00315{left:80.000000pt;}
.x4_c00315{left:94.666667pt;}
.x5_c00315{left:600.543200pt;}
.x1_c00315{left:701.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00316;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00316{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls2_c00316{letter-spacing:0.000000px;}
.ls0_c00316{letter-spacing:0.720000px;}
.ls1_c00316{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wse_c00316{word-spacing:-2.592000px;}
.ws2_c00316{word-spacing:-0.840000px;}
.ws5_c00316{word-spacing:-0.720000px;}
.ws11_c00316{word-spacing:-0.504000px;}
.wsd_c00316{word-spacing:-0.072000px;}
.ws1_c00316{word-spacing:0.000000px;}
.wsf_c00316{word-spacing:1.584000px;}
.wsb_c00316{word-spacing:6.408000px;}
.wsa_c00316{word-spacing:6.696000px;}
.ws6_c00316{word-spacing:8.424000px;}
.ws4_c00316{word-spacing:8.496000px;}
.ws10_c00316{word-spacing:8.784000px;}
.wsc_c00316{word-spacing:10.368000px;}
.ws3_c00316{word-spacing:11.520000px;}
.ws8_c00316{word-spacing:11.880000px;}
.ws9_c00316{word-spacing:14.040000px;}
.ws7_c00316{word-spacing:15.192000px;}
._0_c00316{margin-left:-480.337200px;}
._3_c00316{margin-left:-5.896800px;}
._1_c00316{margin-left:-4.200000px;}
._2_c00316{margin-left:-2.023200px;}
._6_c00316{margin-left:-1.022400px;}
._7_c00316{width:1.252800px;}
._5_c00316{width:5.760000px;}
._4_c00316{width:9.000000px;}
.fc2_c00316{color:rgb(32,32,32);}
.fc1_c00316{color:rgb(232,86,17);}
.fc0_c00316{color:rgb(60,60,59);}
.fs1_c00316{font-size:42.000000px;}
.fs0_c00316{font-size:60.000000px;}
.fs3_c00316{font-size:72.000000px;}
.fs2_c00316{font-size:84.000000px;}
.y0_c00316{bottom:0.000000px;}
.y1_c00316{bottom:41.250000px;}
.y11_c00316{bottom:436.304700px;}
.y10_c00316{bottom:466.310700px;}
.yf_c00316{bottom:496.316700px;}
.ye_c00316{bottom:526.322700px;}
.yd_c00316{bottom:556.328700px;}
.yc_c00316{bottom:586.334700px;}
.yb_c00316{bottom:646.334700px;}
.ya_c00316{bottom:736.292700px;}
.y9_c00316{bottom:766.298700px;}
.y8_c00316{bottom:796.304700px;}
.y7_c00316{bottom:826.310700px;}
.y6_c00316{bottom:856.316700px;}
.y5_c00316{bottom:886.322700px;}
.y4_c00316{bottom:916.328700px;}
.y3_c00316{bottom:946.334700px;}
.y2_c00316{bottom:1006.334700px;}
.h2_c00316{height:54.000000px;}
.h4_c00316{height:64.800000px;}
.h3_c00316{height:78.540000px;}
.h0_c00316{height:1262.835000px;}
.h1_c00316{height:1263.000000px;}
.w0_c00316{width:892.914000px;}
.w1_c00316{width:893.250000px;}
.x0_c00316{left:0.000000px;}
.x2_c00316{left:90.000000px;}
.x3_c00316{left:106.500000px;}
.x1_c00316{left:791.363850px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls2_c00316{letter-spacing:0.000000pt;}
.ls0_c00316{letter-spacing:0.640000pt;}
.ls1_c00316{letter-spacing:0.746667pt;}
.ws0_c00316{word-spacing:-9.066667pt;}
.wse_c00316{word-spacing:-2.304000pt;}
.ws2_c00316{word-spacing:-0.746667pt;}
.ws5_c00316{word-spacing:-0.640000pt;}
.ws11_c00316{word-spacing:-0.448000pt;}
.wsd_c00316{word-spacing:-0.064000pt;}
.ws1_c00316{word-spacing:0.000000pt;}
.wsf_c00316{word-spacing:1.408000pt;}
.wsb_c00316{word-spacing:5.696000pt;}
.wsa_c00316{word-spacing:5.952000pt;}
.ws6_c00316{word-spacing:7.488000pt;}
.ws4_c00316{word-spacing:7.552000pt;}
.ws10_c00316{word-spacing:7.808000pt;}
.wsc_c00316{word-spacing:9.216000pt;}
.ws3_c00316{word-spacing:10.240000pt;}
.ws8_c00316{word-spacing:10.560000pt;}
.ws9_c00316{word-spacing:12.480000pt;}
.ws7_c00316{word-spacing:13.504000pt;}
._0_c00316{margin-left:-426.966400pt;}
._3_c00316{margin-left:-5.241600pt;}
._1_c00316{margin-left:-3.733333pt;}
._2_c00316{margin-left:-1.798400pt;}
._6_c00316{margin-left:-0.908800pt;}
._7_c00316{width:1.113600pt;}
._5_c00316{width:5.120000pt;}
._4_c00316{width:8.000000pt;}
.fs1_c00316{font-size:37.333333pt;}
.fs0_c00316{font-size:53.333333pt;}
.fs3_c00316{font-size:64.000000pt;}
.fs2_c00316{font-size:74.666667pt;}
.y0_c00316{bottom:0.000000pt;}
.y1_c00316{bottom:36.666667pt;}
.y11_c00316{bottom:387.826400pt;}
.y10_c00316{bottom:414.498400pt;}
.yf_c00316{bottom:441.170400pt;}
.ye_c00316{bottom:467.842400pt;}
.yd_c00316{bottom:494.514400pt;}
.yc_c00316{bottom:521.186400pt;}
.yb_c00316{bottom:574.519733pt;}
.ya_c00316{bottom:654.482400pt;}
.y9_c00316{bottom:681.154400pt;}
.y8_c00316{bottom:707.826400pt;}
.y7_c00316{bottom:734.498400pt;}
.y6_c00316{bottom:761.170400pt;}
.y5_c00316{bottom:787.842400pt;}
.y4_c00316{bottom:814.514400pt;}
.y3_c00316{bottom:841.186400pt;}
.y2_c00316{bottom:894.519733pt;}
.h2_c00316{height:48.000000pt;}
.h4_c00316{height:57.600000pt;}
.h3_c00316{height:69.813333pt;}
.h0_c00316{height:1122.520000pt;}
.h1_c00316{height:1122.666667pt;}
.w0_c00316{width:793.701333pt;}
.w1_c00316{width:794.000000pt;}
.x0_c00316{left:0.000000pt;}
.x2_c00316{left:80.000000pt;}
.x3_c00316{left:94.666667pt;}
.x1_c00316{left:703.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00317;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00317;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:1.155000;font-style: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);}
.m1_c00317{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls2_c00317{letter-spacing:0.000000px;}
.ls0_c00317{letter-spacing:0.864000px;}
.ls1_c00317{letter-spacing:1.200000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00317{word-spacing:-13.104000px;}
.ws0_c00317{word-spacing:-10.200000px;}
.ws3_c00317{word-spacing:-1.440000px;}
.ws2_c00317{word-spacing:0.000000px;}
._0_c00317{margin-left:-480.337800px;}
._3_c00317{margin-left:-5.760000px;}
._1_c00317{margin-left:-4.200000px;}
._5_c00317{margin-left:-2.880000px;}
._2_c00317{margin-left:-1.440000px;}
._4_c00317{width:1.440000px;}
.fc3_c00317{color:rgb(255,255,255);}
.fc2_c00317{color:rgb(233,83,14);}
.fc1_c00317{color:rgb(232,86,17);}
.fc0_c00317{color:rgb(60,60,59);}
.fs1_c00317{font-size:42.000000px;}
.fs0_c00317{font-size:60.000000px;}
.fs3_c00317{font-size:72.000000px;}
.fs4_c00317{font-size:120.000000px;}
.fs2_c00317{font-size:360.000000px;}
.y0_c00317{bottom:0.000000px;}
.y1_c00317{bottom:41.250000px;}
.yf_c00317{bottom:394.274700px;}
.ye_c00317{bottom:415.280700px;}
.yd_c00317{bottom:436.286700px;}
.yc_c00317{bottom:484.292700px;}
.yb_c00317{bottom:505.298700px;}
.ya_c00317{bottom:526.304700px;}
.y9_c00317{bottom:574.310700px;}
.y8_c00317{bottom:595.316700px;}
.y7_c00317{bottom:616.322700px;}
.y6_c00317{bottom:664.328700px;}
.y5_c00317{bottom:685.334700px;}
.y4_c00317{bottom:706.340700px;}
.y3_c00317{bottom:752.834700px;}
.y13_c00317{bottom:916.334700px;}
.y12_c00317{bottom:946.334700px;}
.y11_c00317{bottom:976.334700px;}
.y10_c00317{bottom:1006.334700px;}
.y2_c00317{bottom:1093.526700px;}
.h2_c00317{height:54.000000px;}
.h5_c00317{height:64.800000px;}
.h4_c00317{height:66.456000px;}
.h6_c00317{height:112.200000px;}
.h3_c00317{height:324.000000px;}
.h0_c00317{height:1262.835000px;}
.h1_c00317{height:1263.000000px;}
.w0_c00317{width:892.914000px;}
.w1_c00317{width:893.250000px;}
.x0_c00317{left:0.000000px;}
.x2_c00317{left:81.290250px;}
.x3_c00317{left:82.393650px;}
.x5_c00317{left:112.287450px;}
.x4_c00317{left:127.393650px;}
.x1_c00317{left:789.339000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls2_c00317{letter-spacing:0.000000pt;}
.ls0_c00317{letter-spacing:0.768000pt;}
.ls1_c00317{letter-spacing:1.066667pt;}
.ws1_c00317{word-spacing:-11.648000pt;}
.ws0_c00317{word-spacing:-9.066667pt;}
.ws3_c00317{word-spacing:-1.280000pt;}
.ws2_c00317{word-spacing:0.000000pt;}
._0_c00317{margin-left:-426.966933pt;}
._3_c00317{margin-left:-5.120000pt;}
._1_c00317{margin-left:-3.733333pt;}
._5_c00317{margin-left:-2.560000pt;}
._2_c00317{margin-left:-1.280000pt;}
._4_c00317{width:1.280000pt;}
.fs1_c00317{font-size:37.333333pt;}
.fs0_c00317{font-size:53.333333pt;}
.fs3_c00317{font-size:64.000000pt;}
.fs4_c00317{font-size:106.666667pt;}
.fs2_c00317{font-size:320.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y1_c00317{bottom:36.666667pt;}
.yf_c00317{bottom:350.466400pt;}
.ye_c00317{bottom:369.138400pt;}
.yd_c00317{bottom:387.810400pt;}
.yc_c00317{bottom:430.482400pt;}
.yb_c00317{bottom:449.154400pt;}
.ya_c00317{bottom:467.826400pt;}
.y9_c00317{bottom:510.498400pt;}
.y8_c00317{bottom:529.170400pt;}
.y7_c00317{bottom:547.842400pt;}
.y6_c00317{bottom:590.514400pt;}
.y5_c00317{bottom:609.186400pt;}
.y4_c00317{bottom:627.858400pt;}
.y3_c00317{bottom:669.186400pt;}
.y13_c00317{bottom:814.519733pt;}
.y12_c00317{bottom:841.186400pt;}
.y11_c00317{bottom:867.853067pt;}
.y10_c00317{bottom:894.519733pt;}
.y2_c00317{bottom:972.023733pt;}
.h2_c00317{height:48.000000pt;}
.h5_c00317{height:57.600000pt;}
.h4_c00317{height:59.072000pt;}
.h6_c00317{height:99.733333pt;}
.h3_c00317{height:288.000000pt;}
.h0_c00317{height:1122.520000pt;}
.h1_c00317{height:1122.666667pt;}
.w0_c00317{width:793.701333pt;}
.w1_c00317{width:794.000000pt;}
.x0_c00317{left:0.000000pt;}
.x2_c00317{left:72.258000pt;}
.x3_c00317{left:73.238800pt;}
.x5_c00317{left:99.811067pt;}
.x4_c00317{left:113.238800pt;}
.x1_c00317{left:701.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:1.161000;font-style: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);}
.m1_c00318{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls4_c00318{letter-spacing:-0.540000px;}
.ls3_c00318{letter-spacing:0.000000px;}
.ls0_c00318{letter-spacing:0.720000px;}
.ls2_c00318{letter-spacing:1.500000px;}
.ls1_c00318{letter-spacing:1.650000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00318{word-spacing:-21.060000px;}
.ws2_c00318{word-spacing:-11.700000px;}
.ws0_c00318{word-spacing:-10.200000px;}
.wsa_c00318{word-spacing:-2.952000px;}
.ws1c_c00318{word-spacing:-1.500000px;}
.wsd_c00318{word-spacing:-1.296000px;}
.ws1b_c00318{word-spacing:-0.360000px;}
.wsb_c00318{word-spacing:-0.288000px;}
.ws11_c00318{word-spacing:-0.216000px;}
.ws3_c00318{word-spacing:0.000000px;}
.wsc_c00318{word-spacing:1.152000px;}
.wsf_c00318{word-spacing:2.448000px;}
.ws12_c00318{word-spacing:2.952000px;}
.ws17_c00318{word-spacing:3.096000px;}
.ws9_c00318{word-spacing:3.384000px;}
.ws1a_c00318{word-spacing:5.184000px;}
.ws13_c00318{word-spacing:5.904000px;}
.ws8_c00318{word-spacing:5.976000px;}
.wse_c00318{word-spacing:7.056000px;}
.ws14_c00318{word-spacing:7.200000px;}
.ws7_c00318{word-spacing:7.704000px;}
.ws6_c00318{word-spacing:9.864000px;}
.ws10_c00318{word-spacing:10.800000px;}
.ws18_c00318{word-spacing:11.304000px;}
.ws4_c00318{word-spacing:12.672000px;}
.ws16_c00318{word-spacing:14.616000px;}
.ws19_c00318{word-spacing:14.760000px;}
.ws5_c00318{word-spacing:18.432000px;}
.ws15_c00318{word-spacing:22.968000px;}
._0_c00318{margin-left:-480.337200px;}
._4_c00318{margin-left:-5.803200px;}
._1_c00318{margin-left:-4.200000px;}
._2_c00318{margin-left:-2.145600px;}
._6_c00318{margin-left:-1.008000px;}
._3_c00318{width:1.051200px;}
._5_c00318{width:4.305600px;}
._7_c00318{width:14.954400px;}
.fc3_c00318{color:rgb(32,32,32);}
.fc2_c00318{color:rgb(233,83,14);}
.fc1_c00318{color:rgb(232,86,17);}
.fc4_c00318{color:rgb(157,157,156);}
.fc0_c00318{color:rgb(60,60,59);}
.fs1_c00318{font-size:42.000000px;}
.fs0_c00318{font-size:60.000000px;}
.fs4_c00318{font-size:66.000000px;}
.fs3_c00318{font-size:72.000000px;}
.fs2_c00318{font-size:108.000000px;}
.y0_c00318{bottom:0.000000px;}
.y1_c00318{bottom:41.250000px;}
.y1b_c00318{bottom:226.190700px;}
.y1a_c00318{bottom:256.196700px;}
.y19_c00318{bottom:286.202700px;}
.y18_c00318{bottom:316.208700px;}
.y17_c00318{bottom:346.214700px;}
.y16_c00318{bottom:376.220700px;}
.y15_c00318{bottom:406.226700px;}
.y14_c00318{bottom:436.232700px;}
.y13_c00318{bottom:466.238700px;}
.y12_c00318{bottom:496.244700px;}
.y11_c00318{bottom:526.250700px;}
.y10_c00318{bottom:556.256700px;}
.yf_c00318{bottom:586.262700px;}
.ye_c00318{bottom:616.268700px;}
.yd_c00318{bottom:646.274700px;}
.yc_c00318{bottom:676.280700px;}
.yb_c00318{bottom:706.286700px;}
.ya_c00318{bottom:736.292700px;}
.y9_c00318{bottom:766.298700px;}
.y22_c00318{bottom:766.334700px;}
.y8_c00318{bottom:796.304700px;}
.y21_c00318{bottom:796.334700px;}
.y7_c00318{bottom:826.310700px;}
.y20_c00318{bottom:826.334700px;}
.y6_c00318{bottom:856.316700px;}
.y1f_c00318{bottom:856.334700px;}
.y5_c00318{bottom:886.322700px;}
.y1e_c00318{bottom:886.334700px;}
.y4_c00318{bottom:916.328700px;}
.y1d_c00318{bottom:916.334700px;}
.y3_c00318{bottom:946.334700px;}
.y1c_c00318{bottom:946.376100px;}
.y2_c00318{bottom:1006.334700px;}
.h5_c00318{height:50.292000px;}
.h2_c00318{height:54.000000px;}
.h4_c00318{height:64.800000px;}
.h3_c00318{height:100.980000px;}
.h0_c00318{height:1262.835000px;}
.h1_c00318{height:1263.000000px;}
.w0_c00318{width:892.914000px;}
.w1_c00318{width:893.250000px;}
.x0_c00318{left:0.000000px;}
.x2_c00318{left:82.500000px;}
.x3_c00318{left:106.500000px;}
.x4_c00318{left:675.611100px;}
.x1_c00318{left:789.263850px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls4_c00318{letter-spacing:-0.480000pt;}
.ls3_c00318{letter-spacing:0.000000pt;}
.ls0_c00318{letter-spacing:0.640000pt;}
.ls2_c00318{letter-spacing:1.333333pt;}
.ls1_c00318{letter-spacing:1.466667pt;}
.ws1_c00318{word-spacing:-18.720000pt;}
.ws2_c00318{word-spacing:-10.400000pt;}
.ws0_c00318{word-spacing:-9.066667pt;}
.wsa_c00318{word-spacing:-2.624000pt;}
.ws1c_c00318{word-spacing:-1.333333pt;}
.wsd_c00318{word-spacing:-1.152000pt;}
.ws1b_c00318{word-spacing:-0.320000pt;}
.wsb_c00318{word-spacing:-0.256000pt;}
.ws11_c00318{word-spacing:-0.192000pt;}
.ws3_c00318{word-spacing:0.000000pt;}
.wsc_c00318{word-spacing:1.024000pt;}
.wsf_c00318{word-spacing:2.176000pt;}
.ws12_c00318{word-spacing:2.624000pt;}
.ws17_c00318{word-spacing:2.752000pt;}
.ws9_c00318{word-spacing:3.008000pt;}
.ws1a_c00318{word-spacing:4.608000pt;}
.ws13_c00318{word-spacing:5.248000pt;}
.ws8_c00318{word-spacing:5.312000pt;}
.wse_c00318{word-spacing:6.272000pt;}
.ws14_c00318{word-spacing:6.400000pt;}
.ws7_c00318{word-spacing:6.848000pt;}
.ws6_c00318{word-spacing:8.768000pt;}
.ws10_c00318{word-spacing:9.600000pt;}
.ws18_c00318{word-spacing:10.048000pt;}
.ws4_c00318{word-spacing:11.264000pt;}
.ws16_c00318{word-spacing:12.992000pt;}
.ws19_c00318{word-spacing:13.120000pt;}
.ws5_c00318{word-spacing:16.384000pt;}
.ws15_c00318{word-spacing:20.416000pt;}
._0_c00318{margin-left:-426.966400pt;}
._4_c00318{margin-left:-5.158400pt;}
._1_c00318{margin-left:-3.733333pt;}
._2_c00318{margin-left:-1.907200pt;}
._6_c00318{margin-left:-0.896000pt;}
._3_c00318{width:0.934400pt;}
._5_c00318{width:3.827200pt;}
._7_c00318{width:13.292800pt;}
.fs1_c00318{font-size:37.333333pt;}
.fs0_c00318{font-size:53.333333pt;}
.fs4_c00318{font-size:58.666667pt;}
.fs3_c00318{font-size:64.000000pt;}
.fs2_c00318{font-size:96.000000pt;}
.y0_c00318{bottom:0.000000pt;}
.y1_c00318{bottom:36.666667pt;}
.y1b_c00318{bottom:201.058400pt;}
.y1a_c00318{bottom:227.730400pt;}
.y19_c00318{bottom:254.402400pt;}
.y18_c00318{bottom:281.074400pt;}
.y17_c00318{bottom:307.746400pt;}
.y16_c00318{bottom:334.418400pt;}
.y15_c00318{bottom:361.090400pt;}
.y14_c00318{bottom:387.762400pt;}
.y13_c00318{bottom:414.434400pt;}
.y12_c00318{bottom:441.106400pt;}
.y11_c00318{bottom:467.778400pt;}
.y10_c00318{bottom:494.450400pt;}
.yf_c00318{bottom:521.122400pt;}
.ye_c00318{bottom:547.794400pt;}
.yd_c00318{bottom:574.466400pt;}
.yc_c00318{bottom:601.138400pt;}
.yb_c00318{bottom:627.810400pt;}
.ya_c00318{bottom:654.482400pt;}
.y9_c00318{bottom:681.154400pt;}
.y22_c00318{bottom:681.186400pt;}
.y8_c00318{bottom:707.826400pt;}
.y21_c00318{bottom:707.853067pt;}
.y7_c00318{bottom:734.498400pt;}
.y20_c00318{bottom:734.519733pt;}
.y6_c00318{bottom:761.170400pt;}
.y1f_c00318{bottom:761.186400pt;}
.y5_c00318{bottom:787.842400pt;}
.y1e_c00318{bottom:787.853067pt;}
.y4_c00318{bottom:814.514400pt;}
.y1d_c00318{bottom:814.519733pt;}
.y3_c00318{bottom:841.186400pt;}
.y1c_c00318{bottom:841.223200pt;}
.y2_c00318{bottom:894.519733pt;}
.h5_c00318{height:44.704000pt;}
.h2_c00318{height:48.000000pt;}
.h4_c00318{height:57.600000pt;}
.h3_c00318{height:89.760000pt;}
.h0_c00318{height:1122.520000pt;}
.h1_c00318{height:1122.666667pt;}
.w0_c00318{width:793.701333pt;}
.w1_c00318{width:794.000000pt;}
.x0_c00318{left:0.000000pt;}
.x2_c00318{left:73.333333pt;}
.x3_c00318{left:94.666667pt;}
.x4_c00318{left:600.543200pt;}
.x1_c00318{left:701.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_402d1165a50ba0e485df2db6.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00319;src:url('chunks/assets/font_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00319;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.161000;font-style: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);}
.m1_c00319{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls4_c00319{letter-spacing:-0.324000px;}
.ls3_c00319{letter-spacing:0.000000px;}
.ls0_c00319{letter-spacing:0.720000px;}
.ls2_c00319{letter-spacing:1.500000px;}
.ls1_c00319{letter-spacing:1.650000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00319{word-spacing:-21.276000px;}
.ws3_c00319{word-spacing:-14.850000px;}
.ws2_c00319{word-spacing:-12.960000px;}
.ws0_c00319{word-spacing:-10.200000px;}
.wse_c00319{word-spacing:-2.736000px;}
.wsb_c00319{word-spacing:-2.376000px;}
.ws13_c00319{word-spacing:-1.512000px;}
.ws1a_c00319{word-spacing:-1.500000px;}
.ws15_c00319{word-spacing:-0.648000px;}
.ws10_c00319{word-spacing:-0.504000px;}
.ws12_c00319{word-spacing:-0.432000px;}
.ws4_c00319{word-spacing:0.000000px;}
.wsa_c00319{word-spacing:0.864000px;}
.ws8_c00319{word-spacing:1.152000px;}
.wsd_c00319{word-spacing:1.368000px;}
.ws18_c00319{word-spacing:1.512000px;}
.ws19_c00319{word-spacing:2.376000px;}
.ws7_c00319{word-spacing:2.880000px;}
.ws9_c00319{word-spacing:3.312000px;}
.ws6_c00319{word-spacing:3.600000px;}
.ws11_c00319{word-spacing:5.472000px;}
.ws17_c00319{word-spacing:5.832000px;}
.wsf_c00319{word-spacing:6.768000px;}
.ws14_c00319{word-spacing:7.848000px;}
.ws5_c00319{word-spacing:9.144000px;}
.wsc_c00319{word-spacing:10.368000px;}
.ws16_c00319{word-spacing:12.168000px;}
._0_c00319{margin-left:-480.337200px;}
._3_c00319{margin-left:-5.760000px;}
._1_c00319{margin-left:-4.200000px;}
._4_c00319{margin-left:-2.160000px;}
._2_c00319{margin-left:-1.134000px;}
._5_c00319{width:1.044000px;}
.fc3_c00319{color:rgb(32,32,32);}
.fc2_c00319{color:rgb(233,83,14);}
.fc1_c00319{color:rgb(232,86,17);}
.fc4_c00319{color:rgb(157,157,156);}
.fc0_c00319{color:rgb(60,60,59);}
.fs1_c00319{font-size:42.000000px;}
.fs0_c00319{font-size:60.000000px;}
.fs4_c00319{font-size:66.000000px;}
.fs3_c00319{font-size:72.000000px;}
.fs2_c00319{font-size:108.000000px;}
.y0_c00319{bottom:0.000000px;}
.y1_c00319{bottom:41.250000px;}
.y19_c00319{bottom:286.202700px;}
.y18_c00319{bottom:316.208700px;}
.y17_c00319{bottom:346.214700px;}
.y16_c00319{bottom:376.220700px;}
.y15_c00319{bottom:406.226700px;}
.y14_c00319{bottom:436.232700px;}
.y13_c00319{bottom:466.238700px;}
.y12_c00319{bottom:496.244700px;}
.y11_c00319{bottom:526.250700px;}
.y10_c00319{bottom:556.256700px;}
.yf_c00319{bottom:586.262700px;}
.ye_c00319{bottom:616.268700px;}
.yd_c00319{bottom:646.274700px;}
.yc_c00319{bottom:676.280700px;}
.yb_c00319{bottom:706.286700px;}
.ya_c00319{bottom:736.292700px;}
.y9_c00319{bottom:766.298700px;}
.y8_c00319{bottom:796.304700px;}
.y1f_c00319{bottom:796.334700px;}
.y7_c00319{bottom:826.310700px;}
.y1e_c00319{bottom:826.334700px;}
.y6_c00319{bottom:856.316700px;}
.y1d_c00319{bottom:856.334700px;}
.y5_c00319{bottom:886.322700px;}
.y1c_c00319{bottom:886.334700px;}
.y4_c00319{bottom:916.328700px;}
.y1b_c00319{bottom:916.334700px;}
.y3_c00319{bottom:946.334700px;}
.y1a_c00319{bottom:946.376100px;}
.y2_c00319{bottom:1006.334700px;}
.h5_c00319{height:50.292000px;}
.h2_c00319{height:54.000000px;}
.h4_c00319{height:64.800000px;}
.h3_c00319{height:100.980000px;}
.h0_c00319{height:1262.835000px;}
.h1_c00319{height:1263.000000px;}
.w0_c00319{width:892.914000px;}
.w1_c00319{width:893.250000px;}
.x0_c00319{left:0.000000px;}
.x2_c00319{left:82.500000px;}
.x3_c00319{left:106.500000px;}
.x4_c00319{left:675.611100px;}
.x1_c00319{left:786.803850px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls4_c00319{letter-spacing:-0.288000pt;}
.ls3_c00319{letter-spacing:0.000000pt;}
.ls0_c00319{letter-spacing:0.640000pt;}
.ls2_c00319{letter-spacing:1.333333pt;}
.ls1_c00319{letter-spacing:1.466667pt;}
.ws1_c00319{word-spacing:-18.912000pt;}
.ws3_c00319{word-spacing:-13.200000pt;}
.ws2_c00319{word-spacing:-11.520000pt;}
.ws0_c00319{word-spacing:-9.066667pt;}
.wse_c00319{word-spacing:-2.432000pt;}
.wsb_c00319{word-spacing:-2.112000pt;}
.ws13_c00319{word-spacing:-1.344000pt;}
.ws1a_c00319{word-spacing:-1.333333pt;}
.ws15_c00319{word-spacing:-0.576000pt;}
.ws10_c00319{word-spacing:-0.448000pt;}
.ws12_c00319{word-spacing:-0.384000pt;}
.ws4_c00319{word-spacing:0.000000pt;}
.wsa_c00319{word-spacing:0.768000pt;}
.ws8_c00319{word-spacing:1.024000pt;}
.wsd_c00319{word-spacing:1.216000pt;}
.ws18_c00319{word-spacing:1.344000pt;}
.ws19_c00319{word-spacing:2.112000pt;}
.ws7_c00319{word-spacing:2.560000pt;}
.ws9_c00319{word-spacing:2.944000pt;}
.ws6_c00319{word-spacing:3.200000pt;}
.ws11_c00319{word-spacing:4.864000pt;}
.ws17_c00319{word-spacing:5.184000pt;}
.wsf_c00319{word-spacing:6.016000pt;}
.ws14_c00319{word-spacing:6.976000pt;}
.ws5_c00319{word-spacing:8.128000pt;}
.wsc_c00319{word-spacing:9.216000pt;}
.ws16_c00319{word-spacing:10.816000pt;}
._0_c00319{margin-left:-426.966400pt;}
._3_c00319{margin-left:-5.120000pt;}
._1_c00319{margin-left:-3.733333pt;}
._4_c00319{margin-left:-1.920000pt;}
._2_c00319{margin-left:-1.008000pt;}
._5_c00319{width:0.928000pt;}
.fs1_c00319{font-size:37.333333pt;}
.fs0_c00319{font-size:53.333333pt;}
.fs4_c00319{font-size:58.666667pt;}
.fs3_c00319{font-size:64.000000pt;}
.fs2_c00319{font-size:96.000000pt;}
.y0_c00319{bottom:0.000000pt;}
.y1_c00319{bottom:36.666667pt;}
.y19_c00319{bottom:254.402400pt;}
.y18_c00319{bottom:281.074400pt;}
.y17_c00319{bottom:307.746400pt;}
.y16_c00319{bottom:334.418400pt;}
.y15_c00319{bottom:361.090400pt;}
.y14_c00319{bottom:387.762400pt;}
.y13_c00319{bottom:414.434400pt;}
.y12_c00319{bottom:441.106400pt;}
.y11_c00319{bottom:467.778400pt;}
.y10_c00319{bottom:494.450400pt;}
.yf_c00319{bottom:521.122400pt;}
.ye_c00319{bottom:547.794400pt;}
.yd_c00319{bottom:574.466400pt;}
.yc_c00319{bottom:601.138400pt;}
.yb_c00319{bottom:627.810400pt;}
.ya_c00319{bottom:654.482400pt;}
.y9_c00319{bottom:681.154400pt;}
.y8_c00319{bottom:707.826400pt;}
.y1f_c00319{bottom:707.853067pt;}
.y7_c00319{bottom:734.498400pt;}
.y1e_c00319{bottom:734.519733pt;}
.y6_c00319{bottom:761.170400pt;}
.y1d_c00319{bottom:761.186400pt;}
.y5_c00319{bottom:787.842400pt;}
.y1c_c00319{bottom:787.853067pt;}
.y4_c00319{bottom:814.514400pt;}
.y1b_c00319{bottom:814.519733pt;}
.y3_c00319{bottom:841.186400pt;}
.y1a_c00319{bottom:841.223200pt;}
.y2_c00319{bottom:894.519733pt;}
.h5_c00319{height:44.704000pt;}
.h2_c00319{height:48.000000pt;}
.h4_c00319{height:57.600000pt;}
.h3_c00319{height:89.760000pt;}
.h0_c00319{height:1122.520000pt;}
.h1_c00319{height:1122.666667pt;}
.w0_c00319{width:793.701333pt;}
.w1_c00319{width:794.000000pt;}
.x0_c00319{left:0.000000pt;}
.x2_c00319{left:73.333333pt;}
.x3_c00319{left:94.666667pt;}
.x4_c00319{left:600.543200pt;}
.x1_c00319{left:699.381200pt;}
}





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

.ir_c00320:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00320;src:url('chunks/assets/font_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00320;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00320;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00320;src:url('chunks/assets/font_00b70ce91f6778552afd8d68.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls3_c00320{letter-spacing:-0.288000px;}
.ls2_c00320{letter-spacing:0.000000px;}
.ls0_c00320{letter-spacing:0.864000px;}
.ls1_c00320{letter-spacing:1.200000px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00320{word-spacing:-13.104000px;}
.ws1_c00320{word-spacing:-11.952000px;}
.ws0_c00320{word-spacing:-10.200000px;}
.wsa_c00320{word-spacing:-7.128000px;}
.ws4_c00320{word-spacing:-5.616000px;}
.ws5_c00320{word-spacing:-3.456000px;}
.ws7_c00320{word-spacing:-3.240000px;}
.ws8_c00320{word-spacing:-2.448000px;}
.ws6_c00320{word-spacing:-0.864000px;}
.ws3_c00320{word-spacing:0.000000px;}
.ws9_c00320{word-spacing:1.152000px;}
._0_c00320{margin-left:-480.337800px;}
._9_c00320{margin-left:-10.800000px;}
._a_c00320{margin-left:-8.760000px;}
._8_c00320{margin-left:-7.200000px;}
._7_c00320{margin-left:-5.688000px;}
._1_c00320{margin-left:-4.200000px;}
._2_c00320{margin-left:-2.160000px;}
._5_c00320{margin-left:-1.152000px;}
._6_c00320{width:1.368000px;}
._4_c00320{width:4.176000px;}
._3_c00320{width:5.616000px;}
.fc3_c00320{color:rgb(255,255,255);}
.fc2_c00320{color:rgb(233,83,14);}
.fc1_c00320{color:rgb(232,86,17);}
.fc0_c00320{color:rgb(60,60,59);}
.fs1_c00320{font-size:42.000000px;}
.fs0_c00320{font-size:60.000000px;}
.fs3_c00320{font-size:72.000000px;}
.fs4_c00320{font-size:120.000000px;}
.fs2_c00320{font-size:360.000000px;}
.y0_c00320{bottom:0.000000px;}
.y1_c00320{bottom:41.250000px;}
.y16_c00320{bottom:193.250700px;}
.y15_c00320{bottom:214.256700px;}
.y14_c00320{bottom:235.262700px;}
.y13_c00320{bottom:256.268700px;}
.y12_c00320{bottom:304.274700px;}
.y11_c00320{bottom:325.280700px;}
.y10_c00320{bottom:346.286700px;}
.yf_c00320{bottom:394.292700px;}
.ye_c00320{bottom:415.298700px;}
.yd_c00320{bottom:436.304700px;}
.yc_c00320{bottom:483.698700px;}
.yb_c00320{bottom:505.298700px;}
.ya_c00320{bottom:526.304700px;}
.y9_c00320{bottom:574.310700px;}
.y8_c00320{bottom:595.316700px;}
.y7_c00320{bottom:616.322700px;}
.y6_c00320{bottom:664.328700px;}
.y5_c00320{bottom:685.334700px;}
.y4_c00320{bottom:706.340700px;}
.y3_c00320{bottom:752.834700px;}
.y18_c00320{bottom:976.334700px;}
.y17_c00320{bottom:1006.334700px;}
.y2_c00320{bottom:1093.526700px;}
.h2_c00320{height:54.000000px;}
.h5_c00320{height:64.800000px;}
.h4_c00320{height:66.456000px;}
.h6_c00320{height:112.200000px;}
.h3_c00320{height:324.000000px;}
.h0_c00320{height:1262.835000px;}
.h1_c00320{height:1263.000000px;}
.w0_c00320{width:892.914000px;}
.w1_c00320{width:893.250000px;}
.x0_c00320{left:0.000000px;}
.x2_c00320{left:81.290250px;}
.x3_c00320{left:82.393650px;}
.x5_c00320{left:112.287450px;}
.x4_c00320{left:127.393650px;}
.x1_c00320{left:790.464000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls3_c00320{letter-spacing:-0.256000pt;}
.ls2_c00320{letter-spacing:0.000000pt;}
.ls0_c00320{letter-spacing:0.768000pt;}
.ls1_c00320{letter-spacing:1.066667pt;}
.ws2_c00320{word-spacing:-11.648000pt;}
.ws1_c00320{word-spacing:-10.624000pt;}
.ws0_c00320{word-spacing:-9.066667pt;}
.wsa_c00320{word-spacing:-6.336000pt;}
.ws4_c00320{word-spacing:-4.992000pt;}
.ws5_c00320{word-spacing:-3.072000pt;}
.ws7_c00320{word-spacing:-2.880000pt;}
.ws8_c00320{word-spacing:-2.176000pt;}
.ws6_c00320{word-spacing:-0.768000pt;}
.ws3_c00320{word-spacing:0.000000pt;}
.ws9_c00320{word-spacing:1.024000pt;}
._0_c00320{margin-left:-426.966933pt;}
._9_c00320{margin-left:-9.600000pt;}
._a_c00320{margin-left:-7.786667pt;}
._8_c00320{margin-left:-6.400000pt;}
._7_c00320{margin-left:-5.056000pt;}
._1_c00320{margin-left:-3.733333pt;}
._2_c00320{margin-left:-1.920000pt;}
._5_c00320{margin-left:-1.024000pt;}
._6_c00320{width:1.216000pt;}
._4_c00320{width:3.712000pt;}
._3_c00320{width:4.992000pt;}
.fs1_c00320{font-size:37.333333pt;}
.fs0_c00320{font-size:53.333333pt;}
.fs3_c00320{font-size:64.000000pt;}
.fs4_c00320{font-size:106.666667pt;}
.fs2_c00320{font-size:320.000000pt;}
.y0_c00320{bottom:0.000000pt;}
.y1_c00320{bottom:36.666667pt;}
.y16_c00320{bottom:171.778400pt;}
.y15_c00320{bottom:190.450400pt;}
.y14_c00320{bottom:209.122400pt;}
.y13_c00320{bottom:227.794400pt;}
.y12_c00320{bottom:270.466400pt;}
.y11_c00320{bottom:289.138400pt;}
.y10_c00320{bottom:307.810400pt;}
.yf_c00320{bottom:350.482400pt;}
.ye_c00320{bottom:369.154400pt;}
.yd_c00320{bottom:387.826400pt;}
.yc_c00320{bottom:429.954400pt;}
.yb_c00320{bottom:449.154400pt;}
.ya_c00320{bottom:467.826400pt;}
.y9_c00320{bottom:510.498400pt;}
.y8_c00320{bottom:529.170400pt;}
.y7_c00320{bottom:547.842400pt;}
.y6_c00320{bottom:590.514400pt;}
.y5_c00320{bottom:609.186400pt;}
.y4_c00320{bottom:627.858400pt;}
.y3_c00320{bottom:669.186400pt;}
.y18_c00320{bottom:867.853067pt;}
.y17_c00320{bottom:894.519733pt;}
.y2_c00320{bottom:972.023733pt;}
.h2_c00320{height:48.000000pt;}
.h5_c00320{height:57.600000pt;}
.h4_c00320{height:59.072000pt;}
.h6_c00320{height:99.733333pt;}
.h3_c00320{height:288.000000pt;}
.h0_c00320{height:1122.520000pt;}
.h1_c00320{height:1122.666667pt;}
.w0_c00320{width:793.701333pt;}
.w1_c00320{width:794.000000pt;}
.x0_c00320{left:0.000000pt;}
.x2_c00320{left:72.258000pt;}
.x3_c00320{left:73.238800pt;}
.x5_c00320{left:99.811067pt;}
.x4_c00320{left:113.238800pt;}
.x1_c00320{left:702.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.161000;font-style: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);}
.m1_c00321{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls4_c00321{letter-spacing:-0.540000px;}
.ls3_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:0.720000px;}
.ls2_c00321{letter-spacing:1.500000px;}
.ls1_c00321{letter-spacing:1.650000px;}
.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:-21.060000px;}
.ws0_c00321{word-spacing:-10.200000px;}
.ws19_c00321{word-spacing:-3.600000px;}
.ws5_c00321{word-spacing:-2.880000px;}
.ws4_c00321{word-spacing:-2.448000px;}
.ws1c_c00321{word-spacing:-1.500000px;}
.wsd_c00321{word-spacing:-1.152000px;}
.ws17_c00321{word-spacing:-1.080000px;}
.ws8_c00321{word-spacing:-0.360000px;}
.ws6_c00321{word-spacing:-0.288000px;}
.ws1b_c00321{word-spacing:-0.144000px;}
.ws2_c00321{word-spacing:0.000000px;}
.ws10_c00321{word-spacing:0.144000px;}
.ws15_c00321{word-spacing:0.288000px;}
.wsb_c00321{word-spacing:0.432000px;}
.wsf_c00321{word-spacing:0.792000px;}
.ws7_c00321{word-spacing:1.728000px;}
.ws13_c00321{word-spacing:2.808000px;}
.ws3_c00321{word-spacing:2.952000px;}
.wsc_c00321{word-spacing:3.024000px;}
.ws14_c00321{word-spacing:3.096000px;}
.ws16_c00321{word-spacing:3.384000px;}
.ws9_c00321{word-spacing:4.968000px;}
.ws12_c00321{word-spacing:6.984000px;}
.ws11_c00321{word-spacing:8.856000px;}
.wsa_c00321{word-spacing:10.224000px;}
.wse_c00321{word-spacing:11.520000px;}
.ws18_c00321{word-spacing:12.240000px;}
.ws1a_c00321{word-spacing:15.552000px;}
._0_c00321{margin-left:-480.336600px;}
._3_c00321{margin-left:-8.748000px;}
._5_c00321{margin-left:-7.164000px;}
._4_c00321{margin-left:-6.091200px;}
._1_c00321{margin-left:-4.200000px;}
._2_c00321{margin-left:-1.440000px;}
._6_c00321{width:3.600000px;}
.fc3_c00321{color:rgb(32,32,32);}
.fc2_c00321{color:rgb(233,83,14);}
.fc1_c00321{color:rgb(232,86,17);}
.fc4_c00321{color:rgb(157,157,156);}
.fc0_c00321{color:rgb(60,60,59);}
.fs1_c00321{font-size:42.000000px;}
.fs0_c00321{font-size:60.000000px;}
.fs4_c00321{font-size:66.000000px;}
.fs3_c00321{font-size:72.000000px;}
.fs2_c00321{font-size:108.000000px;}
.y0_c00321{bottom:0.000000px;}
.y1_c00321{bottom:41.250000px;}
.y1e_c00321{bottom:76.196700px;}
.y1d_c00321{bottom:106.202700px;}
.y1c_c00321{bottom:136.208700px;}
.y1b_c00321{bottom:196.202700px;}
.y1a_c00321{bottom:226.208700px;}
.y19_c00321{bottom:256.214700px;}
.y18_c00321{bottom:286.220700px;}
.y17_c00321{bottom:316.226700px;}
.y16_c00321{bottom:346.232700px;}
.y15_c00321{bottom:376.238700px;}
.y14_c00321{bottom:406.244700px;}
.y13_c00321{bottom:436.250700px;}
.y12_c00321{bottom:496.244700px;}
.y11_c00321{bottom:526.250700px;}
.y10_c00321{bottom:556.256700px;}
.yf_c00321{bottom:586.262700px;}
.ye_c00321{bottom:616.268700px;}
.yd_c00321{bottom:646.274700px;}
.yc_c00321{bottom:676.280700px;}
.yb_c00321{bottom:706.286700px;}
.ya_c00321{bottom:736.292700px;}
.y9_c00321{bottom:766.298700px;}
.y8_c00321{bottom:796.304700px;}
.y24_c00321{bottom:796.334700px;}
.y7_c00321{bottom:826.310700px;}
.y23_c00321{bottom:826.334700px;}
.y6_c00321{bottom:856.316700px;}
.y22_c00321{bottom:856.334700px;}
.y5_c00321{bottom:886.322700px;}
.y21_c00321{bottom:886.334700px;}
.y4_c00321{bottom:916.328700px;}
.y20_c00321{bottom:916.334700px;}
.y3_c00321{bottom:946.334700px;}
.y1f_c00321{bottom:946.376100px;}
.y2_c00321{bottom:1006.334700px;}
.h5_c00321{height:50.292000px;}
.h2_c00321{height:54.000000px;}
.h4_c00321{height:64.800000px;}
.h3_c00321{height:100.980000px;}
.h0_c00321{height:1262.835000px;}
.h1_c00321{height:1263.000000px;}
.w0_c00321{width:892.914000px;}
.w1_c00321{width:893.250000px;}
.x0_c00321{left:0.000000px;}
.x2_c00321{left:82.500000px;}
.x3_c00321{left:106.500000px;}
.x4_c00321{left:675.611100px;}
.x1_c00321{left:787.988700px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls4_c00321{letter-spacing:-0.480000pt;}
.ls3_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:0.640000pt;}
.ls2_c00321{letter-spacing:1.333333pt;}
.ls1_c00321{letter-spacing:1.466667pt;}
.ws1_c00321{word-spacing:-18.720000pt;}
.ws0_c00321{word-spacing:-9.066667pt;}
.ws19_c00321{word-spacing:-3.200000pt;}
.ws5_c00321{word-spacing:-2.560000pt;}
.ws4_c00321{word-spacing:-2.176000pt;}
.ws1c_c00321{word-spacing:-1.333333pt;}
.wsd_c00321{word-spacing:-1.024000pt;}
.ws17_c00321{word-spacing:-0.960000pt;}
.ws8_c00321{word-spacing:-0.320000pt;}
.ws6_c00321{word-spacing:-0.256000pt;}
.ws1b_c00321{word-spacing:-0.128000pt;}
.ws2_c00321{word-spacing:0.000000pt;}
.ws10_c00321{word-spacing:0.128000pt;}
.ws15_c00321{word-spacing:0.256000pt;}
.wsb_c00321{word-spacing:0.384000pt;}
.wsf_c00321{word-spacing:0.704000pt;}
.ws7_c00321{word-spacing:1.536000pt;}
.ws13_c00321{word-spacing:2.496000pt;}
.ws3_c00321{word-spacing:2.624000pt;}
.wsc_c00321{word-spacing:2.688000pt;}
.ws14_c00321{word-spacing:2.752000pt;}
.ws16_c00321{word-spacing:3.008000pt;}
.ws9_c00321{word-spacing:4.416000pt;}
.ws12_c00321{word-spacing:6.208000pt;}
.ws11_c00321{word-spacing:7.872000pt;}
.wsa_c00321{word-spacing:9.088000pt;}
.wse_c00321{word-spacing:10.240000pt;}
.ws18_c00321{word-spacing:10.880000pt;}
.ws1a_c00321{word-spacing:13.824000pt;}
._0_c00321{margin-left:-426.965867pt;}
._3_c00321{margin-left:-7.776000pt;}
._5_c00321{margin-left:-6.368000pt;}
._4_c00321{margin-left:-5.414400pt;}
._1_c00321{margin-left:-3.733333pt;}
._2_c00321{margin-left:-1.280000pt;}
._6_c00321{width:3.200000pt;}
.fs1_c00321{font-size:37.333333pt;}
.fs0_c00321{font-size:53.333333pt;}
.fs4_c00321{font-size:58.666667pt;}
.fs3_c00321{font-size:64.000000pt;}
.fs2_c00321{font-size:96.000000pt;}
.y0_c00321{bottom:0.000000pt;}
.y1_c00321{bottom:36.666667pt;}
.y1e_c00321{bottom:67.730400pt;}
.y1d_c00321{bottom:94.402400pt;}
.y1c_c00321{bottom:121.074400pt;}
.y1b_c00321{bottom:174.402400pt;}
.y1a_c00321{bottom:201.074400pt;}
.y19_c00321{bottom:227.746400pt;}
.y18_c00321{bottom:254.418400pt;}
.y17_c00321{bottom:281.090400pt;}
.y16_c00321{bottom:307.762400pt;}
.y15_c00321{bottom:334.434400pt;}
.y14_c00321{bottom:361.106400pt;}
.y13_c00321{bottom:387.778400pt;}
.y12_c00321{bottom:441.106400pt;}
.y11_c00321{bottom:467.778400pt;}
.y10_c00321{bottom:494.450400pt;}
.yf_c00321{bottom:521.122400pt;}
.ye_c00321{bottom:547.794400pt;}
.yd_c00321{bottom:574.466400pt;}
.yc_c00321{bottom:601.138400pt;}
.yb_c00321{bottom:627.810400pt;}
.ya_c00321{bottom:654.482400pt;}
.y9_c00321{bottom:681.154400pt;}
.y8_c00321{bottom:707.826400pt;}
.y24_c00321{bottom:707.853067pt;}
.y7_c00321{bottom:734.498400pt;}
.y23_c00321{bottom:734.519733pt;}
.y6_c00321{bottom:761.170400pt;}
.y22_c00321{bottom:761.186400pt;}
.y5_c00321{bottom:787.842400pt;}
.y21_c00321{bottom:787.853067pt;}
.y4_c00321{bottom:814.514400pt;}
.y20_c00321{bottom:814.519733pt;}
.y3_c00321{bottom:841.186400pt;}
.y1f_c00321{bottom:841.223200pt;}
.y2_c00321{bottom:894.519733pt;}
.h5_c00321{height:44.704000pt;}
.h2_c00321{height:48.000000pt;}
.h4_c00321{height:57.600000pt;}
.h3_c00321{height:89.760000pt;}
.h0_c00321{height:1122.520000pt;}
.h1_c00321{height:1122.666667pt;}
.w0_c00321{width:793.701333pt;}
.w1_c00321{width:794.000000pt;}
.x0_c00321{left:0.000000pt;}
.x2_c00321{left:73.333333pt;}
.x3_c00321{left:94.666667pt;}
.x4_c00321{left:600.543200pt;}
.x1_c00321{left:700.434400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.161000;font-style: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);}
.m1_c00322{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls4_c00322{letter-spacing:-0.324000px;}
.ls3_c00322{letter-spacing:0.000000px;}
.ls0_c00322{letter-spacing:0.720000px;}
.ls2_c00322{letter-spacing:1.500000px;}
.ls1_c00322{letter-spacing:1.650000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00322{word-spacing:-21.276000px;}
.ws2_c00322{word-spacing:-14.850000px;}
.ws0_c00322{word-spacing:-10.200000px;}
.ws5_c00322{word-spacing:-4.104000px;}
.ws9_c00322{word-spacing:-1.008000px;}
.wsd_c00322{word-spacing:-0.720000px;}
.ws3_c00322{word-spacing:0.000000px;}
.ws13_c00322{word-spacing:0.072000px;}
.ws15_c00322{word-spacing:0.648000px;}
.wsb_c00322{word-spacing:1.008000px;}
.ws7_c00322{word-spacing:1.944000px;}
.ws14_c00322{word-spacing:2.952000px;}
.ws6_c00322{word-spacing:3.168000px;}
.ws16_c00322{word-spacing:3.600000px;}
.wsc_c00322{word-spacing:3.888000px;}
.wse_c00322{word-spacing:4.104000px;}
.ws8_c00322{word-spacing:4.176000px;}
.ws19_c00322{word-spacing:5.040000px;}
.ws12_c00322{word-spacing:6.408000px;}
.ws1a_c00322{word-spacing:8.208000px;}
.ws10_c00322{word-spacing:8.280000px;}
.ws11_c00322{word-spacing:8.712000px;}
.ws4_c00322{word-spacing:9.360000px;}
.wsf_c00322{word-spacing:13.176000px;}
.wsa_c00322{word-spacing:13.248000px;}
.ws18_c00322{word-spacing:17.352000px;}
.ws17_c00322{word-spacing:21.528000px;}
._0_c00322{margin-left:-480.337200px;}
._3_c00322{margin-left:-6.192000px;}
._1_c00322{margin-left:-4.200000px;}
._4_c00322{margin-left:-2.460000px;}
._2_c00322{margin-left:-1.440000px;}
.fc3_c00322{color:rgb(233,83,14);}
.fc2_c00322{color:rgb(32,32,32);}
.fc1_c00322{color:rgb(232,86,17);}
.fc4_c00322{color:rgb(157,157,156);}
.fc0_c00322{color:rgb(60,60,59);}
.fs1_c00322{font-size:42.000000px;}
.fs0_c00322{font-size:60.000000px;}
.fs4_c00322{font-size:66.000000px;}
.fs2_c00322{font-size:72.000000px;}
.fs3_c00322{font-size:108.000000px;}
.y0_c00322{bottom:0.000000px;}
.y1_c00322{bottom:41.250000px;}
.y1b_c00322{bottom:166.268700px;}
.y1a_c00322{bottom:196.274700px;}
.y19_c00322{bottom:226.280700px;}
.y18_c00322{bottom:256.286700px;}
.y17_c00322{bottom:316.280700px;}
.y16_c00322{bottom:346.286700px;}
.y15_c00322{bottom:376.292700px;}
.y14_c00322{bottom:406.298700px;}
.y13_c00322{bottom:436.304700px;}
.y12_c00322{bottom:466.310700px;}
.y20_c00322{bottom:466.334700px;}
.y11_c00322{bottom:496.316700px;}
.y1f_c00322{bottom:496.334700px;}
.y10_c00322{bottom:526.322700px;}
.y1e_c00322{bottom:526.334700px;}
.yf_c00322{bottom:556.328700px;}
.y1d_c00322{bottom:556.334700px;}
.ye_c00322{bottom:586.334700px;}
.y1c_c00322{bottom:586.375950px;}
.yd_c00322{bottom:646.334700px;}
.yc_c00322{bottom:706.286700px;}
.yb_c00322{bottom:736.292700px;}
.ya_c00322{bottom:766.298700px;}
.y9_c00322{bottom:796.304700px;}
.y8_c00322{bottom:826.310700px;}
.y7_c00322{bottom:872.804700px;}
.y6_c00322{bottom:902.810700px;}
.y5_c00322{bottom:932.816700px;}
.y4_c00322{bottom:962.822700px;}
.y3_c00322{bottom:992.828700px;}
.y2_c00322{bottom:1022.834700px;}
.h5_c00322{height:50.292000px;}
.h2_c00322{height:54.000000px;}
.h3_c00322{height:64.800000px;}
.h4_c00322{height:100.980000px;}
.h0_c00322{height:1262.835000px;}
.h1_c00322{height:1263.000000px;}
.w0_c00322{width:892.914000px;}
.w1_c00322{width:893.250000px;}
.x0_c00322{left:0.000000px;}
.x3_c00322{left:82.500000px;}
.x2_c00322{left:106.500000px;}
.x4_c00322{left:675.611100px;}
.x1_c00322{left:787.838850px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls4_c00322{letter-spacing:-0.288000pt;}
.ls3_c00322{letter-spacing:0.000000pt;}
.ls0_c00322{letter-spacing:0.640000pt;}
.ls2_c00322{letter-spacing:1.333333pt;}
.ls1_c00322{letter-spacing:1.466667pt;}
.ws1_c00322{word-spacing:-18.912000pt;}
.ws2_c00322{word-spacing:-13.200000pt;}
.ws0_c00322{word-spacing:-9.066667pt;}
.ws5_c00322{word-spacing:-3.648000pt;}
.ws9_c00322{word-spacing:-0.896000pt;}
.wsd_c00322{word-spacing:-0.640000pt;}
.ws3_c00322{word-spacing:0.000000pt;}
.ws13_c00322{word-spacing:0.064000pt;}
.ws15_c00322{word-spacing:0.576000pt;}
.wsb_c00322{word-spacing:0.896000pt;}
.ws7_c00322{word-spacing:1.728000pt;}
.ws14_c00322{word-spacing:2.624000pt;}
.ws6_c00322{word-spacing:2.816000pt;}
.ws16_c00322{word-spacing:3.200000pt;}
.wsc_c00322{word-spacing:3.456000pt;}
.wse_c00322{word-spacing:3.648000pt;}
.ws8_c00322{word-spacing:3.712000pt;}
.ws19_c00322{word-spacing:4.480000pt;}
.ws12_c00322{word-spacing:5.696000pt;}
.ws1a_c00322{word-spacing:7.296000pt;}
.ws10_c00322{word-spacing:7.360000pt;}
.ws11_c00322{word-spacing:7.744000pt;}
.ws4_c00322{word-spacing:8.320000pt;}
.wsf_c00322{word-spacing:11.712000pt;}
.wsa_c00322{word-spacing:11.776000pt;}
.ws18_c00322{word-spacing:15.424000pt;}
.ws17_c00322{word-spacing:19.136000pt;}
._0_c00322{margin-left:-426.966400pt;}
._3_c00322{margin-left:-5.504000pt;}
._1_c00322{margin-left:-3.733333pt;}
._4_c00322{margin-left:-2.186667pt;}
._2_c00322{margin-left:-1.280000pt;}
.fs1_c00322{font-size:37.333333pt;}
.fs0_c00322{font-size:53.333333pt;}
.fs4_c00322{font-size:58.666667pt;}
.fs2_c00322{font-size:64.000000pt;}
.fs3_c00322{font-size:96.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y1_c00322{bottom:36.666667pt;}
.y1b_c00322{bottom:147.794400pt;}
.y1a_c00322{bottom:174.466400pt;}
.y19_c00322{bottom:201.138400pt;}
.y18_c00322{bottom:227.810400pt;}
.y17_c00322{bottom:281.138400pt;}
.y16_c00322{bottom:307.810400pt;}
.y15_c00322{bottom:334.482400pt;}
.y14_c00322{bottom:361.154400pt;}
.y13_c00322{bottom:387.826400pt;}
.y12_c00322{bottom:414.498400pt;}
.y20_c00322{bottom:414.519733pt;}
.y11_c00322{bottom:441.170400pt;}
.y1f_c00322{bottom:441.186400pt;}
.y10_c00322{bottom:467.842400pt;}
.y1e_c00322{bottom:467.853067pt;}
.yf_c00322{bottom:494.514400pt;}
.y1d_c00322{bottom:494.519733pt;}
.ye_c00322{bottom:521.186400pt;}
.y1c_c00322{bottom:521.223067pt;}
.yd_c00322{bottom:574.519733pt;}
.yc_c00322{bottom:627.810400pt;}
.yb_c00322{bottom:654.482400pt;}
.ya_c00322{bottom:681.154400pt;}
.y9_c00322{bottom:707.826400pt;}
.y8_c00322{bottom:734.498400pt;}
.y7_c00322{bottom:775.826400pt;}
.y6_c00322{bottom:802.498400pt;}
.y5_c00322{bottom:829.170400pt;}
.y4_c00322{bottom:855.842400pt;}
.y3_c00322{bottom:882.514400pt;}
.y2_c00322{bottom:909.186400pt;}
.h5_c00322{height:44.704000pt;}
.h2_c00322{height:48.000000pt;}
.h3_c00322{height:57.600000pt;}
.h4_c00322{height:89.760000pt;}
.h0_c00322{height:1122.520000pt;}
.h1_c00322{height:1122.666667pt;}
.w0_c00322{width:793.701333pt;}
.w1_c00322{width:794.000000pt;}
.x0_c00322{left:0.000000pt;}
.x3_c00322{left:73.333333pt;}
.x2_c00322{left:94.666667pt;}
.x4_c00322{left:600.543200pt;}
.x1_c00322{left:700.301200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00323{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls1_c00323{letter-spacing:0.000000px;}
.ls0_c00323{letter-spacing:0.720000px;}
.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:-10.200000px;}
.ws12_c00323{word-spacing:-1.368000px;}
.ws5_c00323{word-spacing:-1.152000px;}
.ws8_c00323{word-spacing:-1.008000px;}
.ws3_c00323{word-spacing:-0.720000px;}
.ws6_c00323{word-spacing:-0.216000px;}
.ws1_c00323{word-spacing:0.000000px;}
.wse_c00323{word-spacing:0.072000px;}
.wsd_c00323{word-spacing:1.008000px;}
.wsa_c00323{word-spacing:1.224000px;}
.wsc_c00323{word-spacing:1.440000px;}
.wsb_c00323{word-spacing:1.512000px;}
.ws4_c00323{word-spacing:1.584000px;}
.wsf_c00323{word-spacing:2.232000px;}
.ws7_c00323{word-spacing:2.880000px;}
.ws9_c00323{word-spacing:5.328000px;}
.ws11_c00323{word-spacing:6.624000px;}
.ws10_c00323{word-spacing:8.784000px;}
.ws2_c00323{word-spacing:10.800000px;}
._0_c00323{margin-left:-480.337200px;}
._3_c00323{margin-left:-5.767200px;}
._1_c00323{margin-left:-4.200000px;}
._4_c00323{margin-left:-2.880000px;}
._2_c00323{margin-left:-1.432800px;}
.fc2_c00323{color:rgb(32,32,32);}
.fc1_c00323{color:rgb(232,86,17);}
.fc0_c00323{color:rgb(60,60,59);}
.fs1_c00323{font-size:42.000000px;}
.fs0_c00323{font-size:60.000000px;}
.fs2_c00323{font-size:72.000000px;}
.y0_c00323{bottom:0.000000px;}
.y1_c00323{bottom:41.250000px;}
.y15_c00323{bottom:376.256700px;}
.y14_c00323{bottom:406.262700px;}
.y13_c00323{bottom:436.268700px;}
.y12_c00323{bottom:466.274700px;}
.y11_c00323{bottom:526.268700px;}
.y10_c00323{bottom:556.274700px;}
.yf_c00323{bottom:586.280700px;}
.ye_c00323{bottom:616.286700px;}
.yd_c00323{bottom:646.292700px;}
.yc_c00323{bottom:676.298700px;}
.yb_c00323{bottom:706.304700px;}
.ya_c00323{bottom:736.310700px;}
.y9_c00323{bottom:796.304700px;}
.y8_c00323{bottom:826.310700px;}
.y7_c00323{bottom:856.316700px;}
.y6_c00323{bottom:886.322700px;}
.y5_c00323{bottom:916.328700px;}
.y4_c00323{bottom:946.334700px;}
.y3_c00323{bottom:992.828700px;}
.y2_c00323{bottom:1022.834700px;}
.h2_c00323{height:54.000000px;}
.h3_c00323{height:64.800000px;}
.h0_c00323{height:1262.835000px;}
.h1_c00323{height:1263.000000px;}
.w0_c00323{width:892.914000px;}
.w1_c00323{width:893.250000px;}
.x0_c00323{left:0.000000px;}
.x2_c00323{left:106.500000px;}
.x1_c00323{left:786.863850px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls1_c00323{letter-spacing:0.000000pt;}
.ls0_c00323{letter-spacing:0.640000pt;}
.ws0_c00323{word-spacing:-9.066667pt;}
.ws12_c00323{word-spacing:-1.216000pt;}
.ws5_c00323{word-spacing:-1.024000pt;}
.ws8_c00323{word-spacing:-0.896000pt;}
.ws3_c00323{word-spacing:-0.640000pt;}
.ws6_c00323{word-spacing:-0.192000pt;}
.ws1_c00323{word-spacing:0.000000pt;}
.wse_c00323{word-spacing:0.064000pt;}
.wsd_c00323{word-spacing:0.896000pt;}
.wsa_c00323{word-spacing:1.088000pt;}
.wsc_c00323{word-spacing:1.280000pt;}
.wsb_c00323{word-spacing:1.344000pt;}
.ws4_c00323{word-spacing:1.408000pt;}
.wsf_c00323{word-spacing:1.984000pt;}
.ws7_c00323{word-spacing:2.560000pt;}
.ws9_c00323{word-spacing:4.736000pt;}
.ws11_c00323{word-spacing:5.888000pt;}
.ws10_c00323{word-spacing:7.808000pt;}
.ws2_c00323{word-spacing:9.600000pt;}
._0_c00323{margin-left:-426.966400pt;}
._3_c00323{margin-left:-5.126400pt;}
._1_c00323{margin-left:-3.733333pt;}
._4_c00323{margin-left:-2.560000pt;}
._2_c00323{margin-left:-1.273600pt;}
.fs1_c00323{font-size:37.333333pt;}
.fs0_c00323{font-size:53.333333pt;}
.fs2_c00323{font-size:64.000000pt;}
.y0_c00323{bottom:0.000000pt;}
.y1_c00323{bottom:36.666667pt;}
.y15_c00323{bottom:334.450400pt;}
.y14_c00323{bottom:361.122400pt;}
.y13_c00323{bottom:387.794400pt;}
.y12_c00323{bottom:414.466400pt;}
.y11_c00323{bottom:467.794400pt;}
.y10_c00323{bottom:494.466400pt;}
.yf_c00323{bottom:521.138400pt;}
.ye_c00323{bottom:547.810400pt;}
.yd_c00323{bottom:574.482400pt;}
.yc_c00323{bottom:601.154400pt;}
.yb_c00323{bottom:627.826400pt;}
.ya_c00323{bottom:654.498400pt;}
.y9_c00323{bottom:707.826400pt;}
.y8_c00323{bottom:734.498400pt;}
.y7_c00323{bottom:761.170400pt;}
.y6_c00323{bottom:787.842400pt;}
.y5_c00323{bottom:814.514400pt;}
.y4_c00323{bottom:841.186400pt;}
.y3_c00323{bottom:882.514400pt;}
.y2_c00323{bottom:909.186400pt;}
.h2_c00323{height:48.000000pt;}
.h3_c00323{height:57.600000pt;}
.h0_c00323{height:1122.520000pt;}
.h1_c00323{height:1122.666667pt;}
.w0_c00323{width:793.701333pt;}
.w1_c00323{width:794.000000pt;}
.x0_c00323{left:0.000000pt;}
.x2_c00323{left:94.666667pt;}
.x1_c00323{left:699.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00324;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:1.155000;font-style: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);}
.m1_c00324{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls3_c00324{letter-spacing:-0.288000px;}
.ls2_c00324{letter-spacing:0.000000px;}
.ls0_c00324{letter-spacing:0.864000px;}
.ls1_c00324{letter-spacing:1.200000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00324{word-spacing:-13.104000px;}
.ws2_c00324{word-spacing:-11.952000px;}
.ws0_c00324{word-spacing:-10.200000px;}
.ws9_c00324{word-spacing:-8.040000px;}
.ws5_c00324{word-spacing:-7.344000px;}
.ws4_c00324{word-spacing:-6.264000px;}
.ws8_c00324{word-spacing:-3.600000px;}
.ws7_c00324{word-spacing:-1.728000px;}
.ws6_c00324{word-spacing:-0.864000px;}
.ws3_c00324{word-spacing:0.000000px;}
._0_c00324{margin-left:-480.336600px;}
._9_c00324{margin-left:-11.256000px;}
._8_c00324{margin-left:-9.408000px;}
._a_c00324{margin-left:-8.160000px;}
._4_c00324{margin-left:-6.480000px;}
._1_c00324{margin-left:-4.200000px;}
._6_c00324{margin-left:-2.592000px;}
._3_c00324{margin-left:-1.440000px;}
._7_c00324{width:1.728000px;}
._2_c00324{width:6.264000px;}
._5_c00324{width:7.344000px;}
.fc3_c00324{color:rgb(255,255,255);}
.fc2_c00324{color:rgb(233,83,14);}
.fc1_c00324{color:rgb(232,86,17);}
.fc0_c00324{color:rgb(60,60,59);}
.fs1_c00324{font-size:42.000000px;}
.fs0_c00324{font-size:60.000000px;}
.fs3_c00324{font-size:72.000000px;}
.fs4_c00324{font-size:120.000000px;}
.fs2_c00324{font-size:360.000000px;}
.y0_c00324{bottom:0.000000px;}
.y1_c00324{bottom:41.250000px;}
.ye_c00324{bottom:424.280700px;}
.yd_c00324{bottom:445.286700px;}
.yc_c00324{bottom:466.292700px;}
.yb_c00324{bottom:523.298700px;}
.ya_c00324{bottom:544.304700px;}
.y9_c00324{bottom:565.310700px;}
.y8_c00324{bottom:586.316700px;}
.y7_c00324{bottom:643.322700px;}
.y6_c00324{bottom:664.328700px;}
.y5_c00324{bottom:685.334700px;}
.y4_c00324{bottom:706.340700px;}
.y3_c00324{bottom:752.834700px;}
.y12_c00324{bottom:916.334700px;}
.y11_c00324{bottom:946.334700px;}
.y10_c00324{bottom:976.334700px;}
.yf_c00324{bottom:1006.334700px;}
.y2_c00324{bottom:1093.526700px;}
.h2_c00324{height:54.000000px;}
.h5_c00324{height:64.800000px;}
.h4_c00324{height:66.456000px;}
.h6_c00324{height:112.200000px;}
.h3_c00324{height:324.000000px;}
.h0_c00324{height:1262.835000px;}
.h1_c00324{height:1263.000000px;}
.w0_c00324{width:892.914000px;}
.w1_c00324{width:893.250000px;}
.x0_c00324{left:0.000000px;}
.x2_c00324{left:81.290250px;}
.x3_c00324{left:82.393650px;}
.x5_c00324{left:112.287450px;}
.x4_c00324{left:127.393650px;}
.x1_c00324{left:787.913700px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls3_c00324{letter-spacing:-0.256000pt;}
.ls2_c00324{letter-spacing:0.000000pt;}
.ls0_c00324{letter-spacing:0.768000pt;}
.ls1_c00324{letter-spacing:1.066667pt;}
.ws1_c00324{word-spacing:-11.648000pt;}
.ws2_c00324{word-spacing:-10.624000pt;}
.ws0_c00324{word-spacing:-9.066667pt;}
.ws9_c00324{word-spacing:-7.146667pt;}
.ws5_c00324{word-spacing:-6.528000pt;}
.ws4_c00324{word-spacing:-5.568000pt;}
.ws8_c00324{word-spacing:-3.200000pt;}
.ws7_c00324{word-spacing:-1.536000pt;}
.ws6_c00324{word-spacing:-0.768000pt;}
.ws3_c00324{word-spacing:0.000000pt;}
._0_c00324{margin-left:-426.965867pt;}
._9_c00324{margin-left:-10.005333pt;}
._8_c00324{margin-left:-8.362667pt;}
._a_c00324{margin-left:-7.253333pt;}
._4_c00324{margin-left:-5.760000pt;}
._1_c00324{margin-left:-3.733333pt;}
._6_c00324{margin-left:-2.304000pt;}
._3_c00324{margin-left:-1.280000pt;}
._7_c00324{width:1.536000pt;}
._2_c00324{width:5.568000pt;}
._5_c00324{width:6.528000pt;}
.fs1_c00324{font-size:37.333333pt;}
.fs0_c00324{font-size:53.333333pt;}
.fs3_c00324{font-size:64.000000pt;}
.fs4_c00324{font-size:106.666667pt;}
.fs2_c00324{font-size:320.000000pt;}
.y0_c00324{bottom:0.000000pt;}
.y1_c00324{bottom:36.666667pt;}
.ye_c00324{bottom:377.138400pt;}
.yd_c00324{bottom:395.810400pt;}
.yc_c00324{bottom:414.482400pt;}
.yb_c00324{bottom:465.154400pt;}
.ya_c00324{bottom:483.826400pt;}
.y9_c00324{bottom:502.498400pt;}
.y8_c00324{bottom:521.170400pt;}
.y7_c00324{bottom:571.842400pt;}
.y6_c00324{bottom:590.514400pt;}
.y5_c00324{bottom:609.186400pt;}
.y4_c00324{bottom:627.858400pt;}
.y3_c00324{bottom:669.186400pt;}
.y12_c00324{bottom:814.519733pt;}
.y11_c00324{bottom:841.186400pt;}
.y10_c00324{bottom:867.853067pt;}
.yf_c00324{bottom:894.519733pt;}
.y2_c00324{bottom:972.023733pt;}
.h2_c00324{height:48.000000pt;}
.h5_c00324{height:57.600000pt;}
.h4_c00324{height:59.072000pt;}
.h6_c00324{height:99.733333pt;}
.h3_c00324{height:288.000000pt;}
.h0_c00324{height:1122.520000pt;}
.h1_c00324{height:1122.666667pt;}
.w0_c00324{width:793.701333pt;}
.w1_c00324{width:794.000000pt;}
.x0_c00324{left:0.000000pt;}
.x2_c00324{left:72.258000pt;}
.x3_c00324{left:73.238800pt;}
.x5_c00324{left:99.811067pt;}
.x4_c00324{left:113.238800pt;}
.x1_c00324{left:700.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.161000;font-style: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);}
.m1_c00325{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls5_c00325{letter-spacing:-0.540000px;}
.ls4_c00325{letter-spacing:0.000000px;}
.ls0_c00325{letter-spacing:0.720000px;}
.ls1_c00325{letter-spacing:0.840000px;}
.ls3_c00325{letter-spacing:1.500000px;}
.ls2_c00325{letter-spacing:1.650000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00325{word-spacing:-21.060000px;}
.ws2_c00325{word-spacing:-17.640000px;}
.ws3_c00325{word-spacing:-11.700000px;}
.ws0_c00325{word-spacing:-10.200000px;}
.ws8_c00325{word-spacing:-1.728000px;}
.ws10_c00325{word-spacing:-1.500000px;}
.wsd_c00325{word-spacing:-0.864000px;}
.ws5_c00325{word-spacing:-0.840000px;}
.wsf_c00325{word-spacing:-0.072000px;}
.ws4_c00325{word-spacing:0.000000px;}
.ws7_c00325{word-spacing:1.872000px;}
.ws9_c00325{word-spacing:2.952000px;}
.wse_c00325{word-spacing:3.024000px;}
.wsc_c00325{word-spacing:3.888000px;}
.wsb_c00325{word-spacing:5.544000px;}
.ws6_c00325{word-spacing:8.208000px;}
.wsa_c00325{word-spacing:13.824000px;}
._0_c00325{margin-left:-480.336600px;}
._4_c00325{margin-left:-7.120800px;}
._1_c00325{margin-left:-4.200000px;}
._2_c00325{margin-left:-2.304000px;}
._3_c00325{margin-left:-1.288800px;}
.fc3_c00325{color:rgb(32,32,32);}
.fc2_c00325{color:rgb(233,83,14);}
.fc1_c00325{color:rgb(232,86,17);}
.fc4_c00325{color:rgb(157,157,156);}
.fc0_c00325{color:rgb(60,60,59);}
.fs1_c00325{font-size:42.000000px;}
.fs0_c00325{font-size:60.000000px;}
.fs5_c00325{font-size:66.000000px;}
.fs4_c00325{font-size:72.000000px;}
.fs3_c00325{font-size:84.000000px;}
.fs2_c00325{font-size:108.000000px;}
.y0_c00325{bottom:0.000000px;}
.y1_c00325{bottom:41.250000px;}
.y10_c00325{bottom:406.316700px;}
.yf_c00325{bottom:436.322700px;}
.ye_c00325{bottom:466.328700px;}
.yd_c00325{bottom:496.334700px;}
.yc_c00325{bottom:556.334700px;}
.yb_c00325{bottom:646.292700px;}
.ya_c00325{bottom:676.298700px;}
.y9_c00325{bottom:706.304700px;}
.y8_c00325{bottom:736.310700px;}
.y15_c00325{bottom:736.334700px;}
.y7_c00325{bottom:766.316700px;}
.y14_c00325{bottom:766.334700px;}
.y6_c00325{bottom:796.322700px;}
.y13_c00325{bottom:796.334700px;}
.y5_c00325{bottom:826.328700px;}
.y12_c00325{bottom:826.334700px;}
.y4_c00325{bottom:856.334700px;}
.y11_c00325{bottom:856.376100px;}
.y3_c00325{bottom:916.334700px;}
.y2_c00325{bottom:1006.334700px;}
.h6_c00325{height:50.292000px;}
.h2_c00325{height:54.000000px;}
.h5_c00325{height:64.800000px;}
.h4_c00325{height:78.540000px;}
.h3_c00325{height:100.980000px;}
.h0_c00325{height:1262.835000px;}
.h1_c00325{height:1263.000000px;}
.w0_c00325{width:892.914000px;}
.w1_c00325{width:893.250000px;}
.x0_c00325{left:0.000000px;}
.x2_c00325{left:82.500000px;}
.x3_c00325{left:90.000000px;}
.x4_c00325{left:106.500000px;}
.x5_c00325{left:675.611100px;}
.x1_c00325{left:786.788700px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls5_c00325{letter-spacing:-0.480000pt;}
.ls4_c00325{letter-spacing:0.000000pt;}
.ls0_c00325{letter-spacing:0.640000pt;}
.ls1_c00325{letter-spacing:0.746667pt;}
.ls3_c00325{letter-spacing:1.333333pt;}
.ls2_c00325{letter-spacing:1.466667pt;}
.ws1_c00325{word-spacing:-18.720000pt;}
.ws2_c00325{word-spacing:-15.680000pt;}
.ws3_c00325{word-spacing:-10.400000pt;}
.ws0_c00325{word-spacing:-9.066667pt;}
.ws8_c00325{word-spacing:-1.536000pt;}
.ws10_c00325{word-spacing:-1.333333pt;}
.wsd_c00325{word-spacing:-0.768000pt;}
.ws5_c00325{word-spacing:-0.746667pt;}
.wsf_c00325{word-spacing:-0.064000pt;}
.ws4_c00325{word-spacing:0.000000pt;}
.ws7_c00325{word-spacing:1.664000pt;}
.ws9_c00325{word-spacing:2.624000pt;}
.wse_c00325{word-spacing:2.688000pt;}
.wsc_c00325{word-spacing:3.456000pt;}
.wsb_c00325{word-spacing:4.928000pt;}
.ws6_c00325{word-spacing:7.296000pt;}
.wsa_c00325{word-spacing:12.288000pt;}
._0_c00325{margin-left:-426.965867pt;}
._4_c00325{margin-left:-6.329600pt;}
._1_c00325{margin-left:-3.733333pt;}
._2_c00325{margin-left:-2.048000pt;}
._3_c00325{margin-left:-1.145600pt;}
.fs1_c00325{font-size:37.333333pt;}
.fs0_c00325{font-size:53.333333pt;}
.fs5_c00325{font-size:58.666667pt;}
.fs4_c00325{font-size:64.000000pt;}
.fs3_c00325{font-size:74.666667pt;}
.fs2_c00325{font-size:96.000000pt;}
.y0_c00325{bottom:0.000000pt;}
.y1_c00325{bottom:36.666667pt;}
.y10_c00325{bottom:361.170400pt;}
.yf_c00325{bottom:387.842400pt;}
.ye_c00325{bottom:414.514400pt;}
.yd_c00325{bottom:441.186400pt;}
.yc_c00325{bottom:494.519733pt;}
.yb_c00325{bottom:574.482400pt;}
.ya_c00325{bottom:601.154400pt;}
.y9_c00325{bottom:627.826400pt;}
.y8_c00325{bottom:654.498400pt;}
.y15_c00325{bottom:654.519733pt;}
.y7_c00325{bottom:681.170400pt;}
.y14_c00325{bottom:681.186400pt;}
.y6_c00325{bottom:707.842400pt;}
.y13_c00325{bottom:707.853067pt;}
.y5_c00325{bottom:734.514400pt;}
.y12_c00325{bottom:734.519733pt;}
.y4_c00325{bottom:761.186400pt;}
.y11_c00325{bottom:761.223200pt;}
.y3_c00325{bottom:814.519733pt;}
.y2_c00325{bottom:894.519733pt;}
.h6_c00325{height:44.704000pt;}
.h2_c00325{height:48.000000pt;}
.h5_c00325{height:57.600000pt;}
.h4_c00325{height:69.813333pt;}
.h3_c00325{height:89.760000pt;}
.h0_c00325{height:1122.520000pt;}
.h1_c00325{height:1122.666667pt;}
.w0_c00325{width:793.701333pt;}
.w1_c00325{width:794.000000pt;}
.x0_c00325{left:0.000000pt;}
.x2_c00325{left:73.333333pt;}
.x3_c00325{left:80.000000pt;}
.x4_c00325{left:94.666667pt;}
.x5_c00325{left:600.543200pt;}
.x1_c00325{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls1_c00326{letter-spacing:0.000000px;}
.ls0_c00326{letter-spacing:0.720000px;}
.ls2_c00326{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws4_c00326{word-spacing:-3.744000px;}
.wsa_c00326{word-spacing:-1.584000px;}
.ws7_c00326{word-spacing:-0.864000px;}
.ws2_c00326{word-spacing:-0.840000px;}
.ws1_c00326{word-spacing:0.000000px;}
.ws6_c00326{word-spacing:1.440000px;}
.ws5_c00326{word-spacing:2.448000px;}
.ws9_c00326{word-spacing:2.664000px;}
.wsc_c00326{word-spacing:3.816000px;}
.ws3_c00326{word-spacing:4.248000px;}
.ws8_c00326{word-spacing:4.392000px;}
.wsb_c00326{word-spacing:4.464000px;}
._0_c00326{margin-left:-480.336600px;}
._1_c00326{margin-left:-4.200000px;}
._2_c00326{margin-left:-1.440000px;}
.fc2_c00326{color:rgb(32,32,32);}
.fc1_c00326{color:rgb(232,86,17);}
.fc0_c00326{color:rgb(60,60,59);}
.fs1_c00326{font-size:42.000000px;}
.fs0_c00326{font-size:60.000000px;}
.fs3_c00326{font-size:72.000000px;}
.fs2_c00326{font-size:84.000000px;}
.y0_c00326{bottom:0.000000px;}
.y1_c00326{bottom:41.250000px;}
.y11_c00326{bottom:346.322700px;}
.y10_c00326{bottom:376.328700px;}
.yf_c00326{bottom:406.334700px;}
.ye_c00326{bottom:466.334700px;}
.yd_c00326{bottom:556.316700px;}
.yc_c00326{bottom:586.322700px;}
.yb_c00326{bottom:616.328700px;}
.ya_c00326{bottom:646.334700px;}
.y9_c00326{bottom:706.334700px;}
.y8_c00326{bottom:796.304700px;}
.y7_c00326{bottom:826.310700px;}
.y6_c00326{bottom:856.316700px;}
.y5_c00326{bottom:886.322700px;}
.y4_c00326{bottom:916.328700px;}
.y3_c00326{bottom:946.334700px;}
.y2_c00326{bottom:1006.334700px;}
.h2_c00326{height:54.000000px;}
.h4_c00326{height:64.800000px;}
.h3_c00326{height:78.540000px;}
.h0_c00326{height:1262.835000px;}
.h1_c00326{height:1263.000000px;}
.w0_c00326{width:892.914000px;}
.w1_c00326{width:893.250000px;}
.x0_c00326{left:0.000000px;}
.x2_c00326{left:90.000000px;}
.x3_c00326{left:106.500000px;}
.x1_c00326{left:788.888700px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls1_c00326{letter-spacing:0.000000pt;}
.ls0_c00326{letter-spacing:0.640000pt;}
.ls2_c00326{letter-spacing:0.746667pt;}
.ws0_c00326{word-spacing:-9.066667pt;}
.ws4_c00326{word-spacing:-3.328000pt;}
.wsa_c00326{word-spacing:-1.408000pt;}
.ws7_c00326{word-spacing:-0.768000pt;}
.ws2_c00326{word-spacing:-0.746667pt;}
.ws1_c00326{word-spacing:0.000000pt;}
.ws6_c00326{word-spacing:1.280000pt;}
.ws5_c00326{word-spacing:2.176000pt;}
.ws9_c00326{word-spacing:2.368000pt;}
.wsc_c00326{word-spacing:3.392000pt;}
.ws3_c00326{word-spacing:3.776000pt;}
.ws8_c00326{word-spacing:3.904000pt;}
.wsb_c00326{word-spacing:3.968000pt;}
._0_c00326{margin-left:-426.965867pt;}
._1_c00326{margin-left:-3.733333pt;}
._2_c00326{margin-left:-1.280000pt;}
.fs1_c00326{font-size:37.333333pt;}
.fs0_c00326{font-size:53.333333pt;}
.fs3_c00326{font-size:64.000000pt;}
.fs2_c00326{font-size:74.666667pt;}
.y0_c00326{bottom:0.000000pt;}
.y1_c00326{bottom:36.666667pt;}
.y11_c00326{bottom:307.842400pt;}
.y10_c00326{bottom:334.514400pt;}
.yf_c00326{bottom:361.186400pt;}
.ye_c00326{bottom:414.519733pt;}
.yd_c00326{bottom:494.503733pt;}
.yc_c00326{bottom:521.175733pt;}
.yb_c00326{bottom:547.847733pt;}
.ya_c00326{bottom:574.519733pt;}
.y9_c00326{bottom:627.853067pt;}
.y8_c00326{bottom:707.826400pt;}
.y7_c00326{bottom:734.498400pt;}
.y6_c00326{bottom:761.170400pt;}
.y5_c00326{bottom:787.842400pt;}
.y4_c00326{bottom:814.514400pt;}
.y3_c00326{bottom:841.186400pt;}
.y2_c00326{bottom:894.519733pt;}
.h2_c00326{height:48.000000pt;}
.h4_c00326{height:57.600000pt;}
.h3_c00326{height:69.813333pt;}
.h0_c00326{height:1122.520000pt;}
.h1_c00326{height:1122.666667pt;}
.w0_c00326{width:793.701333pt;}
.w1_c00326{width:794.000000pt;}
.x0_c00326{left:0.000000pt;}
.x2_c00326{left:80.000000pt;}
.x3_c00326{left:94.666667pt;}
.x1_c00326{left:701.234400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d40c050a446dcdbd73b92a66.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00327{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls5_c00327{letter-spacing:-0.324000px;}
.ls4_c00327{letter-spacing:0.000000px;}
.ls0_c00327{letter-spacing:0.720000px;}
.ls1_c00327{letter-spacing:0.840000px;}
.ls3_c00327{letter-spacing:1.500000px;}
.ls2_c00327{letter-spacing:1.650000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00327{word-spacing:-21.276000px;}
.ws2_c00327{word-spacing:-17.640000px;}
.ws3_c00327{word-spacing:-14.850000px;}
.ws0_c00327{word-spacing:-10.200000px;}
.wsf_c00327{word-spacing:-1.500000px;}
.ws5_c00327{word-spacing:-0.840000px;}
.wsc_c00327{word-spacing:-0.360000px;}
.ws8_c00327{word-spacing:-0.288000px;}
.ws4_c00327{word-spacing:0.000000px;}
.wsa_c00327{word-spacing:3.960000px;}
.ws7_c00327{word-spacing:5.256000px;}
.ws9_c00327{word-spacing:5.760000px;}
.wsb_c00327{word-spacing:7.128000px;}
.wsd_c00327{word-spacing:10.080000px;}
.wse_c00327{word-spacing:10.728000px;}
.ws6_c00327{word-spacing:13.680000px;}
._0_c00327{margin-left:-480.337200px;}
._4_c00327{margin-left:-5.652000px;}
._1_c00327{margin-left:-4.200000px;}
._3_c00327{margin-left:-2.160000px;}
._2_c00327{margin-left:-1.134000px;}
.fc3_c00327{color:rgb(32,32,32);}
.fc2_c00327{color:rgb(233,83,14);}
.fc1_c00327{color:rgb(232,86,17);}
.fc4_c00327{color:rgb(157,157,156);}
.fc0_c00327{color:rgb(60,60,59);}
.fs1_c00327{font-size:42.000000px;}
.fs0_c00327{font-size:60.000000px;}
.fs5_c00327{font-size:66.000000px;}
.fs4_c00327{font-size:72.000000px;}
.fs3_c00327{font-size:84.000000px;}
.fs2_c00327{font-size:108.000000px;}
.y0_c00327{bottom:0.000000px;}
.y1_c00327{bottom:41.250000px;}
.yf_c00327{bottom:436.322700px;}
.ye_c00327{bottom:466.328700px;}
.yd_c00327{bottom:496.334700px;}
.yc_c00327{bottom:556.334700px;}
.yb_c00327{bottom:646.292700px;}
.ya_c00327{bottom:676.298700px;}
.y9_c00327{bottom:706.304700px;}
.y8_c00327{bottom:736.310700px;}
.y14_c00327{bottom:736.334700px;}
.y7_c00327{bottom:766.316700px;}
.y13_c00327{bottom:766.334700px;}
.y6_c00327{bottom:796.322700px;}
.y12_c00327{bottom:796.334700px;}
.y5_c00327{bottom:826.328700px;}
.y11_c00327{bottom:826.334700px;}
.y4_c00327{bottom:856.334700px;}
.y10_c00327{bottom:856.376100px;}
.y3_c00327{bottom:916.334700px;}
.y2_c00327{bottom:1006.334700px;}
.h6_c00327{height:50.292000px;}
.h2_c00327{height:54.000000px;}
.h5_c00327{height:64.800000px;}
.h4_c00327{height:78.540000px;}
.h3_c00327{height:100.980000px;}
.h0_c00327{height:1262.835000px;}
.h1_c00327{height:1263.000000px;}
.w0_c00327{width:892.914000px;}
.w1_c00327{width:893.250000px;}
.x0_c00327{left:0.000000px;}
.x2_c00327{left:82.500000px;}
.x3_c00327{left:90.000000px;}
.x4_c00327{left:106.500000px;}
.x5_c00327{left:675.611100px;}
.x1_c00327{left:786.863850px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls5_c00327{letter-spacing:-0.288000pt;}
.ls4_c00327{letter-spacing:0.000000pt;}
.ls0_c00327{letter-spacing:0.640000pt;}
.ls1_c00327{letter-spacing:0.746667pt;}
.ls3_c00327{letter-spacing:1.333333pt;}
.ls2_c00327{letter-spacing:1.466667pt;}
.ws1_c00327{word-spacing:-18.912000pt;}
.ws2_c00327{word-spacing:-15.680000pt;}
.ws3_c00327{word-spacing:-13.200000pt;}
.ws0_c00327{word-spacing:-9.066667pt;}
.wsf_c00327{word-spacing:-1.333333pt;}
.ws5_c00327{word-spacing:-0.746667pt;}
.wsc_c00327{word-spacing:-0.320000pt;}
.ws8_c00327{word-spacing:-0.256000pt;}
.ws4_c00327{word-spacing:0.000000pt;}
.wsa_c00327{word-spacing:3.520000pt;}
.ws7_c00327{word-spacing:4.672000pt;}
.ws9_c00327{word-spacing:5.120000pt;}
.wsb_c00327{word-spacing:6.336000pt;}
.wsd_c00327{word-spacing:8.960000pt;}
.wse_c00327{word-spacing:9.536000pt;}
.ws6_c00327{word-spacing:12.160000pt;}
._0_c00327{margin-left:-426.966400pt;}
._4_c00327{margin-left:-5.024000pt;}
._1_c00327{margin-left:-3.733333pt;}
._3_c00327{margin-left:-1.920000pt;}
._2_c00327{margin-left:-1.008000pt;}
.fs1_c00327{font-size:37.333333pt;}
.fs0_c00327{font-size:53.333333pt;}
.fs5_c00327{font-size:58.666667pt;}
.fs4_c00327{font-size:64.000000pt;}
.fs3_c00327{font-size:74.666667pt;}
.fs2_c00327{font-size:96.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.y1_c00327{bottom:36.666667pt;}
.yf_c00327{bottom:387.842400pt;}
.ye_c00327{bottom:414.514400pt;}
.yd_c00327{bottom:441.186400pt;}
.yc_c00327{bottom:494.519733pt;}
.yb_c00327{bottom:574.482400pt;}
.ya_c00327{bottom:601.154400pt;}
.y9_c00327{bottom:627.826400pt;}
.y8_c00327{bottom:654.498400pt;}
.y14_c00327{bottom:654.519733pt;}
.y7_c00327{bottom:681.170400pt;}
.y13_c00327{bottom:681.186400pt;}
.y6_c00327{bottom:707.842400pt;}
.y12_c00327{bottom:707.853067pt;}
.y5_c00327{bottom:734.514400pt;}
.y11_c00327{bottom:734.519733pt;}
.y4_c00327{bottom:761.186400pt;}
.y10_c00327{bottom:761.223200pt;}
.y3_c00327{bottom:814.519733pt;}
.y2_c00327{bottom:894.519733pt;}
.h6_c00327{height:44.704000pt;}
.h2_c00327{height:48.000000pt;}
.h5_c00327{height:57.600000pt;}
.h4_c00327{height:69.813333pt;}
.h3_c00327{height:89.760000pt;}
.h0_c00327{height:1122.520000pt;}
.h1_c00327{height:1122.666667pt;}
.w0_c00327{width:793.701333pt;}
.w1_c00327{width:794.000000pt;}
.x0_c00327{left:0.000000pt;}
.x2_c00327{left:73.333333pt;}
.x3_c00327{left:80.000000pt;}
.x4_c00327{left:94.666667pt;}
.x5_c00327{left:600.543200pt;}
.x1_c00327{left:699.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa3ad3d4f4d3874c5e7070a1.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls1_c00328{letter-spacing:0.000000px;}
.ls0_c00328{letter-spacing:0.720000px;}
.ls2_c00328{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws5_c00328{word-spacing:-3.024000px;}
.ws6_c00328{word-spacing:-1.800000px;}
.ws2_c00328{word-spacing:-0.840000px;}
.ws1_c00328{word-spacing:0.000000px;}
.ws4_c00328{word-spacing:0.432000px;}
.ws7_c00328{word-spacing:13.680000px;}
.ws3_c00328{word-spacing:18.000000px;}
._0_c00328{margin-left:-480.336600px;}
._3_c00328{margin-left:-5.752800px;}
._1_c00328{margin-left:-4.200000px;}
._2_c00328{margin-left:-1.440000px;}
.fc2_c00328{color:rgb(32,32,32);}
.fc1_c00328{color:rgb(232,86,17);}
.fc0_c00328{color:rgb(60,60,59);}
.fs1_c00328{font-size:42.000000px;}
.fs0_c00328{font-size:60.000000px;}
.fs3_c00328{font-size:72.000000px;}
.fs2_c00328{font-size:84.000000px;}
.y0_c00328{bottom:0.000000px;}
.y1_c00328{bottom:41.250000px;}
.ye_c00328{bottom:436.328700px;}
.yd_c00328{bottom:466.334700px;}
.yc_c00328{bottom:526.334700px;}
.yb_c00328{bottom:616.322700px;}
.ya_c00328{bottom:646.328700px;}
.y9_c00328{bottom:676.334700px;}
.y8_c00328{bottom:736.334700px;}
.y7_c00328{bottom:826.310700px;}
.y6_c00328{bottom:856.316700px;}
.y5_c00328{bottom:886.322700px;}
.y4_c00328{bottom:916.328700px;}
.y3_c00328{bottom:946.334700px;}
.y2_c00328{bottom:1006.334700px;}
.h2_c00328{height:54.000000px;}
.h4_c00328{height:64.800000px;}
.h3_c00328{height:78.540000px;}
.h0_c00328{height:1262.835000px;}
.h1_c00328{height:1263.000000px;}
.w0_c00328{width:892.914000px;}
.w1_c00328{width:893.250000px;}
.x0_c00328{left:0.000000px;}
.x2_c00328{left:90.000000px;}
.x3_c00328{left:106.500000px;}
.x1_c00328{left:786.788700px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls1_c00328{letter-spacing:0.000000pt;}
.ls0_c00328{letter-spacing:0.640000pt;}
.ls2_c00328{letter-spacing:0.746667pt;}
.ws0_c00328{word-spacing:-9.066667pt;}
.ws5_c00328{word-spacing:-2.688000pt;}
.ws6_c00328{word-spacing:-1.600000pt;}
.ws2_c00328{word-spacing:-0.746667pt;}
.ws1_c00328{word-spacing:0.000000pt;}
.ws4_c00328{word-spacing:0.384000pt;}
.ws7_c00328{word-spacing:12.160000pt;}
.ws3_c00328{word-spacing:16.000000pt;}
._0_c00328{margin-left:-426.965867pt;}
._3_c00328{margin-left:-5.113600pt;}
._1_c00328{margin-left:-3.733333pt;}
._2_c00328{margin-left:-1.280000pt;}
.fs1_c00328{font-size:37.333333pt;}
.fs0_c00328{font-size:53.333333pt;}
.fs3_c00328{font-size:64.000000pt;}
.fs2_c00328{font-size:74.666667pt;}
.y0_c00328{bottom:0.000000pt;}
.y1_c00328{bottom:36.666667pt;}
.ye_c00328{bottom:387.847733pt;}
.yd_c00328{bottom:414.519733pt;}
.yc_c00328{bottom:467.853067pt;}
.yb_c00328{bottom:547.842400pt;}
.ya_c00328{bottom:574.514400pt;}
.y9_c00328{bottom:601.186400pt;}
.y8_c00328{bottom:654.519733pt;}
.y7_c00328{bottom:734.498400pt;}
.y6_c00328{bottom:761.170400pt;}
.y5_c00328{bottom:787.842400pt;}
.y4_c00328{bottom:814.514400pt;}
.y3_c00328{bottom:841.186400pt;}
.y2_c00328{bottom:894.519733pt;}
.h2_c00328{height:48.000000pt;}
.h4_c00328{height:57.600000pt;}
.h3_c00328{height:69.813333pt;}
.h0_c00328{height:1122.520000pt;}
.h1_c00328{height:1122.666667pt;}
.w0_c00328{width:793.701333pt;}
.w1_c00328{width:794.000000pt;}
.x0_c00328{left:0.000000pt;}
.x2_c00328{left:80.000000pt;}
.x3_c00328{left:94.666667pt;}
.x1_c00328{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.199000;font-style:normal;font-weight:normal;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_4829a453264cbee9cb480ba0.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00329;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00329;src:url('chunks/assets/font_487fc44286cc197136ba647a.woff2')format("woff");}.ff5_c00329{font-family:ff5_c00329;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00329{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls2_c00329{letter-spacing:0.000000px;}
.ls0_c00329{letter-spacing:0.864000px;}
.ls1_c00329{letter-spacing:1.200000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00329{word-spacing:-13.104000px;}
.ws0_c00329{word-spacing:-10.200000px;}
.ws3_c00329{word-spacing:-2.400000px;}
.ws2_c00329{word-spacing:0.000000px;}
._0_c00329{margin-left:-480.337200px;}
._8_c00329{margin-left:-16.800000px;}
._9_c00329{margin-left:-14.265600px;}
._3_c00329{margin-left:-11.400000px;}
._4_c00329{margin-left:-9.600000px;}
._1_c00329{margin-left:-4.200000px;}
._6_c00329{margin-left:-3.134400px;}
._2_c00329{margin-left:-1.432800px;}
._5_c00329{width:2.400000px;}
._7_c00329{width:7.454400px;}
.fc3_c00329{color:rgb(255,255,255);}
.fc2_c00329{color:rgb(233,83,14);}
.fc1_c00329{color:rgb(232,86,17);}
.fc0_c00329{color:rgb(60,60,59);}
.fs1_c00329{font-size:42.000000px;}
.fs0_c00329{font-size:60.000000px;}
.fs3_c00329{font-size:72.000000px;}
.fs4_c00329{font-size:120.000000px;}
.fs2_c00329{font-size:360.000000px;}
.y0_c00329{bottom:0.000000px;}
.y1_c00329{bottom:41.250000px;}
.y5_c00329{bottom:625.322700px;}
.y4_c00329{bottom:646.328700px;}
.y3_c00329{bottom:671.834700px;}
.yc_c00329{bottom:796.334700px;}
.yb_c00329{bottom:826.334700px;}
.ya_c00329{bottom:856.334700px;}
.y9_c00329{bottom:916.334700px;}
.y8_c00329{bottom:946.334700px;}
.y7_c00329{bottom:976.334700px;}
.y6_c00329{bottom:1006.334700px;}
.y2_c00329{bottom:1093.526700px;}
.h2_c00329{height:54.000000px;}
.h5_c00329{height:64.800000px;}
.h4_c00329{height:66.456000px;}
.h7_c00329{height:108.000000px;}
.h6_c00329{height:112.200000px;}
.h3_c00329{height:324.000000px;}
.h0_c00329{height:1262.835000px;}
.h1_c00329{height:1263.000000px;}
.w0_c00329{width:892.914000px;}
.w1_c00329{width:893.250000px;}
.x0_c00329{left:0.000000px;}
.x2_c00329{left:81.290250px;}
.x3_c00329{left:82.393650px;}
.x5_c00329{left:112.287450px;}
.x4_c00329{left:127.393650px;}
.x1_c00329{left:786.653850px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls2_c00329{letter-spacing:0.000000pt;}
.ls0_c00329{letter-spacing:0.768000pt;}
.ls1_c00329{letter-spacing:1.066667pt;}
.ws1_c00329{word-spacing:-11.648000pt;}
.ws0_c00329{word-spacing:-9.066667pt;}
.ws3_c00329{word-spacing:-2.133333pt;}
.ws2_c00329{word-spacing:0.000000pt;}
._0_c00329{margin-left:-426.966400pt;}
._8_c00329{margin-left:-14.933333pt;}
._9_c00329{margin-left:-12.680533pt;}
._3_c00329{margin-left:-10.133333pt;}
._4_c00329{margin-left:-8.533333pt;}
._1_c00329{margin-left:-3.733333pt;}
._6_c00329{margin-left:-2.786133pt;}
._2_c00329{margin-left:-1.273600pt;}
._5_c00329{width:2.133333pt;}
._7_c00329{width:6.626133pt;}
.fs1_c00329{font-size:37.333333pt;}
.fs0_c00329{font-size:53.333333pt;}
.fs3_c00329{font-size:64.000000pt;}
.fs4_c00329{font-size:106.666667pt;}
.fs2_c00329{font-size:320.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y1_c00329{bottom:36.666667pt;}
.y5_c00329{bottom:555.842400pt;}
.y4_c00329{bottom:574.514400pt;}
.y3_c00329{bottom:597.186400pt;}
.yc_c00329{bottom:707.853067pt;}
.yb_c00329{bottom:734.519733pt;}
.ya_c00329{bottom:761.186400pt;}
.y9_c00329{bottom:814.519733pt;}
.y8_c00329{bottom:841.186400pt;}
.y7_c00329{bottom:867.853067pt;}
.y6_c00329{bottom:894.519733pt;}
.y2_c00329{bottom:972.023733pt;}
.h2_c00329{height:48.000000pt;}
.h5_c00329{height:57.600000pt;}
.h4_c00329{height:59.072000pt;}
.h7_c00329{height:96.000000pt;}
.h6_c00329{height:99.733333pt;}
.h3_c00329{height:288.000000pt;}
.h0_c00329{height:1122.520000pt;}
.h1_c00329{height:1122.666667pt;}
.w0_c00329{width:793.701333pt;}
.w1_c00329{width:794.000000pt;}
.x0_c00329{left:0.000000pt;}
.x2_c00329{left:72.258000pt;}
.x3_c00329{left:73.238800pt;}
.x5_c00329{left:99.811067pt;}
.x4_c00329{left:113.238800pt;}
.x1_c00329{left:699.247867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00330{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls5_c00330{letter-spacing:-0.540000px;}
.ls4_c00330{letter-spacing:0.000000px;}
.ls0_c00330{letter-spacing:0.720000px;}
.ls1_c00330{letter-spacing:0.840000px;}
.ls3_c00330{letter-spacing:1.500000px;}
.ls2_c00330{letter-spacing:1.650000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00330{word-spacing:-21.060000px;}
.ws2_c00330{word-spacing:-17.640000px;}
.ws0_c00330{word-spacing:-10.200000px;}
.ws8_c00330{word-spacing:-2.088000px;}
.ws15_c00330{word-spacing:-1.500000px;}
.ws4_c00330{word-spacing:-0.840000px;}
.ws13_c00330{word-spacing:-0.576000px;}
.ws14_c00330{word-spacing:-0.360000px;}
.wsc_c00330{word-spacing:-0.072000px;}
.ws3_c00330{word-spacing:0.000000px;}
.ws7_c00330{word-spacing:0.360000px;}
.wsd_c00330{word-spacing:1.224000px;}
.wse_c00330{word-spacing:1.656000px;}
.ws5_c00330{word-spacing:5.544000px;}
.ws10_c00330{word-spacing:6.696000px;}
.ws6_c00330{word-spacing:9.360000px;}
.wsf_c00330{word-spacing:10.152000px;}
.ws9_c00330{word-spacing:11.088000px;}
.ws11_c00330{word-spacing:14.472000px;}
.wsb_c00330{word-spacing:14.688000px;}
.ws12_c00330{word-spacing:17.424000px;}
.wsa_c00330{word-spacing:20.232000px;}
._0_c00330{margin-left:-480.337800px;}
._3_c00330{margin-left:-7.221600px;}
._1_c00330{margin-left:-4.200000px;}
._4_c00330{margin-left:-2.894400px;}
._2_c00330{margin-left:-1.440000px;}
.fc3_c00330{color:rgb(32,32,32);}
.fc2_c00330{color:rgb(233,83,14);}
.fc1_c00330{color:rgb(232,86,17);}
.fc4_c00330{color:rgb(157,157,156);}
.fc0_c00330{color:rgb(60,60,59);}
.fs1_c00330{font-size:42.000000px;}
.fs0_c00330{font-size:60.000000px;}
.fs5_c00330{font-size:66.000000px;}
.fs4_c00330{font-size:72.000000px;}
.fs3_c00330{font-size:84.000000px;}
.fs2_c00330{font-size:108.000000px;}
.y0_c00330{bottom:0.000000px;}
.y1_c00330{bottom:41.250000px;}
.y18_c00330{bottom:76.298700px;}
.y17_c00330{bottom:106.304700px;}
.y16_c00330{bottom:136.310700px;}
.y15_c00330{bottom:166.316700px;}
.y14_c00330{bottom:196.322700px;}
.y13_c00330{bottom:226.328700px;}
.y12_c00330{bottom:256.334700px;}
.y11_c00330{bottom:316.334700px;}
.y10_c00330{bottom:406.298700px;}
.yf_c00330{bottom:436.304700px;}
.ye_c00330{bottom:466.310700px;}
.yd_c00330{bottom:496.316700px;}
.yc_c00330{bottom:526.322700px;}
.yb_c00330{bottom:556.328700px;}
.ya_c00330{bottom:586.334700px;}
.y9_c00330{bottom:646.334700px;}
.y8_c00330{bottom:736.310700px;}
.y7_c00330{bottom:766.316700px;}
.y1c_c00330{bottom:766.334700px;}
.y6_c00330{bottom:796.322700px;}
.y1b_c00330{bottom:796.334700px;}
.y5_c00330{bottom:826.328700px;}
.y1a_c00330{bottom:826.334700px;}
.y4_c00330{bottom:856.334700px;}
.y19_c00330{bottom:856.376100px;}
.y3_c00330{bottom:916.334700px;}
.y2_c00330{bottom:1006.334700px;}
.h6_c00330{height:50.292000px;}
.h2_c00330{height:54.000000px;}
.h5_c00330{height:64.800000px;}
.h4_c00330{height:78.540000px;}
.h3_c00330{height:100.980000px;}
.h0_c00330{height:1262.835000px;}
.h1_c00330{height:1263.000000px;}
.w0_c00330{width:892.914000px;}
.w1_c00330{width:893.250000px;}
.x0_c00330{left:0.000000px;}
.x2_c00330{left:82.500000px;}
.x3_c00330{left:90.000000px;}
.x4_c00330{left:106.500000px;}
.x5_c00330{left:675.611100px;}
.x1_c00330{left:790.314000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls5_c00330{letter-spacing:-0.480000pt;}
.ls4_c00330{letter-spacing:0.000000pt;}
.ls0_c00330{letter-spacing:0.640000pt;}
.ls1_c00330{letter-spacing:0.746667pt;}
.ls3_c00330{letter-spacing:1.333333pt;}
.ls2_c00330{letter-spacing:1.466667pt;}
.ws1_c00330{word-spacing:-18.720000pt;}
.ws2_c00330{word-spacing:-15.680000pt;}
.ws0_c00330{word-spacing:-9.066667pt;}
.ws8_c00330{word-spacing:-1.856000pt;}
.ws15_c00330{word-spacing:-1.333333pt;}
.ws4_c00330{word-spacing:-0.746667pt;}
.ws13_c00330{word-spacing:-0.512000pt;}
.ws14_c00330{word-spacing:-0.320000pt;}
.wsc_c00330{word-spacing:-0.064000pt;}
.ws3_c00330{word-spacing:0.000000pt;}
.ws7_c00330{word-spacing:0.320000pt;}
.wsd_c00330{word-spacing:1.088000pt;}
.wse_c00330{word-spacing:1.472000pt;}
.ws5_c00330{word-spacing:4.928000pt;}
.ws10_c00330{word-spacing:5.952000pt;}
.ws6_c00330{word-spacing:8.320000pt;}
.wsf_c00330{word-spacing:9.024000pt;}
.ws9_c00330{word-spacing:9.856000pt;}
.ws11_c00330{word-spacing:12.864000pt;}
.wsb_c00330{word-spacing:13.056000pt;}
.ws12_c00330{word-spacing:15.488000pt;}
.wsa_c00330{word-spacing:17.984000pt;}
._0_c00330{margin-left:-426.966933pt;}
._3_c00330{margin-left:-6.419200pt;}
._1_c00330{margin-left:-3.733333pt;}
._4_c00330{margin-left:-2.572800pt;}
._2_c00330{margin-left:-1.280000pt;}
.fs1_c00330{font-size:37.333333pt;}
.fs0_c00330{font-size:53.333333pt;}
.fs5_c00330{font-size:58.666667pt;}
.fs4_c00330{font-size:64.000000pt;}
.fs3_c00330{font-size:74.666667pt;}
.fs2_c00330{font-size:96.000000pt;}
.y0_c00330{bottom:0.000000pt;}
.y1_c00330{bottom:36.666667pt;}
.y18_c00330{bottom:67.821067pt;}
.y17_c00330{bottom:94.493067pt;}
.y16_c00330{bottom:121.165067pt;}
.y15_c00330{bottom:147.837067pt;}
.y14_c00330{bottom:174.509067pt;}
.y13_c00330{bottom:201.181067pt;}
.y12_c00330{bottom:227.853067pt;}
.y11_c00330{bottom:281.186400pt;}
.y10_c00330{bottom:361.154400pt;}
.yf_c00330{bottom:387.826400pt;}
.ye_c00330{bottom:414.498400pt;}
.yd_c00330{bottom:441.170400pt;}
.yc_c00330{bottom:467.842400pt;}
.yb_c00330{bottom:494.514400pt;}
.ya_c00330{bottom:521.186400pt;}
.y9_c00330{bottom:574.519733pt;}
.y8_c00330{bottom:654.498400pt;}
.y7_c00330{bottom:681.170400pt;}
.y1c_c00330{bottom:681.186400pt;}
.y6_c00330{bottom:707.842400pt;}
.y1b_c00330{bottom:707.853067pt;}
.y5_c00330{bottom:734.514400pt;}
.y1a_c00330{bottom:734.519733pt;}
.y4_c00330{bottom:761.186400pt;}
.y19_c00330{bottom:761.223200pt;}
.y3_c00330{bottom:814.519733pt;}
.y2_c00330{bottom:894.519733pt;}
.h6_c00330{height:44.704000pt;}
.h2_c00330{height:48.000000pt;}
.h5_c00330{height:57.600000pt;}
.h4_c00330{height:69.813333pt;}
.h3_c00330{height:89.760000pt;}
.h0_c00330{height:1122.520000pt;}
.h1_c00330{height:1122.666667pt;}
.w0_c00330{width:793.701333pt;}
.w1_c00330{width:794.000000pt;}
.x0_c00330{left:0.000000pt;}
.x2_c00330{left:73.333333pt;}
.x3_c00330{left:80.000000pt;}
.x4_c00330{left:94.666667pt;}
.x5_c00330{left:600.543200pt;}
.x1_c00330{left:702.501333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.199000;font-style: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);}
.m1_c00331{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls1_c00331{letter-spacing:0.000000px;}
.ls0_c00331{letter-spacing:0.720000px;}
.ls2_c00331{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws6_c00331{word-spacing:-2.808000px;}
.ws2_c00331{word-spacing:-0.840000px;}
.ws1_c00331{word-spacing:0.000000px;}
.ws4_c00331{word-spacing:1.440000px;}
.ws3_c00331{word-spacing:6.408000px;}
.ws5_c00331{word-spacing:16.200000px;}
._0_c00331{margin-left:-480.337200px;}
._4_c00331{margin-left:-7.192800px;}
._1_c00331{margin-left:-4.200000px;}
._3_c00331{margin-left:-2.880000px;}
._2_c00331{margin-left:-1.440000px;}
.fc2_c00331{color:rgb(32,32,32);}
.fc1_c00331{color:rgb(232,86,17);}
.fc0_c00331{color:rgb(60,60,59);}
.fs1_c00331{font-size:42.000000px;}
.fs0_c00331{font-size:60.000000px;}
.fs3_c00331{font-size:72.000000px;}
.fs2_c00331{font-size:84.000000px;}
.y0_c00331{bottom:0.000000px;}
.y1_c00331{bottom:41.250000px;}
.y9_c00331{bottom:676.322700px;}
.y8_c00331{bottom:706.328700px;}
.y7_c00331{bottom:736.334700px;}
.y6_c00331{bottom:796.334700px;}
.y5_c00331{bottom:886.322700px;}
.y4_c00331{bottom:916.328700px;}
.y3_c00331{bottom:946.334700px;}
.y2_c00331{bottom:1006.334700px;}
.h2_c00331{height:54.000000px;}
.h4_c00331{height:64.800000px;}
.h3_c00331{height:78.540000px;}
.h0_c00331{height:1262.835000px;}
.h1_c00331{height:1263.000000px;}
.w0_c00331{width:892.914000px;}
.w1_c00331{width:893.250000px;}
.x0_c00331{left:0.000000px;}
.x2_c00331{left:90.000000px;}
.x3_c00331{left:106.500000px;}
.x1_c00331{left:787.838850px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls1_c00331{letter-spacing:0.000000pt;}
.ls0_c00331{letter-spacing:0.640000pt;}
.ls2_c00331{letter-spacing:0.746667pt;}
.ws0_c00331{word-spacing:-9.066667pt;}
.ws6_c00331{word-spacing:-2.496000pt;}
.ws2_c00331{word-spacing:-0.746667pt;}
.ws1_c00331{word-spacing:0.000000pt;}
.ws4_c00331{word-spacing:1.280000pt;}
.ws3_c00331{word-spacing:5.696000pt;}
.ws5_c00331{word-spacing:14.400000pt;}
._0_c00331{margin-left:-426.966400pt;}
._4_c00331{margin-left:-6.393600pt;}
._1_c00331{margin-left:-3.733333pt;}
._3_c00331{margin-left:-2.560000pt;}
._2_c00331{margin-left:-1.280000pt;}
.fs1_c00331{font-size:37.333333pt;}
.fs0_c00331{font-size:53.333333pt;}
.fs3_c00331{font-size:64.000000pt;}
.fs2_c00331{font-size:74.666667pt;}
.y0_c00331{bottom:0.000000pt;}
.y1_c00331{bottom:36.666667pt;}
.y9_c00331{bottom:601.175733pt;}
.y8_c00331{bottom:627.847733pt;}
.y7_c00331{bottom:654.519733pt;}
.y6_c00331{bottom:707.853067pt;}
.y5_c00331{bottom:787.842400pt;}
.y4_c00331{bottom:814.514400pt;}
.y3_c00331{bottom:841.186400pt;}
.y2_c00331{bottom:894.519733pt;}
.h2_c00331{height:48.000000pt;}
.h4_c00331{height:57.600000pt;}
.h3_c00331{height:69.813333pt;}
.h0_c00331{height:1122.520000pt;}
.h1_c00331{height:1122.666667pt;}
.w0_c00331{width:793.701333pt;}
.w1_c00331{width:794.000000pt;}
.x0_c00331{left:0.000000pt;}
.x2_c00331{left:80.000000pt;}
.x3_c00331{left:94.666667pt;}
.x1_c00331{left:700.301200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.160000;font-style:normal;font-weight:normal;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_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls5_c00332{letter-spacing:-0.324000px;}
.ls4_c00332{letter-spacing:0.000000px;}
.ls0_c00332{letter-spacing:0.720000px;}
.ls1_c00332{letter-spacing:0.840000px;}
.ls3_c00332{letter-spacing:1.500000px;}
.ls2_c00332{letter-spacing:1.650000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00332{word-spacing:-21.276000px;}
.ws2_c00332{word-spacing:-14.850000px;}
.ws0_c00332{word-spacing:-10.200000px;}
.ws9_c00332{word-spacing:-2.232000px;}
.ws13_c00332{word-spacing:-1.500000px;}
.ws4_c00332{word-spacing:-0.840000px;}
.ws3_c00332{word-spacing:0.000000px;}
.ws8_c00332{word-spacing:0.144000px;}
.wsa_c00332{word-spacing:1.872000px;}
.ws5_c00332{word-spacing:3.960000px;}
.wsb_c00332{word-spacing:4.032000px;}
.ws7_c00332{word-spacing:4.680000px;}
.wse_c00332{word-spacing:4.896000px;}
.wsc_c00332{word-spacing:5.544000px;}
.wsd_c00332{word-spacing:7.560000px;}
.ws11_c00332{word-spacing:8.208000px;}
.wsf_c00332{word-spacing:9.432000px;}
.ws10_c00332{word-spacing:10.728000px;}
.ws6_c00332{word-spacing:12.168000px;}
.ws12_c00332{word-spacing:13.320000px;}
._0_c00332{margin-left:-480.337800px;}
._3_c00332{margin-left:-5.760000px;}
._1_c00332{margin-left:-4.200000px;}
._4_c00332{margin-left:-2.379600px;}
._2_c00332{margin-left:-1.134000px;}
.fc3_c00332{color:rgb(32,32,32);}
.fc2_c00332{color:rgb(233,83,14);}
.fc1_c00332{color:rgb(232,86,17);}
.fc4_c00332{color:rgb(157,157,156);}
.fc0_c00332{color:rgb(60,60,59);}
.fs1_c00332{font-size:42.000000px;}
.fs0_c00332{font-size:60.000000px;}
.fs5_c00332{font-size:66.000000px;}
.fs4_c00332{font-size:72.000000px;}
.fs3_c00332{font-size:84.000000px;}
.fs2_c00332{font-size:108.000000px;}
.y0_c00332{bottom:0.000000px;}
.y1_c00332{bottom:41.250000px;}
.y17_c00332{bottom:106.298700px;}
.y16_c00332{bottom:136.304700px;}
.y15_c00332{bottom:166.310700px;}
.y14_c00332{bottom:196.316700px;}
.y13_c00332{bottom:226.322700px;}
.y12_c00332{bottom:256.328700px;}
.y11_c00332{bottom:286.334700px;}
.y10_c00332{bottom:346.334700px;}
.yf_c00332{bottom:436.298700px;}
.ye_c00332{bottom:466.304700px;}
.yd_c00332{bottom:496.310700px;}
.yc_c00332{bottom:526.316700px;}
.yb_c00332{bottom:556.322700px;}
.ya_c00332{bottom:586.328700px;}
.y9_c00332{bottom:616.334700px;}
.y8_c00332{bottom:676.334700px;}
.y7_c00332{bottom:766.316700px;}
.y1b_c00332{bottom:766.334700px;}
.y6_c00332{bottom:796.322700px;}
.y1a_c00332{bottom:796.334700px;}
.y5_c00332{bottom:826.328700px;}
.y19_c00332{bottom:826.334700px;}
.y4_c00332{bottom:856.334700px;}
.y18_c00332{bottom:856.376100px;}
.y3_c00332{bottom:916.334700px;}
.y2_c00332{bottom:1006.334700px;}
.h6_c00332{height:50.292000px;}
.h2_c00332{height:54.000000px;}
.h5_c00332{height:64.800000px;}
.h4_c00332{height:78.540000px;}
.h3_c00332{height:100.980000px;}
.h0_c00332{height:1262.835000px;}
.h1_c00332{height:1263.000000px;}
.w0_c00332{width:892.914000px;}
.w1_c00332{width:893.250000px;}
.x0_c00332{left:0.000000px;}
.x2_c00332{left:82.500000px;}
.x3_c00332{left:90.000000px;}
.x4_c00332{left:106.500000px;}
.x5_c00332{left:675.611100px;}
.x1_c00332{left:787.689000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls5_c00332{letter-spacing:-0.288000pt;}
.ls4_c00332{letter-spacing:0.000000pt;}
.ls0_c00332{letter-spacing:0.640000pt;}
.ls1_c00332{letter-spacing:0.746667pt;}
.ls3_c00332{letter-spacing:1.333333pt;}
.ls2_c00332{letter-spacing:1.466667pt;}
.ws1_c00332{word-spacing:-18.912000pt;}
.ws2_c00332{word-spacing:-13.200000pt;}
.ws0_c00332{word-spacing:-9.066667pt;}
.ws9_c00332{word-spacing:-1.984000pt;}
.ws13_c00332{word-spacing:-1.333333pt;}
.ws4_c00332{word-spacing:-0.746667pt;}
.ws3_c00332{word-spacing:0.000000pt;}
.ws8_c00332{word-spacing:0.128000pt;}
.wsa_c00332{word-spacing:1.664000pt;}
.ws5_c00332{word-spacing:3.520000pt;}
.wsb_c00332{word-spacing:3.584000pt;}
.ws7_c00332{word-spacing:4.160000pt;}
.wse_c00332{word-spacing:4.352000pt;}
.wsc_c00332{word-spacing:4.928000pt;}
.wsd_c00332{word-spacing:6.720000pt;}
.ws11_c00332{word-spacing:7.296000pt;}
.wsf_c00332{word-spacing:8.384000pt;}
.ws10_c00332{word-spacing:9.536000pt;}
.ws6_c00332{word-spacing:10.816000pt;}
.ws12_c00332{word-spacing:11.840000pt;}
._0_c00332{margin-left:-426.966933pt;}
._3_c00332{margin-left:-5.120000pt;}
._1_c00332{margin-left:-3.733333pt;}
._4_c00332{margin-left:-2.115200pt;}
._2_c00332{margin-left:-1.008000pt;}
.fs1_c00332{font-size:37.333333pt;}
.fs0_c00332{font-size:53.333333pt;}
.fs5_c00332{font-size:58.666667pt;}
.fs4_c00332{font-size:64.000000pt;}
.fs3_c00332{font-size:74.666667pt;}
.fs2_c00332{font-size:96.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.y1_c00332{bottom:36.666667pt;}
.y17_c00332{bottom:94.487733pt;}
.y16_c00332{bottom:121.159733pt;}
.y15_c00332{bottom:147.831733pt;}
.y14_c00332{bottom:174.503733pt;}
.y13_c00332{bottom:201.175733pt;}
.y12_c00332{bottom:227.847733pt;}
.y11_c00332{bottom:254.519733pt;}
.y10_c00332{bottom:307.853067pt;}
.yf_c00332{bottom:387.821067pt;}
.ye_c00332{bottom:414.493067pt;}
.yd_c00332{bottom:441.165067pt;}
.yc_c00332{bottom:467.837067pt;}
.yb_c00332{bottom:494.509067pt;}
.ya_c00332{bottom:521.181067pt;}
.y9_c00332{bottom:547.853067pt;}
.y8_c00332{bottom:601.186400pt;}
.y7_c00332{bottom:681.170400pt;}
.y1b_c00332{bottom:681.186400pt;}
.y6_c00332{bottom:707.842400pt;}
.y1a_c00332{bottom:707.853067pt;}
.y5_c00332{bottom:734.514400pt;}
.y19_c00332{bottom:734.519733pt;}
.y4_c00332{bottom:761.186400pt;}
.y18_c00332{bottom:761.223200pt;}
.y3_c00332{bottom:814.519733pt;}
.y2_c00332{bottom:894.519733pt;}
.h6_c00332{height:44.704000pt;}
.h2_c00332{height:48.000000pt;}
.h5_c00332{height:57.600000pt;}
.h4_c00332{height:69.813333pt;}
.h3_c00332{height:89.760000pt;}
.h0_c00332{height:1122.520000pt;}
.h1_c00332{height:1122.666667pt;}
.w0_c00332{width:793.701333pt;}
.w1_c00332{width:794.000000pt;}
.x0_c00332{left:0.000000pt;}
.x2_c00332{left:73.333333pt;}
.x3_c00332{left:80.000000pt;}
.x4_c00332{left:94.666667pt;}
.x5_c00332{left:600.543200pt;}
.x1_c00332{left:700.168000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a378ba6f218df5456748c66d.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.199000;font-style: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);}
.m1_c00333{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls1_c00333{letter-spacing:0.000000px;}
.ls0_c00333{letter-spacing:0.720000px;}
.ls2_c00333{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00333{word-spacing:-0.840000px;}
.ws1_c00333{word-spacing:0.000000px;}
.ws3_c00333{word-spacing:2.088000px;}
.ws5_c00333{word-spacing:2.664000px;}
.ws4_c00333{word-spacing:4.248000px;}
.ws6_c00333{word-spacing:6.264000px;}
._0_c00333{margin-left:-480.337800px;}
._1_c00333{margin-left:-4.200000px;}
._2_c00333{margin-left:-1.432800px;}
.fc2_c00333{color:rgb(32,32,32);}
.fc1_c00333{color:rgb(232,86,17);}
.fc0_c00333{color:rgb(60,60,59);}
.fs1_c00333{font-size:42.000000px;}
.fs0_c00333{font-size:60.000000px;}
.fs3_c00333{font-size:72.000000px;}
.fs2_c00333{font-size:84.000000px;}
.y0_c00333{bottom:0.000000px;}
.y1_c00333{bottom:41.250000px;}
.y9_c00333{bottom:676.322700px;}
.y8_c00333{bottom:706.328700px;}
.y7_c00333{bottom:736.334700px;}
.y6_c00333{bottom:796.334700px;}
.y5_c00333{bottom:886.322700px;}
.y4_c00333{bottom:916.328700px;}
.y3_c00333{bottom:946.334700px;}
.y2_c00333{bottom:1006.334700px;}
.h2_c00333{height:54.000000px;}
.h4_c00333{height:64.800000px;}
.h3_c00333{height:78.540000px;}
.h0_c00333{height:1262.835000px;}
.h1_c00333{height:1263.000000px;}
.w0_c00333{width:892.914000px;}
.w1_c00333{width:893.250000px;}
.x0_c00333{left:0.000000px;}
.x2_c00333{left:90.000000px;}
.x3_c00333{left:106.500000px;}
.x1_c00333{left:786.714000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls1_c00333{letter-spacing:0.000000pt;}
.ls0_c00333{letter-spacing:0.640000pt;}
.ls2_c00333{letter-spacing:0.746667pt;}
.ws0_c00333{word-spacing:-9.066667pt;}
.ws2_c00333{word-spacing:-0.746667pt;}
.ws1_c00333{word-spacing:0.000000pt;}
.ws3_c00333{word-spacing:1.856000pt;}
.ws5_c00333{word-spacing:2.368000pt;}
.ws4_c00333{word-spacing:3.776000pt;}
.ws6_c00333{word-spacing:5.568000pt;}
._0_c00333{margin-left:-426.966933pt;}
._1_c00333{margin-left:-3.733333pt;}
._2_c00333{margin-left:-1.273600pt;}
.fs1_c00333{font-size:37.333333pt;}
.fs0_c00333{font-size:53.333333pt;}
.fs3_c00333{font-size:64.000000pt;}
.fs2_c00333{font-size:74.666667pt;}
.y0_c00333{bottom:0.000000pt;}
.y1_c00333{bottom:36.666667pt;}
.y9_c00333{bottom:601.175733pt;}
.y8_c00333{bottom:627.847733pt;}
.y7_c00333{bottom:654.519733pt;}
.y6_c00333{bottom:707.853067pt;}
.y5_c00333{bottom:787.842400pt;}
.y4_c00333{bottom:814.514400pt;}
.y3_c00333{bottom:841.186400pt;}
.y2_c00333{bottom:894.519733pt;}
.h2_c00333{height:48.000000pt;}
.h4_c00333{height:57.600000pt;}
.h3_c00333{height:69.813333pt;}
.h0_c00333{height:1122.520000pt;}
.h1_c00333{height:1122.666667pt;}
.w0_c00333{width:793.701333pt;}
.w1_c00333{width:794.000000pt;}
.x0_c00333{left:0.000000pt;}
.x2_c00333{left:80.000000pt;}
.x3_c00333{left:94.666667pt;}
.x1_c00333{left:699.301333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.160000;font-style:normal;font-weight:normal;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_372c79aed3df1e56cd5674c1.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.199000;font-style:normal;font-weight:normal;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_4829a453264cbee9cb480ba0.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00334;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00334{font-family:ff5_c00334;line-height:1.155000;font-style: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);}
.m1_c00334{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls2_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:0.864000px;}
.ls1_c00334{letter-spacing:1.200000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00334{word-spacing:-13.104000px;}
.ws0_c00334{word-spacing:-10.200000px;}
.ws4_c00334{word-spacing:-2.160000px;}
.ws3_c00334{word-spacing:-1.440000px;}
.ws5_c00334{word-spacing:-0.864000px;}
.ws2_c00334{word-spacing:0.000000px;}
._0_c00334{margin-left:-480.336600px;}
._7_c00334{margin-left:-23.400000px;}
._9_c00334{margin-left:-16.800000px;}
._8_c00334{margin-left:-15.600000px;}
._2_c00334{margin-left:-9.000000px;}
._5_c00334{margin-left:-6.480000px;}
._1_c00334{margin-left:-4.200000px;}
._6_c00334{margin-left:-2.760000px;}
._3_c00334{margin-left:-1.440000px;}
._4_c00334{width:1.440000px;}
.fc3_c00334{color:rgb(255,255,255);}
.fc2_c00334{color:rgb(233,83,14);}
.fc1_c00334{color:rgb(232,86,17);}
.fc0_c00334{color:rgb(60,60,59);}
.fs1_c00334{font-size:42.000000px;}
.fs0_c00334{font-size:60.000000px;}
.fs3_c00334{font-size:72.000000px;}
.fs4_c00334{font-size:120.000000px;}
.fs2_c00334{font-size:360.000000px;}
.y0_c00334{bottom:0.000000px;}
.y1_c00334{bottom:41.250000px;}
.y15_c00334{bottom:154.225200px;}
.y14_c00334{bottom:175.231200px;}
.y13_c00334{bottom:196.237200px;}
.y12_c00334{bottom:244.243200px;}
.y11_c00334{bottom:265.249200px;}
.y10_c00334{bottom:286.255200px;}
.yf_c00334{bottom:334.261200px;}
.ye_c00334{bottom:355.267200px;}
.yd_c00334{bottom:376.273200px;}
.yc_c00334{bottom:424.279200px;}
.yb_c00334{bottom:445.285200px;}
.ya_c00334{bottom:466.291200px;}
.y9_c00334{bottom:514.297200px;}
.y8_c00334{bottom:535.303200px;}
.y7_c00334{bottom:556.309200px;}
.y6_c00334{bottom:604.315200px;}
.y5_c00334{bottom:625.321200px;}
.y4_c00334{bottom:646.327200px;}
.y3_c00334{bottom:691.723200px;}
.y1b_c00334{bottom:826.334700px;}
.y1a_c00334{bottom:856.334700px;}
.y19_c00334{bottom:886.334700px;}
.y18_c00334{bottom:946.334700px;}
.y17_c00334{bottom:976.334700px;}
.y16_c00334{bottom:1006.334700px;}
.y2_c00334{bottom:1093.526700px;}
.h2_c00334{height:54.000000px;}
.h5_c00334{height:64.800000px;}
.h4_c00334{height:66.456000px;}
.h7_c00334{height:108.000000px;}
.h6_c00334{height:112.200000px;}
.h3_c00334{height:324.000000px;}
.h0_c00334{height:1262.835000px;}
.h1_c00334{height:1263.000000px;}
.w0_c00334{width:892.914000px;}
.w1_c00334{width:893.250000px;}
.x0_c00334{left:0.000000px;}
.x2_c00334{left:81.290250px;}
.x3_c00334{left:82.393650px;}
.x5_c00334{left:112.287450px;}
.x4_c00334{left:127.393650px;}
.x1_c00334{left:787.763700px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls2_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:0.768000pt;}
.ls1_c00334{letter-spacing:1.066667pt;}
.ws1_c00334{word-spacing:-11.648000pt;}
.ws0_c00334{word-spacing:-9.066667pt;}
.ws4_c00334{word-spacing:-1.920000pt;}
.ws3_c00334{word-spacing:-1.280000pt;}
.ws5_c00334{word-spacing:-0.768000pt;}
.ws2_c00334{word-spacing:0.000000pt;}
._0_c00334{margin-left:-426.965867pt;}
._7_c00334{margin-left:-20.800000pt;}
._9_c00334{margin-left:-14.933333pt;}
._8_c00334{margin-left:-13.866667pt;}
._2_c00334{margin-left:-8.000000pt;}
._5_c00334{margin-left:-5.760000pt;}
._1_c00334{margin-left:-3.733333pt;}
._6_c00334{margin-left:-2.453333pt;}
._3_c00334{margin-left:-1.280000pt;}
._4_c00334{width:1.280000pt;}
.fs1_c00334{font-size:37.333333pt;}
.fs0_c00334{font-size:53.333333pt;}
.fs3_c00334{font-size:64.000000pt;}
.fs4_c00334{font-size:106.666667pt;}
.fs2_c00334{font-size:320.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y1_c00334{bottom:36.666667pt;}
.y15_c00334{bottom:137.089067pt;}
.y14_c00334{bottom:155.761067pt;}
.y13_c00334{bottom:174.433067pt;}
.y12_c00334{bottom:217.105067pt;}
.y11_c00334{bottom:235.777067pt;}
.y10_c00334{bottom:254.449067pt;}
.yf_c00334{bottom:297.121067pt;}
.ye_c00334{bottom:315.793067pt;}
.yd_c00334{bottom:334.465067pt;}
.yc_c00334{bottom:377.137067pt;}
.yb_c00334{bottom:395.809067pt;}
.ya_c00334{bottom:414.481067pt;}
.y9_c00334{bottom:457.153067pt;}
.y8_c00334{bottom:475.825067pt;}
.y7_c00334{bottom:494.497067pt;}
.y6_c00334{bottom:537.169067pt;}
.y5_c00334{bottom:555.841067pt;}
.y4_c00334{bottom:574.513067pt;}
.y3_c00334{bottom:614.865067pt;}
.y1b_c00334{bottom:734.519733pt;}
.y1a_c00334{bottom:761.186400pt;}
.y19_c00334{bottom:787.853067pt;}
.y18_c00334{bottom:841.186400pt;}
.y17_c00334{bottom:867.853067pt;}
.y16_c00334{bottom:894.519733pt;}
.y2_c00334{bottom:972.023733pt;}
.h2_c00334{height:48.000000pt;}
.h5_c00334{height:57.600000pt;}
.h4_c00334{height:59.072000pt;}
.h7_c00334{height:96.000000pt;}
.h6_c00334{height:99.733333pt;}
.h3_c00334{height:288.000000pt;}
.h0_c00334{height:1122.520000pt;}
.h1_c00334{height:1122.666667pt;}
.w0_c00334{width:793.701333pt;}
.w1_c00334{width:794.000000pt;}
.x0_c00334{left:0.000000pt;}
.x2_c00334{left:72.258000pt;}
.x3_c00334{left:73.238800pt;}
.x5_c00334{left:99.811067pt;}
.x4_c00334{left:113.238800pt;}
.x1_c00334{left:700.234400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00335;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:1.161000;font-style: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);}
.m1_c00335{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls5_c00335{letter-spacing:-0.540000px;}
.ls4_c00335{letter-spacing:0.000000px;}
.ls0_c00335{letter-spacing:0.720000px;}
.ls1_c00335{letter-spacing:0.840000px;}
.ls3_c00335{letter-spacing:1.500000px;}
.ls2_c00335{letter-spacing:1.650000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00335{word-spacing:-21.060000px;}
.ws2_c00335{word-spacing:-17.640000px;}
.ws0_c00335{word-spacing:-10.200000px;}
.ws11_c00335{word-spacing:-4.176000px;}
.ws9_c00335{word-spacing:-1.872000px;}
.ws4_c00335{word-spacing:-0.840000px;}
.ws3_c00335{word-spacing:0.000000px;}
.ws8_c00335{word-spacing:0.360000px;}
.wsd_c00335{word-spacing:1.656000px;}
.ws12_c00335{word-spacing:2.376000px;}
.ws5_c00335{word-spacing:2.736000px;}
.wsa_c00335{word-spacing:3.528000px;}
.wsb_c00335{word-spacing:4.464000px;}
.ws7_c00335{word-spacing:5.472000px;}
.ws10_c00335{word-spacing:5.688000px;}
.ws6_c00335{word-spacing:5.904000px;}
.ws13_c00335{word-spacing:7.416000px;}
.ws14_c00335{word-spacing:8.352000px;}
.wsf_c00335{word-spacing:8.856000px;}
.wsc_c00335{word-spacing:15.480000px;}
.wse_c00335{word-spacing:20.016000px;}
._0_c00335{margin-left:-480.337200px;}
._1_c00335{margin-left:-4.200000px;}
._4_c00335{margin-left:-3.057600px;}
._3_c00335{margin-left:-1.324800px;}
._2_c00335{width:1.022400px;}
._5_c00335{width:2.462400px;}
.fc3_c00335{color:rgb(32,32,32);}
.fc2_c00335{color:rgb(233,83,14);}
.fc1_c00335{color:rgb(232,86,17);}
.fc4_c00335{color:rgb(157,157,156);}
.fc0_c00335{color:rgb(60,60,59);}
.fs1_c00335{font-size:42.000000px;}
.fs0_c00335{font-size:60.000000px;}
.fs5_c00335{font-size:66.000000px;}
.fs4_c00335{font-size:72.000000px;}
.fs3_c00335{font-size:84.000000px;}
.fs2_c00335{font-size:108.000000px;}
.y0_c00335{bottom:0.000000px;}
.y1_c00335{bottom:41.250000px;}
.y18_c00335{bottom:76.292700px;}
.y17_c00335{bottom:106.298700px;}
.y16_c00335{bottom:136.304700px;}
.y15_c00335{bottom:166.310700px;}
.y14_c00335{bottom:196.316700px;}
.y13_c00335{bottom:226.322700px;}
.y12_c00335{bottom:256.328700px;}
.y11_c00335{bottom:286.334700px;}
.y10_c00335{bottom:346.334700px;}
.yf_c00335{bottom:436.316700px;}
.ye_c00335{bottom:466.322700px;}
.yd_c00335{bottom:496.328700px;}
.yc_c00335{bottom:526.334700px;}
.yb_c00335{bottom:586.334700px;}
.ya_c00335{bottom:676.298700px;}
.y9_c00335{bottom:706.304700px;}
.y8_c00335{bottom:736.310700px;}
.y7_c00335{bottom:766.316700px;}
.y1c_c00335{bottom:766.334700px;}
.y6_c00335{bottom:796.322700px;}
.y1b_c00335{bottom:796.334700px;}
.y5_c00335{bottom:826.328700px;}
.y1a_c00335{bottom:826.334700px;}
.y4_c00335{bottom:856.334700px;}
.y19_c00335{bottom:856.376100px;}
.y3_c00335{bottom:916.334700px;}
.y2_c00335{bottom:1006.334700px;}
.h6_c00335{height:50.292000px;}
.h2_c00335{height:54.000000px;}
.h5_c00335{height:64.800000px;}
.h4_c00335{height:78.540000px;}
.h3_c00335{height:100.980000px;}
.h0_c00335{height:1262.835000px;}
.h1_c00335{height:1263.000000px;}
.w0_c00335{width:892.914000px;}
.w1_c00335{width:893.250000px;}
.x0_c00335{left:0.000000px;}
.x2_c00335{left:82.500000px;}
.x3_c00335{left:90.000000px;}
.x4_c00335{left:106.500000px;}
.x5_c00335{left:675.611100px;}
.x1_c00335{left:786.638850px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls5_c00335{letter-spacing:-0.480000pt;}
.ls4_c00335{letter-spacing:0.000000pt;}
.ls0_c00335{letter-spacing:0.640000pt;}
.ls1_c00335{letter-spacing:0.746667pt;}
.ls3_c00335{letter-spacing:1.333333pt;}
.ls2_c00335{letter-spacing:1.466667pt;}
.ws1_c00335{word-spacing:-18.720000pt;}
.ws2_c00335{word-spacing:-15.680000pt;}
.ws0_c00335{word-spacing:-9.066667pt;}
.ws11_c00335{word-spacing:-3.712000pt;}
.ws9_c00335{word-spacing:-1.664000pt;}
.ws4_c00335{word-spacing:-0.746667pt;}
.ws3_c00335{word-spacing:0.000000pt;}
.ws8_c00335{word-spacing:0.320000pt;}
.wsd_c00335{word-spacing:1.472000pt;}
.ws12_c00335{word-spacing:2.112000pt;}
.ws5_c00335{word-spacing:2.432000pt;}
.wsa_c00335{word-spacing:3.136000pt;}
.wsb_c00335{word-spacing:3.968000pt;}
.ws7_c00335{word-spacing:4.864000pt;}
.ws10_c00335{word-spacing:5.056000pt;}
.ws6_c00335{word-spacing:5.248000pt;}
.ws13_c00335{word-spacing:6.592000pt;}
.ws14_c00335{word-spacing:7.424000pt;}
.wsf_c00335{word-spacing:7.872000pt;}
.wsc_c00335{word-spacing:13.760000pt;}
.wse_c00335{word-spacing:17.792000pt;}
._0_c00335{margin-left:-426.966400pt;}
._1_c00335{margin-left:-3.733333pt;}
._4_c00335{margin-left:-2.717867pt;}
._3_c00335{margin-left:-1.177600pt;}
._2_c00335{width:0.908800pt;}
._5_c00335{width:2.188800pt;}
.fs1_c00335{font-size:37.333333pt;}
.fs0_c00335{font-size:53.333333pt;}
.fs5_c00335{font-size:58.666667pt;}
.fs4_c00335{font-size:64.000000pt;}
.fs3_c00335{font-size:74.666667pt;}
.fs2_c00335{font-size:96.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y1_c00335{bottom:36.666667pt;}
.y18_c00335{bottom:67.815733pt;}
.y17_c00335{bottom:94.487733pt;}
.y16_c00335{bottom:121.159733pt;}
.y15_c00335{bottom:147.831733pt;}
.y14_c00335{bottom:174.503733pt;}
.y13_c00335{bottom:201.175733pt;}
.y12_c00335{bottom:227.847733pt;}
.y11_c00335{bottom:254.519733pt;}
.y10_c00335{bottom:307.853067pt;}
.yf_c00335{bottom:387.837067pt;}
.ye_c00335{bottom:414.509067pt;}
.yd_c00335{bottom:441.181067pt;}
.yc_c00335{bottom:467.853067pt;}
.yb_c00335{bottom:521.186400pt;}
.ya_c00335{bottom:601.154400pt;}
.y9_c00335{bottom:627.826400pt;}
.y8_c00335{bottom:654.498400pt;}
.y7_c00335{bottom:681.170400pt;}
.y1c_c00335{bottom:681.186400pt;}
.y6_c00335{bottom:707.842400pt;}
.y1b_c00335{bottom:707.853067pt;}
.y5_c00335{bottom:734.514400pt;}
.y1a_c00335{bottom:734.519733pt;}
.y4_c00335{bottom:761.186400pt;}
.y19_c00335{bottom:761.223200pt;}
.y3_c00335{bottom:814.519733pt;}
.y2_c00335{bottom:894.519733pt;}
.h6_c00335{height:44.704000pt;}
.h2_c00335{height:48.000000pt;}
.h5_c00335{height:57.600000pt;}
.h4_c00335{height:69.813333pt;}
.h3_c00335{height:89.760000pt;}
.h0_c00335{height:1122.520000pt;}
.h1_c00335{height:1122.666667pt;}
.w0_c00335{width:793.701333pt;}
.w1_c00335{width:794.000000pt;}
.x0_c00335{left:0.000000pt;}
.x2_c00335{left:73.333333pt;}
.x3_c00335{left:80.000000pt;}
.x4_c00335{left:94.666667pt;}
.x5_c00335{left:600.543200pt;}
.x1_c00335{left:699.234533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.199000;font-style:normal;font-weight:normal;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_583606fbcea4c0857bf817de.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:0.862305;font-style: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);}
.m1_c00336{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls2_c00336{letter-spacing:0.000000px;}
.ls1_c00336{letter-spacing:0.676800px;}
.ls0_c00336{letter-spacing:0.720000px;}
.ls3_c00336{letter-spacing:0.840000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00336{word-spacing:-72.000000px;}
.ws0_c00336{word-spacing:-10.200000px;}
.wsb_c00336{word-spacing:-7.128000px;}
.wsa_c00336{word-spacing:-5.184000px;}
.ws11_c00336{word-spacing:-3.528000px;}
.ws4_c00336{word-spacing:-2.448000px;}
.ws6_c00336{word-spacing:-1.656000px;}
.ws5_c00336{word-spacing:-1.080000px;}
.ws7_c00336{word-spacing:-0.840000px;}
.ws10_c00336{word-spacing:-0.720000px;}
.ws2_c00336{word-spacing:0.000000px;}
.wsc_c00336{word-spacing:0.792000px;}
.ws3_c00336{word-spacing:1.800000px;}
.wse_c00336{word-spacing:2.376000px;}
.ws9_c00336{word-spacing:3.024000px;}
.wsf_c00336{word-spacing:3.096000px;}
.ws15_c00336{word-spacing:4.176000px;}
.ws12_c00336{word-spacing:4.752000px;}
.ws8_c00336{word-spacing:5.760000px;}
.wsd_c00336{word-spacing:6.984000px;}
.ws14_c00336{word-spacing:10.584000px;}
.ws13_c00336{word-spacing:16.704000px;}
._0_c00336{margin-left:-480.337200px;}
._5_c00336{margin-left:-6.134400px;}
._1_c00336{margin-left:-4.200000px;}
._4_c00336{margin-left:-2.318400px;}
._3_c00336{margin-left:-1.195200px;}
._2_c00336{width:1.771200px;}
._7_c00336{width:3.283200px;}
._8_c00336{width:4.744800px;}
._6_c00336{width:5.817600px;}
.fc2_c00336{color:rgb(32,32,32);}
.fc1_c00336{color:rgb(232,86,17);}
.fc0_c00336{color:rgb(60,60,59);}
.fs1_c00336{font-size:42.000000px;}
.fs0_c00336{font-size:60.000000px;}
.fs2_c00336{font-size:72.000000px;}
.fs3_c00336{font-size:84.000000px;}
.y0_c00336{bottom:0.000000px;}
.y1_c00336{bottom:41.250000px;}
.y16_c00336{bottom:256.304700px;}
.y15_c00336{bottom:286.310700px;}
.y14_c00336{bottom:316.316700px;}
.y13_c00336{bottom:346.322700px;}
.y12_c00336{bottom:376.328700px;}
.y11_c00336{bottom:406.334700px;}
.y10_c00336{bottom:466.334700px;}
.yf_c00336{bottom:556.292700px;}
.ye_c00336{bottom:586.298700px;}
.yd_c00336{bottom:616.304700px;}
.yc_c00336{bottom:646.310700px;}
.yb_c00336{bottom:676.316700px;}
.ya_c00336{bottom:706.322700px;}
.y9_c00336{bottom:736.328700px;}
.y8_c00336{bottom:766.334700px;}
.y7_c00336{bottom:826.334700px;}
.y6_c00336{bottom:902.810700px;}
.y5_c00336{bottom:932.816700px;}
.y4_c00336{bottom:962.822700px;}
.y3_c00336{bottom:992.828700px;}
.y2_c00336{bottom:1022.834700px;}
.h2_c00336{height:54.000000px;}
.h3_c00336{height:64.800000px;}
.h4_c00336{height:78.540000px;}
.h0_c00336{height:1262.835000px;}
.h1_c00336{height:1263.000000px;}
.w0_c00336{width:892.914000px;}
.w1_c00336{width:893.250000px;}
.x0_c00336{left:0.000000px;}
.x3_c00336{left:90.000000px;}
.x2_c00336{left:106.500000px;}
.x1_c00336{left:788.738850px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls2_c00336{letter-spacing:0.000000pt;}
.ls1_c00336{letter-spacing:0.601600pt;}
.ls0_c00336{letter-spacing:0.640000pt;}
.ls3_c00336{letter-spacing:0.746667pt;}
.ws1_c00336{word-spacing:-64.000000pt;}
.ws0_c00336{word-spacing:-9.066667pt;}
.wsb_c00336{word-spacing:-6.336000pt;}
.wsa_c00336{word-spacing:-4.608000pt;}
.ws11_c00336{word-spacing:-3.136000pt;}
.ws4_c00336{word-spacing:-2.176000pt;}
.ws6_c00336{word-spacing:-1.472000pt;}
.ws5_c00336{word-spacing:-0.960000pt;}
.ws7_c00336{word-spacing:-0.746667pt;}
.ws10_c00336{word-spacing:-0.640000pt;}
.ws2_c00336{word-spacing:0.000000pt;}
.wsc_c00336{word-spacing:0.704000pt;}
.ws3_c00336{word-spacing:1.600000pt;}
.wse_c00336{word-spacing:2.112000pt;}
.ws9_c00336{word-spacing:2.688000pt;}
.wsf_c00336{word-spacing:2.752000pt;}
.ws15_c00336{word-spacing:3.712000pt;}
.ws12_c00336{word-spacing:4.224000pt;}
.ws8_c00336{word-spacing:5.120000pt;}
.wsd_c00336{word-spacing:6.208000pt;}
.ws14_c00336{word-spacing:9.408000pt;}
.ws13_c00336{word-spacing:14.848000pt;}
._0_c00336{margin-left:-426.966400pt;}
._5_c00336{margin-left:-5.452800pt;}
._1_c00336{margin-left:-3.733333pt;}
._4_c00336{margin-left:-2.060800pt;}
._3_c00336{margin-left:-1.062400pt;}
._2_c00336{width:1.574400pt;}
._7_c00336{width:2.918400pt;}
._8_c00336{width:4.217600pt;}
._6_c00336{width:5.171200pt;}
.fs1_c00336{font-size:37.333333pt;}
.fs0_c00336{font-size:53.333333pt;}
.fs2_c00336{font-size:64.000000pt;}
.fs3_c00336{font-size:74.666667pt;}
.y0_c00336{bottom:0.000000pt;}
.y1_c00336{bottom:36.666667pt;}
.y16_c00336{bottom:227.826400pt;}
.y15_c00336{bottom:254.498400pt;}
.y14_c00336{bottom:281.170400pt;}
.y13_c00336{bottom:307.842400pt;}
.y12_c00336{bottom:334.514400pt;}
.y11_c00336{bottom:361.186400pt;}
.y10_c00336{bottom:414.519733pt;}
.yf_c00336{bottom:494.482400pt;}
.ye_c00336{bottom:521.154400pt;}
.yd_c00336{bottom:547.826400pt;}
.yc_c00336{bottom:574.498400pt;}
.yb_c00336{bottom:601.170400pt;}
.ya_c00336{bottom:627.842400pt;}
.y9_c00336{bottom:654.514400pt;}
.y8_c00336{bottom:681.186400pt;}
.y7_c00336{bottom:734.519733pt;}
.y6_c00336{bottom:802.498400pt;}
.y5_c00336{bottom:829.170400pt;}
.y4_c00336{bottom:855.842400pt;}
.y3_c00336{bottom:882.514400pt;}
.y2_c00336{bottom:909.186400pt;}
.h2_c00336{height:48.000000pt;}
.h3_c00336{height:57.600000pt;}
.h4_c00336{height:69.813333pt;}
.h0_c00336{height:1122.520000pt;}
.h1_c00336{height:1122.666667pt;}
.w0_c00336{width:793.701333pt;}
.w1_c00336{width:794.000000pt;}
.x0_c00336{left:0.000000pt;}
.x3_c00336{left:80.000000pt;}
.x2_c00336{left:94.666667pt;}
.x1_c00336{left:701.101200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a378ba6f218df5456748c66d.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.161000;font-style: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);}
.m1_c00337{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls5_c00337{letter-spacing:-0.324000px;}
.ls4_c00337{letter-spacing:0.000000px;}
.ls0_c00337{letter-spacing:0.720000px;}
.ls1_c00337{letter-spacing:0.840000px;}
.ls3_c00337{letter-spacing:1.500000px;}
.ls2_c00337{letter-spacing:1.650000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00337{word-spacing:-21.276000px;}
.ws2_c00337{word-spacing:-17.640000px;}
.ws3_c00337{word-spacing:-14.850000px;}
.ws0_c00337{word-spacing:-10.200000px;}
.ws13_c00337{word-spacing:-3.600000px;}
.ws5_c00337{word-spacing:-0.840000px;}
.ws7_c00337{word-spacing:-0.432000px;}
.ws6_c00337{word-spacing:-0.072000px;}
.ws4_c00337{word-spacing:0.000000px;}
.ws11_c00337{word-spacing:1.656000px;}
.ws8_c00337{word-spacing:2.880000px;}
.ws9_c00337{word-spacing:3.384000px;}
.wsf_c00337{word-spacing:4.464000px;}
.wsc_c00337{word-spacing:4.896000px;}
.ws14_c00337{word-spacing:5.184000px;}
.wsa_c00337{word-spacing:5.544000px;}
.wse_c00337{word-spacing:7.344000px;}
.ws12_c00337{word-spacing:7.704000px;}
.ws10_c00337{word-spacing:8.064000px;}
.wsd_c00337{word-spacing:9.576000px;}
.wsb_c00337{word-spacing:12.096000px;}
._0_c00337{margin-left:-480.337800px;}
._7_c00337{margin-left:-7.270800px;}
._3_c00337{margin-left:-6.066000px;}
._1_c00337{margin-left:-4.200000px;}
._4_c00337{margin-left:-2.377200px;}
._2_c00337{margin-left:-1.134000px;}
._5_c00337{width:1.267200px;}
._6_c00337{width:3.397200px;}
.fc3_c00337{color:rgb(32,32,32);}
.fc2_c00337{color:rgb(233,83,14);}
.fc1_c00337{color:rgb(232,86,17);}
.fc4_c00337{color:rgb(157,157,156);}
.fc0_c00337{color:rgb(60,60,59);}
.fs1_c00337{font-size:42.000000px;}
.fs0_c00337{font-size:60.000000px;}
.fs5_c00337{font-size:66.000000px;}
.fs4_c00337{font-size:72.000000px;}
.fs3_c00337{font-size:84.000000px;}
.fs2_c00337{font-size:108.000000px;}
.y0_c00337{bottom:0.000000px;}
.y1_c00337{bottom:41.250000px;}
.y17_c00337{bottom:106.286700px;}
.y16_c00337{bottom:136.292700px;}
.y15_c00337{bottom:166.298700px;}
.y14_c00337{bottom:196.304700px;}
.y13_c00337{bottom:226.310700px;}
.y12_c00337{bottom:256.316700px;}
.y11_c00337{bottom:286.322700px;}
.y10_c00337{bottom:316.328700px;}
.yf_c00337{bottom:346.334700px;}
.ye_c00337{bottom:406.334700px;}
.yd_c00337{bottom:496.322700px;}
.yc_c00337{bottom:526.328700px;}
.yb_c00337{bottom:556.334700px;}
.ya_c00337{bottom:616.334700px;}
.y9_c00337{bottom:706.304700px;}
.y8_c00337{bottom:736.310700px;}
.y7_c00337{bottom:766.316700px;}
.y1b_c00337{bottom:766.334700px;}
.y6_c00337{bottom:796.322700px;}
.y1a_c00337{bottom:796.334700px;}
.y5_c00337{bottom:826.328700px;}
.y19_c00337{bottom:826.334700px;}
.y4_c00337{bottom:856.334700px;}
.y18_c00337{bottom:856.376100px;}
.y3_c00337{bottom:916.334700px;}
.y2_c00337{bottom:1006.334700px;}
.h6_c00337{height:50.292000px;}
.h2_c00337{height:54.000000px;}
.h5_c00337{height:64.800000px;}
.h4_c00337{height:78.540000px;}
.h3_c00337{height:100.980000px;}
.h0_c00337{height:1262.835000px;}
.h1_c00337{height:1263.000000px;}
.w0_c00337{width:892.914000px;}
.w1_c00337{width:893.250000px;}
.x0_c00337{left:0.000000px;}
.x2_c00337{left:82.500000px;}
.x3_c00337{left:90.000000px;}
.x4_c00337{left:106.500000px;}
.x5_c00337{left:675.611100px;}
.x1_c00337{left:786.714000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls5_c00337{letter-spacing:-0.288000pt;}
.ls4_c00337{letter-spacing:0.000000pt;}
.ls0_c00337{letter-spacing:0.640000pt;}
.ls1_c00337{letter-spacing:0.746667pt;}
.ls3_c00337{letter-spacing:1.333333pt;}
.ls2_c00337{letter-spacing:1.466667pt;}
.ws1_c00337{word-spacing:-18.912000pt;}
.ws2_c00337{word-spacing:-15.680000pt;}
.ws3_c00337{word-spacing:-13.200000pt;}
.ws0_c00337{word-spacing:-9.066667pt;}
.ws13_c00337{word-spacing:-3.200000pt;}
.ws5_c00337{word-spacing:-0.746667pt;}
.ws7_c00337{word-spacing:-0.384000pt;}
.ws6_c00337{word-spacing:-0.064000pt;}
.ws4_c00337{word-spacing:0.000000pt;}
.ws11_c00337{word-spacing:1.472000pt;}
.ws8_c00337{word-spacing:2.560000pt;}
.ws9_c00337{word-spacing:3.008000pt;}
.wsf_c00337{word-spacing:3.968000pt;}
.wsc_c00337{word-spacing:4.352000pt;}
.ws14_c00337{word-spacing:4.608000pt;}
.wsa_c00337{word-spacing:4.928000pt;}
.wse_c00337{word-spacing:6.528000pt;}
.ws12_c00337{word-spacing:6.848000pt;}
.ws10_c00337{word-spacing:7.168000pt;}
.wsd_c00337{word-spacing:8.512000pt;}
.wsb_c00337{word-spacing:10.752000pt;}
._0_c00337{margin-left:-426.966933pt;}
._7_c00337{margin-left:-6.462933pt;}
._3_c00337{margin-left:-5.392000pt;}
._1_c00337{margin-left:-3.733333pt;}
._4_c00337{margin-left:-2.113067pt;}
._2_c00337{margin-left:-1.008000pt;}
._5_c00337{width:1.126400pt;}
._6_c00337{width:3.019733pt;}
.fs1_c00337{font-size:37.333333pt;}
.fs0_c00337{font-size:53.333333pt;}
.fs5_c00337{font-size:58.666667pt;}
.fs4_c00337{font-size:64.000000pt;}
.fs3_c00337{font-size:74.666667pt;}
.fs2_c00337{font-size:96.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y1_c00337{bottom:36.666667pt;}
.y17_c00337{bottom:94.477067pt;}
.y16_c00337{bottom:121.149067pt;}
.y15_c00337{bottom:147.821067pt;}
.y14_c00337{bottom:174.493067pt;}
.y13_c00337{bottom:201.165067pt;}
.y12_c00337{bottom:227.837067pt;}
.y11_c00337{bottom:254.509067pt;}
.y10_c00337{bottom:281.181067pt;}
.yf_c00337{bottom:307.853067pt;}
.ye_c00337{bottom:361.186400pt;}
.yd_c00337{bottom:441.175733pt;}
.yc_c00337{bottom:467.847733pt;}
.yb_c00337{bottom:494.519733pt;}
.ya_c00337{bottom:547.853067pt;}
.y9_c00337{bottom:627.826400pt;}
.y8_c00337{bottom:654.498400pt;}
.y7_c00337{bottom:681.170400pt;}
.y1b_c00337{bottom:681.186400pt;}
.y6_c00337{bottom:707.842400pt;}
.y1a_c00337{bottom:707.853067pt;}
.y5_c00337{bottom:734.514400pt;}
.y19_c00337{bottom:734.519733pt;}
.y4_c00337{bottom:761.186400pt;}
.y18_c00337{bottom:761.223200pt;}
.y3_c00337{bottom:814.519733pt;}
.y2_c00337{bottom:894.519733pt;}
.h6_c00337{height:44.704000pt;}
.h2_c00337{height:48.000000pt;}
.h5_c00337{height:57.600000pt;}
.h4_c00337{height:69.813333pt;}
.h3_c00337{height:89.760000pt;}
.h0_c00337{height:1122.520000pt;}
.h1_c00337{height:1122.666667pt;}
.w0_c00337{width:793.701333pt;}
.w1_c00337{width:794.000000pt;}
.x0_c00337{left:0.000000pt;}
.x2_c00337{left:73.333333pt;}
.x3_c00337{left:80.000000pt;}
.x4_c00337{left:94.666667pt;}
.x5_c00337{left:600.543200pt;}
.x1_c00337{left:699.301333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.199000;font-style:normal;font-weight:normal;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_78e1d52da6c46c75db5f6b52.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:0.862305;font-style: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);}
.m1_c00338{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls1_c00338{letter-spacing:0.000000px;}
.ls0_c00338{letter-spacing:0.720000px;}
.ls2_c00338{letter-spacing:0.840000px;}
.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;}
}
.ws5_c00338{word-spacing:-13.752000px;}
.ws1_c00338{word-spacing:-12.960000px;}
.ws0_c00338{word-spacing:-10.200000px;}
.ws4_c00338{word-spacing:-1.152000px;}
.ws6_c00338{word-spacing:-0.840000px;}
.ws2_c00338{word-spacing:0.000000px;}
.wsb_c00338{word-spacing:0.864000px;}
.ws12_c00338{word-spacing:2.592000px;}
.ws10_c00338{word-spacing:3.672000px;}
.wsd_c00338{word-spacing:5.184000px;}
.wsf_c00338{word-spacing:5.328000px;}
.ws7_c00338{word-spacing:5.976000px;}
.ws8_c00338{word-spacing:6.912000px;}
.ws3_c00338{word-spacing:8.640000px;}
.ws9_c00338{word-spacing:9.792000px;}
.wse_c00338{word-spacing:11.088000px;}
.wsc_c00338{word-spacing:11.160000px;}
.wsa_c00338{word-spacing:16.488000px;}
.ws11_c00338{word-spacing:16.920000px;}
._0_c00338{margin-left:-480.337200px;}
._6_c00338{margin-left:-8.136000px;}
._5_c00338{margin-left:-5.760000px;}
._1_c00338{margin-left:-4.200000px;}
._2_c00338{margin-left:-2.160000px;}
._3_c00338{margin-left:-1.080000px;}
._7_c00338{width:1.584000px;}
._4_c00338{width:13.752000px;}
.fc2_c00338{color:rgb(32,32,32);}
.fc1_c00338{color:rgb(232,86,17);}
.fc0_c00338{color:rgb(60,60,59);}
.fs1_c00338{font-size:42.000000px;}
.fs0_c00338{font-size:60.000000px;}
.fs2_c00338{font-size:72.000000px;}
.fs3_c00338{font-size:84.000000px;}
.y0_c00338{bottom:0.000000px;}
.y1_c00338{bottom:41.250000px;}
.y13_c00338{bottom:346.304700px;}
.y12_c00338{bottom:376.310700px;}
.y11_c00338{bottom:406.316700px;}
.y10_c00338{bottom:436.322700px;}
.yf_c00338{bottom:466.328700px;}
.ye_c00338{bottom:496.334700px;}
.yd_c00338{bottom:556.334700px;}
.yc_c00338{bottom:646.298700px;}
.yb_c00338{bottom:676.304700px;}
.ya_c00338{bottom:706.310700px;}
.y9_c00338{bottom:736.316700px;}
.y8_c00338{bottom:766.322700px;}
.y7_c00338{bottom:796.328700px;}
.y6_c00338{bottom:826.334700px;}
.y5_c00338{bottom:886.334700px;}
.y4_c00338{bottom:962.822700px;}
.y3_c00338{bottom:992.828700px;}
.y2_c00338{bottom:1022.834700px;}
.h2_c00338{height:54.000000px;}
.h3_c00338{height:64.800000px;}
.h4_c00338{height:78.540000px;}
.h0_c00338{height:1262.835000px;}
.h1_c00338{height:1263.000000px;}
.w0_c00338{width:892.914000px;}
.w1_c00338{width:893.250000px;}
.x0_c00338{left:0.000000px;}
.x3_c00338{left:90.000000px;}
.x2_c00338{left:106.500000px;}
.x1_c00338{left:786.638850px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls1_c00338{letter-spacing:0.000000pt;}
.ls0_c00338{letter-spacing:0.640000pt;}
.ls2_c00338{letter-spacing:0.746667pt;}
.ws5_c00338{word-spacing:-12.224000pt;}
.ws1_c00338{word-spacing:-11.520000pt;}
.ws0_c00338{word-spacing:-9.066667pt;}
.ws4_c00338{word-spacing:-1.024000pt;}
.ws6_c00338{word-spacing:-0.746667pt;}
.ws2_c00338{word-spacing:0.000000pt;}
.wsb_c00338{word-spacing:0.768000pt;}
.ws12_c00338{word-spacing:2.304000pt;}
.ws10_c00338{word-spacing:3.264000pt;}
.wsd_c00338{word-spacing:4.608000pt;}
.wsf_c00338{word-spacing:4.736000pt;}
.ws7_c00338{word-spacing:5.312000pt;}
.ws8_c00338{word-spacing:6.144000pt;}
.ws3_c00338{word-spacing:7.680000pt;}
.ws9_c00338{word-spacing:8.704000pt;}
.wse_c00338{word-spacing:9.856000pt;}
.wsc_c00338{word-spacing:9.920000pt;}
.wsa_c00338{word-spacing:14.656000pt;}
.ws11_c00338{word-spacing:15.040000pt;}
._0_c00338{margin-left:-426.966400pt;}
._6_c00338{margin-left:-7.232000pt;}
._5_c00338{margin-left:-5.120000pt;}
._1_c00338{margin-left:-3.733333pt;}
._2_c00338{margin-left:-1.920000pt;}
._3_c00338{margin-left:-0.960000pt;}
._7_c00338{width:1.408000pt;}
._4_c00338{width:12.224000pt;}
.fs1_c00338{font-size:37.333333pt;}
.fs0_c00338{font-size:53.333333pt;}
.fs2_c00338{font-size:64.000000pt;}
.fs3_c00338{font-size:74.666667pt;}
.y0_c00338{bottom:0.000000pt;}
.y1_c00338{bottom:36.666667pt;}
.y13_c00338{bottom:307.826400pt;}
.y12_c00338{bottom:334.498400pt;}
.y11_c00338{bottom:361.170400pt;}
.y10_c00338{bottom:387.842400pt;}
.yf_c00338{bottom:414.514400pt;}
.ye_c00338{bottom:441.186400pt;}
.yd_c00338{bottom:494.519733pt;}
.yc_c00338{bottom:574.487733pt;}
.yb_c00338{bottom:601.159733pt;}
.ya_c00338{bottom:627.831733pt;}
.y9_c00338{bottom:654.503733pt;}
.y8_c00338{bottom:681.175733pt;}
.y7_c00338{bottom:707.847733pt;}
.y6_c00338{bottom:734.519733pt;}
.y5_c00338{bottom:787.853067pt;}
.y4_c00338{bottom:855.842400pt;}
.y3_c00338{bottom:882.514400pt;}
.y2_c00338{bottom:909.186400pt;}
.h2_c00338{height:48.000000pt;}
.h3_c00338{height:57.600000pt;}
.h4_c00338{height:69.813333pt;}
.h0_c00338{height:1122.520000pt;}
.h1_c00338{height:1122.666667pt;}
.w0_c00338{width:793.701333pt;}
.w1_c00338{width:794.000000pt;}
.x0_c00338{left:0.000000pt;}
.x3_c00338{left:80.000000pt;}
.x2_c00338{left:94.666667pt;}
.x1_c00338{left:699.234533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:1.185000;font-style:normal;font-weight:normal;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_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00339{font-family:ff5_c00339;line-height:1.155000;font-style: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);}
.m1_c00339{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls2_c00339{letter-spacing:0.000000px;}
.ls0_c00339{letter-spacing:0.864000px;}
.ls1_c00339{letter-spacing:1.200000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00339{word-spacing:-13.104000px;}
.ws0_c00339{word-spacing:-10.200000px;}
.ws6_c00339{word-spacing:-7.560000px;}
.ws7_c00339{word-spacing:-3.840000px;}
.ws3_c00339{word-spacing:-3.816000px;}
.ws4_c00339{word-spacing:-3.528000px;}
.ws5_c00339{word-spacing:-0.864000px;}
.ws2_c00339{word-spacing:0.000000px;}
._0_c00339{margin-left:-480.337200px;}
._8_c00339{margin-left:-9.600000px;}
._4_c00339{margin-left:-7.848000px;}
._5_c00339{margin-left:-6.480000px;}
._1_c00339{margin-left:-4.200000px;}
._2_c00339{margin-left:-1.440000px;}
._3_c00339{width:3.816000px;}
._7_c00339{width:5.160000px;}
._6_c00339{width:7.560000px;}
.fc3_c00339{color:rgb(255,255,255);}
.fc2_c00339{color:rgb(233,83,14);}
.fc1_c00339{color:rgb(232,86,17);}
.fc0_c00339{color:rgb(60,60,59);}
.fs1_c00339{font-size:42.000000px;}
.fs0_c00339{font-size:60.000000px;}
.fs3_c00339{font-size:72.000000px;}
.fs4_c00339{font-size:120.000000px;}
.fs2_c00339{font-size:360.000000px;}
.y0_c00339{bottom:0.000000px;}
.y1_c00339{bottom:41.250000px;}
.y9_c00339{bottom:574.310700px;}
.y8_c00339{bottom:595.316700px;}
.y7_c00339{bottom:616.322700px;}
.y6_c00339{bottom:664.328700px;}
.y5_c00339{bottom:685.334700px;}
.y4_c00339{bottom:706.340700px;}
.y3_c00339{bottom:752.834700px;}
.yd_c00339{bottom:916.334700px;}
.yc_c00339{bottom:946.334700px;}
.yb_c00339{bottom:976.334700px;}
.ya_c00339{bottom:1006.334700px;}
.y2_c00339{bottom:1093.526700px;}
.h2_c00339{height:54.000000px;}
.h5_c00339{height:64.800000px;}
.h4_c00339{height:66.456000px;}
.h6_c00339{height:112.200000px;}
.h3_c00339{height:324.000000px;}
.h0_c00339{height:1262.835000px;}
.h1_c00339{height:1263.000000px;}
.w0_c00339{width:892.914000px;}
.w1_c00339{width:893.250000px;}
.x0_c00339{left:0.000000px;}
.x2_c00339{left:81.290250px;}
.x3_c00339{left:82.393650px;}
.x5_c00339{left:112.287450px;}
.x4_c00339{left:127.393650px;}
.x1_c00339{left:785.678850px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls2_c00339{letter-spacing:0.000000pt;}
.ls0_c00339{letter-spacing:0.768000pt;}
.ls1_c00339{letter-spacing:1.066667pt;}
.ws1_c00339{word-spacing:-11.648000pt;}
.ws0_c00339{word-spacing:-9.066667pt;}
.ws6_c00339{word-spacing:-6.720000pt;}
.ws7_c00339{word-spacing:-3.413333pt;}
.ws3_c00339{word-spacing:-3.392000pt;}
.ws4_c00339{word-spacing:-3.136000pt;}
.ws5_c00339{word-spacing:-0.768000pt;}
.ws2_c00339{word-spacing:0.000000pt;}
._0_c00339{margin-left:-426.966400pt;}
._8_c00339{margin-left:-8.533333pt;}
._4_c00339{margin-left:-6.976000pt;}
._5_c00339{margin-left:-5.760000pt;}
._1_c00339{margin-left:-3.733333pt;}
._2_c00339{margin-left:-1.280000pt;}
._3_c00339{width:3.392000pt;}
._7_c00339{width:4.586667pt;}
._6_c00339{width:6.720000pt;}
.fs1_c00339{font-size:37.333333pt;}
.fs0_c00339{font-size:53.333333pt;}
.fs3_c00339{font-size:64.000000pt;}
.fs4_c00339{font-size:106.666667pt;}
.fs2_c00339{font-size:320.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y1_c00339{bottom:36.666667pt;}
.y9_c00339{bottom:510.498400pt;}
.y8_c00339{bottom:529.170400pt;}
.y7_c00339{bottom:547.842400pt;}
.y6_c00339{bottom:590.514400pt;}
.y5_c00339{bottom:609.186400pt;}
.y4_c00339{bottom:627.858400pt;}
.y3_c00339{bottom:669.186400pt;}
.yd_c00339{bottom:814.519733pt;}
.yc_c00339{bottom:841.186400pt;}
.yb_c00339{bottom:867.853067pt;}
.ya_c00339{bottom:894.519733pt;}
.y2_c00339{bottom:972.023733pt;}
.h2_c00339{height:48.000000pt;}
.h5_c00339{height:57.600000pt;}
.h4_c00339{height:59.072000pt;}
.h6_c00339{height:99.733333pt;}
.h3_c00339{height:288.000000pt;}
.h0_c00339{height:1122.520000pt;}
.h1_c00339{height:1122.666667pt;}
.w0_c00339{width:793.701333pt;}
.w1_c00339{width:794.000000pt;}
.x0_c00339{left:0.000000pt;}
.x2_c00339{left:72.258000pt;}
.x3_c00339{left:73.238800pt;}
.x5_c00339{left:99.811067pt;}
.x4_c00339{left:113.238800pt;}
.x1_c00339{left:698.381200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.160000;font-style:normal;font-weight:normal;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_e12e76fc6151d647455519d2.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00340;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:1.161000;font-style: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);}
.m1_c00340{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls4_c00340{letter-spacing:-0.540000px;}
.ls3_c00340{letter-spacing:0.000000px;}
.ls0_c00340{letter-spacing:0.720000px;}
.ls5_c00340{letter-spacing:0.840000px;}
.ls2_c00340{letter-spacing:1.500000px;}
.ls1_c00340{letter-spacing:1.650000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00340{word-spacing:-21.060000px;}
.ws2_c00340{word-spacing:-11.700000px;}
.ws0_c00340{word-spacing:-10.200000px;}
.ws8_c00340{word-spacing:-2.520000px;}
.ws11_c00340{word-spacing:-1.872000px;}
.ws12_c00340{word-spacing:-1.500000px;}
.ws4_c00340{word-spacing:-0.840000px;}
.ws3_c00340{word-spacing:0.000000px;}
.ws7_c00340{word-spacing:1.944000px;}
.wsf_c00340{word-spacing:3.600000px;}
.ws5_c00340{word-spacing:3.888000px;}
.ws10_c00340{word-spacing:4.608000px;}
.wsd_c00340{word-spacing:6.264000px;}
.ws6_c00340{word-spacing:6.336000px;}
.wsb_c00340{word-spacing:6.768000px;}
.wsc_c00340{word-spacing:7.560000px;}
.wse_c00340{word-spacing:13.320000px;}
.ws9_c00340{word-spacing:13.464000px;}
.wsa_c00340{word-spacing:14.184000px;}
._0_c00340{margin-left:-480.337800px;}
._1_c00340{margin-left:-4.200000px;}
._2_c00340{margin-left:-1.440000px;}
._3_c00340{width:1.072800px;}
._4_c00340{width:3.585600px;}
.fc3_c00340{color:rgb(32,32,32);}
.fc2_c00340{color:rgb(233,83,14);}
.fc1_c00340{color:rgb(232,86,17);}
.fc4_c00340{color:rgb(157,157,156);}
.fc0_c00340{color:rgb(60,60,59);}
.fs1_c00340{font-size:42.000000px;}
.fs0_c00340{font-size:60.000000px;}
.fs5_c00340{font-size:66.000000px;}
.fs4_c00340{font-size:72.000000px;}
.fs3_c00340{font-size:84.000000px;}
.fs2_c00340{font-size:108.000000px;}
.y0_c00340{bottom:0.000000px;}
.y1_c00340{bottom:41.250000px;}
.y11_c00340{bottom:466.256700px;}
.y10_c00340{bottom:496.262700px;}
.yf_c00340{bottom:526.268700px;}
.ye_c00340{bottom:556.274700px;}
.yd_c00340{bottom:586.280700px;}
.yc_c00340{bottom:616.286700px;}
.yb_c00340{bottom:646.292700px;}
.ya_c00340{bottom:676.298700px;}
.y9_c00340{bottom:706.304700px;}
.y17_c00340{bottom:706.334700px;}
.y8_c00340{bottom:736.310700px;}
.y16_c00340{bottom:736.334700px;}
.y7_c00340{bottom:766.316700px;}
.y15_c00340{bottom:766.334700px;}
.y6_c00340{bottom:796.322700px;}
.y14_c00340{bottom:796.334700px;}
.y5_c00340{bottom:826.328700px;}
.y13_c00340{bottom:826.334700px;}
.y4_c00340{bottom:856.334700px;}
.y12_c00340{bottom:856.376100px;}
.y3_c00340{bottom:916.334700px;}
.y2_c00340{bottom:1006.334700px;}
.h6_c00340{height:50.292000px;}
.h2_c00340{height:54.000000px;}
.h5_c00340{height:64.800000px;}
.h4_c00340{height:78.540000px;}
.h3_c00340{height:100.980000px;}
.h0_c00340{height:1262.835000px;}
.h1_c00340{height:1263.000000px;}
.w0_c00340{width:892.914000px;}
.w1_c00340{width:893.250000px;}
.x0_c00340{left:0.000000px;}
.x2_c00340{left:82.500000px;}
.x3_c00340{left:90.000000px;}
.x4_c00340{left:106.500000px;}
.x5_c00340{left:675.611100px;}
.x1_c00340{left:789.339000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls4_c00340{letter-spacing:-0.480000pt;}
.ls3_c00340{letter-spacing:0.000000pt;}
.ls0_c00340{letter-spacing:0.640000pt;}
.ls5_c00340{letter-spacing:0.746667pt;}
.ls2_c00340{letter-spacing:1.333333pt;}
.ls1_c00340{letter-spacing:1.466667pt;}
.ws1_c00340{word-spacing:-18.720000pt;}
.ws2_c00340{word-spacing:-10.400000pt;}
.ws0_c00340{word-spacing:-9.066667pt;}
.ws8_c00340{word-spacing:-2.240000pt;}
.ws11_c00340{word-spacing:-1.664000pt;}
.ws12_c00340{word-spacing:-1.333333pt;}
.ws4_c00340{word-spacing:-0.746667pt;}
.ws3_c00340{word-spacing:0.000000pt;}
.ws7_c00340{word-spacing:1.728000pt;}
.wsf_c00340{word-spacing:3.200000pt;}
.ws5_c00340{word-spacing:3.456000pt;}
.ws10_c00340{word-spacing:4.096000pt;}
.wsd_c00340{word-spacing:5.568000pt;}
.ws6_c00340{word-spacing:5.632000pt;}
.wsb_c00340{word-spacing:6.016000pt;}
.wsc_c00340{word-spacing:6.720000pt;}
.wse_c00340{word-spacing:11.840000pt;}
.ws9_c00340{word-spacing:11.968000pt;}
.wsa_c00340{word-spacing:12.608000pt;}
._0_c00340{margin-left:-426.966933pt;}
._1_c00340{margin-left:-3.733333pt;}
._2_c00340{margin-left:-1.280000pt;}
._3_c00340{width:0.953600pt;}
._4_c00340{width:3.187200pt;}
.fs1_c00340{font-size:37.333333pt;}
.fs0_c00340{font-size:53.333333pt;}
.fs5_c00340{font-size:58.666667pt;}
.fs4_c00340{font-size:64.000000pt;}
.fs3_c00340{font-size:74.666667pt;}
.fs2_c00340{font-size:96.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y1_c00340{bottom:36.666667pt;}
.y11_c00340{bottom:414.450400pt;}
.y10_c00340{bottom:441.122400pt;}
.yf_c00340{bottom:467.794400pt;}
.ye_c00340{bottom:494.466400pt;}
.yd_c00340{bottom:521.138400pt;}
.yc_c00340{bottom:547.810400pt;}
.yb_c00340{bottom:574.482400pt;}
.ya_c00340{bottom:601.154400pt;}
.y9_c00340{bottom:627.826400pt;}
.y17_c00340{bottom:627.853067pt;}
.y8_c00340{bottom:654.498400pt;}
.y16_c00340{bottom:654.519733pt;}
.y7_c00340{bottom:681.170400pt;}
.y15_c00340{bottom:681.186400pt;}
.y6_c00340{bottom:707.842400pt;}
.y14_c00340{bottom:707.853067pt;}
.y5_c00340{bottom:734.514400pt;}
.y13_c00340{bottom:734.519733pt;}
.y4_c00340{bottom:761.186400pt;}
.y12_c00340{bottom:761.223200pt;}
.y3_c00340{bottom:814.519733pt;}
.y2_c00340{bottom:894.519733pt;}
.h6_c00340{height:44.704000pt;}
.h2_c00340{height:48.000000pt;}
.h5_c00340{height:57.600000pt;}
.h4_c00340{height:69.813333pt;}
.h3_c00340{height:89.760000pt;}
.h0_c00340{height:1122.520000pt;}
.h1_c00340{height:1122.666667pt;}
.w0_c00340{width:793.701333pt;}
.w1_c00340{width:794.000000pt;}
.x0_c00340{left:0.000000pt;}
.x2_c00340{left:73.333333pt;}
.x3_c00340{left:80.000000pt;}
.x4_c00340{left:94.666667pt;}
.x5_c00340{left:600.543200pt;}
.x1_c00340{left:701.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.160000;font-style:normal;font-weight:normal;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_66e26a8742fe6fb4b4348ad3.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.199000;font-style: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);}
.m1_c00341{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls2_c00341{letter-spacing:0.000000px;}
.ls1_c00341{letter-spacing:0.720000px;}
.ls0_c00341{letter-spacing:0.840000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00341{word-spacing:-17.640000px;}
.ws0_c00341{word-spacing:-10.200000px;}
.ws5_c00341{word-spacing:-2.016000px;}
.wsb_c00341{word-spacing:-1.728000px;}
.ws9_c00341{word-spacing:-1.512000px;}
.wse_c00341{word-spacing:-1.152000px;}
.ws6_c00341{word-spacing:-0.840000px;}
.ws3_c00341{word-spacing:-0.072000px;}
.ws2_c00341{word-spacing:0.000000px;}
.wsa_c00341{word-spacing:0.216000px;}
.wsd_c00341{word-spacing:1.656000px;}
.ws4_c00341{word-spacing:2.736000px;}
.ws8_c00341{word-spacing:12.384000px;}
.wsf_c00341{word-spacing:12.744000px;}
.ws10_c00341{word-spacing:13.752000px;}
.wsc_c00341{word-spacing:16.344000px;}
.ws7_c00341{word-spacing:20.952000px;}
._0_c00341{margin-left:-480.337200px;}
._4_c00341{margin-left:-5.416800px;}
._1_c00341{margin-left:-4.200000px;}
._3_c00341{margin-left:-2.868000px;}
._2_c00341{margin-left:-1.680000px;}
.fc2_c00341{color:rgb(32,32,32);}
.fc1_c00341{color:rgb(232,86,17);}
.fc0_c00341{color:rgb(60,60,59);}
.fs1_c00341{font-size:42.000000px;}
.fs0_c00341{font-size:60.000000px;}
.fs3_c00341{font-size:72.000000px;}
.fs2_c00341{font-size:84.000000px;}
.y0_c00341{bottom:0.000000px;}
.y1_c00341{bottom:41.250000px;}
.y16_c00341{bottom:106.316700px;}
.y15_c00341{bottom:136.322700px;}
.y14_c00341{bottom:166.328700px;}
.y13_c00341{bottom:196.334700px;}
.y12_c00341{bottom:256.334700px;}
.y11_c00341{bottom:346.316700px;}
.y10_c00341{bottom:376.322700px;}
.yf_c00341{bottom:406.328700px;}
.ye_c00341{bottom:436.334700px;}
.yd_c00341{bottom:496.334700px;}
.yc_c00341{bottom:586.304700px;}
.yb_c00341{bottom:616.310700px;}
.ya_c00341{bottom:646.316700px;}
.y9_c00341{bottom:676.322700px;}
.y8_c00341{bottom:706.328700px;}
.y7_c00341{bottom:736.334700px;}
.y6_c00341{bottom:796.334700px;}
.y5_c00341{bottom:886.322700px;}
.y4_c00341{bottom:916.328700px;}
.y3_c00341{bottom:946.334700px;}
.y2_c00341{bottom:1006.334700px;}
.h2_c00341{height:54.000000px;}
.h4_c00341{height:64.800000px;}
.h3_c00341{height:78.540000px;}
.h0_c00341{height:1262.835000px;}
.h1_c00341{height:1263.000000px;}
.w0_c00341{width:892.914000px;}
.w1_c00341{width:893.250000px;}
.x0_c00341{left:0.000000px;}
.x2_c00341{left:90.000000px;}
.x3_c00341{left:106.500000px;}
.x1_c00341{left:786.863850px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls2_c00341{letter-spacing:0.000000pt;}
.ls1_c00341{letter-spacing:0.640000pt;}
.ls0_c00341{letter-spacing:0.746667pt;}
.ws1_c00341{word-spacing:-15.680000pt;}
.ws0_c00341{word-spacing:-9.066667pt;}
.ws5_c00341{word-spacing:-1.792000pt;}
.wsb_c00341{word-spacing:-1.536000pt;}
.ws9_c00341{word-spacing:-1.344000pt;}
.wse_c00341{word-spacing:-1.024000pt;}
.ws6_c00341{word-spacing:-0.746667pt;}
.ws3_c00341{word-spacing:-0.064000pt;}
.ws2_c00341{word-spacing:0.000000pt;}
.wsa_c00341{word-spacing:0.192000pt;}
.wsd_c00341{word-spacing:1.472000pt;}
.ws4_c00341{word-spacing:2.432000pt;}
.ws8_c00341{word-spacing:11.008000pt;}
.wsf_c00341{word-spacing:11.328000pt;}
.ws10_c00341{word-spacing:12.224000pt;}
.wsc_c00341{word-spacing:14.528000pt;}
.ws7_c00341{word-spacing:18.624000pt;}
._0_c00341{margin-left:-426.966400pt;}
._4_c00341{margin-left:-4.814933pt;}
._1_c00341{margin-left:-3.733333pt;}
._3_c00341{margin-left:-2.549333pt;}
._2_c00341{margin-left:-1.493333pt;}
.fs1_c00341{font-size:37.333333pt;}
.fs0_c00341{font-size:53.333333pt;}
.fs3_c00341{font-size:64.000000pt;}
.fs2_c00341{font-size:74.666667pt;}
.y0_c00341{bottom:0.000000pt;}
.y1_c00341{bottom:36.666667pt;}
.y16_c00341{bottom:94.503733pt;}
.y15_c00341{bottom:121.175733pt;}
.y14_c00341{bottom:147.847733pt;}
.y13_c00341{bottom:174.519733pt;}
.y12_c00341{bottom:227.853067pt;}
.y11_c00341{bottom:307.837067pt;}
.y10_c00341{bottom:334.509067pt;}
.yf_c00341{bottom:361.181067pt;}
.ye_c00341{bottom:387.853067pt;}
.yd_c00341{bottom:441.186400pt;}
.yc_c00341{bottom:521.159733pt;}
.yb_c00341{bottom:547.831733pt;}
.ya_c00341{bottom:574.503733pt;}
.y9_c00341{bottom:601.175733pt;}
.y8_c00341{bottom:627.847733pt;}
.y7_c00341{bottom:654.519733pt;}
.y6_c00341{bottom:707.853067pt;}
.y5_c00341{bottom:787.842400pt;}
.y4_c00341{bottom:814.514400pt;}
.y3_c00341{bottom:841.186400pt;}
.y2_c00341{bottom:894.519733pt;}
.h2_c00341{height:48.000000pt;}
.h4_c00341{height:57.600000pt;}
.h3_c00341{height:69.813333pt;}
.h0_c00341{height:1122.520000pt;}
.h1_c00341{height:1122.666667pt;}
.w0_c00341{width:793.701333pt;}
.w1_c00341{width:794.000000pt;}
.x0_c00341{left:0.000000pt;}
.x2_c00341{left:80.000000pt;}
.x3_c00341{left:94.666667pt;}
.x1_c00341{left:699.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3149ec537cdbf06c216a448.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:1.161000;font-style: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);}
.m1_c00342{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls5_c00342{letter-spacing:-0.324000px;}
.ls4_c00342{letter-spacing:0.000000px;}
.ls1_c00342{letter-spacing:0.720000px;}
.ls0_c00342{letter-spacing:0.840000px;}
.ls3_c00342{letter-spacing:1.500000px;}
.ls2_c00342{letter-spacing:1.650000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00342{word-spacing:-21.276000px;}
.ws2_c00342{word-spacing:-17.640000px;}
.ws3_c00342{word-spacing:-14.850000px;}
.ws4_c00342{word-spacing:-11.700000px;}
.ws0_c00342{word-spacing:-10.200000px;}
.ws13_c00342{word-spacing:-3.312000px;}
.wsa_c00342{word-spacing:-2.448000px;}
.ws14_c00342{word-spacing:-1.500000px;}
.ws11_c00342{word-spacing:-1.296000px;}
.ws6_c00342{word-spacing:-1.008000px;}
.ws10_c00342{word-spacing:-0.720000px;}
.ws5_c00342{word-spacing:0.000000px;}
.wse_c00342{word-spacing:4.680000px;}
.wsc_c00342{word-spacing:4.752000px;}
.wsd_c00342{word-spacing:5.184000px;}
.ws12_c00342{word-spacing:7.200000px;}
.ws8_c00342{word-spacing:7.632000px;}
.ws7_c00342{word-spacing:8.712000px;}
.wsb_c00342{word-spacing:9.864000px;}
.wsf_c00342{word-spacing:12.600000px;}
.ws9_c00342{word-spacing:17.064000px;}
._0_c00342{margin-left:-480.337800px;}
._3_c00342{margin-left:-5.760000px;}
._1_c00342{margin-left:-4.200000px;}
._4_c00342{margin-left:-2.160000px;}
._2_c00342{margin-left:-1.134000px;}
._6_c00342{width:1.144800px;}
._5_c00342{width:4.622400px;}
.fc3_c00342{color:rgb(32,32,32);}
.fc2_c00342{color:rgb(233,83,14);}
.fc1_c00342{color:rgb(232,86,17);}
.fc4_c00342{color:rgb(157,157,156);}
.fc0_c00342{color:rgb(60,60,59);}
.fs1_c00342{font-size:42.000000px;}
.fs0_c00342{font-size:60.000000px;}
.fs6_c00342{font-size:63.000000px;}
.fs5_c00342{font-size:66.000000px;}
.fs4_c00342{font-size:72.000000px;}
.fs3_c00342{font-size:84.000000px;}
.fs2_c00342{font-size:108.000000px;}
.y0_c00342{bottom:0.000000px;}
.y1_c00342{bottom:41.250000px;}
.y12_c00342{bottom:346.322700px;}
.y11_c00342{bottom:376.328700px;}
.y10_c00342{bottom:406.334700px;}
.yf_c00342{bottom:466.334700px;}
.ye_c00342{bottom:556.274700px;}
.yd_c00342{bottom:586.280700px;}
.yc_c00342{bottom:616.286700px;}
.yb_c00342{bottom:646.292700px;}
.ya_c00342{bottom:676.298700px;}
.y19_c00342{bottom:676.334700px;}
.y9_c00342{bottom:706.304700px;}
.y18_c00342{bottom:706.334700px;}
.y8_c00342{bottom:736.310700px;}
.y17_c00342{bottom:736.334700px;}
.y7_c00342{bottom:766.316700px;}
.y16_c00342{bottom:766.334700px;}
.y6_c00342{bottom:796.322700px;}
.y15_c00342{bottom:796.334700px;}
.y5_c00342{bottom:826.328700px;}
.y14_c00342{bottom:826.334700px;}
.y4_c00342{bottom:856.334700px;}
.y13_c00342{bottom:856.376100px;}
.y3_c00342{bottom:916.334700px;}
.y2_c00342{bottom:1006.334700px;}
.h6_c00342{height:50.292000px;}
.h2_c00342{height:54.000000px;}
.h7_c00342{height:56.700000px;}
.h5_c00342{height:64.800000px;}
.h4_c00342{height:78.540000px;}
.h3_c00342{height:100.980000px;}
.h0_c00342{height:1262.835000px;}
.h1_c00342{height:1263.000000px;}
.w0_c00342{width:892.914000px;}
.w1_c00342{width:893.250000px;}
.x0_c00342{left:0.000000px;}
.x2_c00342{left:82.500000px;}
.x3_c00342{left:90.000000px;}
.x4_c00342{left:106.500000px;}
.x5_c00342{left:675.611100px;}
.x1_c00342{left:786.714000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls5_c00342{letter-spacing:-0.288000pt;}
.ls4_c00342{letter-spacing:0.000000pt;}
.ls1_c00342{letter-spacing:0.640000pt;}
.ls0_c00342{letter-spacing:0.746667pt;}
.ls3_c00342{letter-spacing:1.333333pt;}
.ls2_c00342{letter-spacing:1.466667pt;}
.ws1_c00342{word-spacing:-18.912000pt;}
.ws2_c00342{word-spacing:-15.680000pt;}
.ws3_c00342{word-spacing:-13.200000pt;}
.ws4_c00342{word-spacing:-10.400000pt;}
.ws0_c00342{word-spacing:-9.066667pt;}
.ws13_c00342{word-spacing:-2.944000pt;}
.wsa_c00342{word-spacing:-2.176000pt;}
.ws14_c00342{word-spacing:-1.333333pt;}
.ws11_c00342{word-spacing:-1.152000pt;}
.ws6_c00342{word-spacing:-0.896000pt;}
.ws10_c00342{word-spacing:-0.640000pt;}
.ws5_c00342{word-spacing:0.000000pt;}
.wse_c00342{word-spacing:4.160000pt;}
.wsc_c00342{word-spacing:4.224000pt;}
.wsd_c00342{word-spacing:4.608000pt;}
.ws12_c00342{word-spacing:6.400000pt;}
.ws8_c00342{word-spacing:6.784000pt;}
.ws7_c00342{word-spacing:7.744000pt;}
.wsb_c00342{word-spacing:8.768000pt;}
.wsf_c00342{word-spacing:11.200000pt;}
.ws9_c00342{word-spacing:15.168000pt;}
._0_c00342{margin-left:-426.966933pt;}
._3_c00342{margin-left:-5.120000pt;}
._1_c00342{margin-left:-3.733333pt;}
._4_c00342{margin-left:-1.920000pt;}
._2_c00342{margin-left:-1.008000pt;}
._6_c00342{width:1.017600pt;}
._5_c00342{width:4.108800pt;}
.fs1_c00342{font-size:37.333333pt;}
.fs0_c00342{font-size:53.333333pt;}
.fs6_c00342{font-size:56.000000pt;}
.fs5_c00342{font-size:58.666667pt;}
.fs4_c00342{font-size:64.000000pt;}
.fs3_c00342{font-size:74.666667pt;}
.fs2_c00342{font-size:96.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y1_c00342{bottom:36.666667pt;}
.y12_c00342{bottom:307.842400pt;}
.y11_c00342{bottom:334.514400pt;}
.y10_c00342{bottom:361.186400pt;}
.yf_c00342{bottom:414.519733pt;}
.ye_c00342{bottom:494.466400pt;}
.yd_c00342{bottom:521.138400pt;}
.yc_c00342{bottom:547.810400pt;}
.yb_c00342{bottom:574.482400pt;}
.ya_c00342{bottom:601.154400pt;}
.y19_c00342{bottom:601.186400pt;}
.y9_c00342{bottom:627.826400pt;}
.y18_c00342{bottom:627.853067pt;}
.y8_c00342{bottom:654.498400pt;}
.y17_c00342{bottom:654.519733pt;}
.y7_c00342{bottom:681.170400pt;}
.y16_c00342{bottom:681.186400pt;}
.y6_c00342{bottom:707.842400pt;}
.y15_c00342{bottom:707.853067pt;}
.y5_c00342{bottom:734.514400pt;}
.y14_c00342{bottom:734.519733pt;}
.y4_c00342{bottom:761.186400pt;}
.y13_c00342{bottom:761.223200pt;}
.y3_c00342{bottom:814.519733pt;}
.y2_c00342{bottom:894.519733pt;}
.h6_c00342{height:44.704000pt;}
.h2_c00342{height:48.000000pt;}
.h7_c00342{height:50.400000pt;}
.h5_c00342{height:57.600000pt;}
.h4_c00342{height:69.813333pt;}
.h3_c00342{height:89.760000pt;}
.h0_c00342{height:1122.520000pt;}
.h1_c00342{height:1122.666667pt;}
.w0_c00342{width:793.701333pt;}
.w1_c00342{width:794.000000pt;}
.x0_c00342{left:0.000000pt;}
.x2_c00342{left:73.333333pt;}
.x3_c00342{left:80.000000pt;}
.x4_c00342{left:94.666667pt;}
.x5_c00342{left:600.543200pt;}
.x1_c00342{left:699.301333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d27c0a327cee97d787e3e2f6.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.199000;font-style: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);}
.m1_c00343{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls1_c00343{letter-spacing:0.000000px;}
.ls0_c00343{letter-spacing:0.720000px;}
.ls2_c00343{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws5_c00343{word-spacing:-3.672000px;}
.ws6_c00343{word-spacing:-3.312000px;}
.ws2_c00343{word-spacing:-0.840000px;}
.ws1_c00343{word-spacing:0.000000px;}
.ws7_c00343{word-spacing:0.936000px;}
.ws3_c00343{word-spacing:2.520000px;}
.wsb_c00343{word-spacing:4.608000px;}
.wsc_c00343{word-spacing:4.824000px;}
.ws4_c00343{word-spacing:5.688000px;}
.wse_c00343{word-spacing:7.560000px;}
.ws8_c00343{word-spacing:12.096000px;}
.wsd_c00343{word-spacing:12.528000px;}
.ws9_c00343{word-spacing:12.672000px;}
.wsa_c00343{word-spacing:13.464000px;}
._0_c00343{margin-left:-480.337200px;}
._7_c00343{margin-left:-5.760000px;}
._1_c00343{margin-left:-4.200000px;}
._3_c00343{margin-left:-2.844000px;}
._2_c00343{margin-left:-1.440000px;}
._4_c00343{width:1.368000px;}
._5_c00343{width:3.312000px;}
._6_c00343{width:5.652000px;}
.fc2_c00343{color:rgb(32,32,32);}
.fc1_c00343{color:rgb(232,86,17);}
.fc0_c00343{color:rgb(60,60,59);}
.fs1_c00343{font-size:42.000000px;}
.fs0_c00343{font-size:60.000000px;}
.fs3_c00343{font-size:72.000000px;}
.fs2_c00343{font-size:84.000000px;}
.y0_c00343{bottom:0.000000px;}
.y1_c00343{bottom:41.250000px;}
.y13_c00343{bottom:286.310700px;}
.y12_c00343{bottom:316.316700px;}
.y11_c00343{bottom:346.322700px;}
.y10_c00343{bottom:376.328700px;}
.yf_c00343{bottom:406.334700px;}
.ye_c00343{bottom:466.334700px;}
.yd_c00343{bottom:556.310700px;}
.yc_c00343{bottom:586.316700px;}
.yb_c00343{bottom:616.322700px;}
.ya_c00343{bottom:646.328700px;}
.y9_c00343{bottom:676.334700px;}
.y8_c00343{bottom:736.334700px;}
.y7_c00343{bottom:826.310700px;}
.y6_c00343{bottom:856.316700px;}
.y5_c00343{bottom:886.322700px;}
.y4_c00343{bottom:916.328700px;}
.y3_c00343{bottom:946.334700px;}
.y2_c00343{bottom:1006.334700px;}
.h2_c00343{height:54.000000px;}
.h4_c00343{height:64.800000px;}
.h3_c00343{height:78.540000px;}
.h0_c00343{height:1262.835000px;}
.h1_c00343{height:1263.000000px;}
.w0_c00343{width:892.914000px;}
.w1_c00343{width:893.250000px;}
.x0_c00343{left:0.000000px;}
.x2_c00343{left:90.000000px;}
.x3_c00343{left:106.500000px;}
.x1_c00343{left:785.738850px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls1_c00343{letter-spacing:0.000000pt;}
.ls0_c00343{letter-spacing:0.640000pt;}
.ls2_c00343{letter-spacing:0.746667pt;}
.ws0_c00343{word-spacing:-9.066667pt;}
.ws5_c00343{word-spacing:-3.264000pt;}
.ws6_c00343{word-spacing:-2.944000pt;}
.ws2_c00343{word-spacing:-0.746667pt;}
.ws1_c00343{word-spacing:0.000000pt;}
.ws7_c00343{word-spacing:0.832000pt;}
.ws3_c00343{word-spacing:2.240000pt;}
.wsb_c00343{word-spacing:4.096000pt;}
.wsc_c00343{word-spacing:4.288000pt;}
.ws4_c00343{word-spacing:5.056000pt;}
.wse_c00343{word-spacing:6.720000pt;}
.ws8_c00343{word-spacing:10.752000pt;}
.wsd_c00343{word-spacing:11.136000pt;}
.ws9_c00343{word-spacing:11.264000pt;}
.wsa_c00343{word-spacing:11.968000pt;}
._0_c00343{margin-left:-426.966400pt;}
._7_c00343{margin-left:-5.120000pt;}
._1_c00343{margin-left:-3.733333pt;}
._3_c00343{margin-left:-2.528000pt;}
._2_c00343{margin-left:-1.280000pt;}
._4_c00343{width:1.216000pt;}
._5_c00343{width:2.944000pt;}
._6_c00343{width:5.024000pt;}
.fs1_c00343{font-size:37.333333pt;}
.fs0_c00343{font-size:53.333333pt;}
.fs3_c00343{font-size:64.000000pt;}
.fs2_c00343{font-size:74.666667pt;}
.y0_c00343{bottom:0.000000pt;}
.y1_c00343{bottom:36.666667pt;}
.y13_c00343{bottom:254.498400pt;}
.y12_c00343{bottom:281.170400pt;}
.y11_c00343{bottom:307.842400pt;}
.y10_c00343{bottom:334.514400pt;}
.yf_c00343{bottom:361.186400pt;}
.ye_c00343{bottom:414.519733pt;}
.yd_c00343{bottom:494.498400pt;}
.yc_c00343{bottom:521.170400pt;}
.yb_c00343{bottom:547.842400pt;}
.ya_c00343{bottom:574.514400pt;}
.y9_c00343{bottom:601.186400pt;}
.y8_c00343{bottom:654.519733pt;}
.y7_c00343{bottom:734.498400pt;}
.y6_c00343{bottom:761.170400pt;}
.y5_c00343{bottom:787.842400pt;}
.y4_c00343{bottom:814.514400pt;}
.y3_c00343{bottom:841.186400pt;}
.y2_c00343{bottom:894.519733pt;}
.h2_c00343{height:48.000000pt;}
.h4_c00343{height:57.600000pt;}
.h3_c00343{height:69.813333pt;}
.h0_c00343{height:1122.520000pt;}
.h1_c00343{height:1122.666667pt;}
.w0_c00343{width:793.701333pt;}
.w1_c00343{width:794.000000pt;}
.x0_c00343{left:0.000000pt;}
.x2_c00343{left:80.000000pt;}
.x3_c00343{left:94.666667pt;}
.x1_c00343{left:698.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00344;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00344;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;line-height:1.155000;font-style: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);}
.m1_c00344{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls3_c00344{letter-spacing:-12.600000px;}
.ls2_c00344{letter-spacing:0.000000px;}
.ls0_c00344{letter-spacing:0.864000px;}
.ls1_c00344{letter-spacing:1.200000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00344{word-spacing:-48.600000px;}
.ws2_c00344{word-spacing:-13.104000px;}
.ws0_c00344{word-spacing:-10.200000px;}
.ws5_c00344{word-spacing:-3.600000px;}
.ws4_c00344{word-spacing:-0.864000px;}
.ws3_c00344{word-spacing:0.000000px;}
._0_c00344{margin-left:-480.336600px;}
._4_c00344{margin-left:-6.480000px;}
._1_c00344{margin-left:-4.200000px;}
._5_c00344{margin-left:-3.120000px;}
._3_c00344{margin-left:-1.440000px;}
._6_c00344{width:4.440000px;}
._2_c00344{width:12.600000px;}
.fc3_c00344{color:rgb(255,255,255);}
.fc2_c00344{color:rgb(233,83,14);}
.fc1_c00344{color:rgb(232,86,17);}
.fc0_c00344{color:rgb(60,60,59);}
.fs1_c00344{font-size:42.000000px;}
.fs0_c00344{font-size:60.000000px;}
.fs3_c00344{font-size:72.000000px;}
.fs4_c00344{font-size:120.000000px;}
.fs2_c00344{font-size:360.000000px;}
.y0_c00344{bottom:0.000000px;}
.y1_c00344{bottom:41.250000px;}
.yb_c00344{bottom:532.298700px;}
.ya_c00344{bottom:553.304700px;}
.y9_c00344{bottom:574.310700px;}
.y8_c00344{bottom:595.316700px;}
.y7_c00344{bottom:616.322700px;}
.y6_c00344{bottom:664.328700px;}
.y5_c00344{bottom:685.334700px;}
.y4_c00344{bottom:706.340700px;}
.y3_c00344{bottom:752.834700px;}
.yf_c00344{bottom:916.334700px;}
.ye_c00344{bottom:946.334700px;}
.yd_c00344{bottom:976.334700px;}
.yc_c00344{bottom:1006.334700px;}
.y2_c00344{bottom:1093.526700px;}
.h2_c00344{height:54.000000px;}
.h5_c00344{height:64.800000px;}
.h4_c00344{height:66.456000px;}
.h6_c00344{height:112.200000px;}
.h3_c00344{height:324.000000px;}
.h0_c00344{height:1262.835000px;}
.h1_c00344{height:1263.000000px;}
.w0_c00344{width:892.914000px;}
.w1_c00344{width:893.250000px;}
.x0_c00344{left:0.000000px;}
.x2_c00344{left:81.290250px;}
.x3_c00344{left:82.393650px;}
.x5_c00344{left:112.287450px;}
.x4_c00344{left:127.393650px;}
.x1_c00344{left:786.788700px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls3_c00344{letter-spacing:-11.200000pt;}
.ls2_c00344{letter-spacing:0.000000pt;}
.ls0_c00344{letter-spacing:0.768000pt;}
.ls1_c00344{letter-spacing:1.066667pt;}
.ws1_c00344{word-spacing:-43.200000pt;}
.ws2_c00344{word-spacing:-11.648000pt;}
.ws0_c00344{word-spacing:-9.066667pt;}
.ws5_c00344{word-spacing:-3.200000pt;}
.ws4_c00344{word-spacing:-0.768000pt;}
.ws3_c00344{word-spacing:0.000000pt;}
._0_c00344{margin-left:-426.965867pt;}
._4_c00344{margin-left:-5.760000pt;}
._1_c00344{margin-left:-3.733333pt;}
._5_c00344{margin-left:-2.773333pt;}
._3_c00344{margin-left:-1.280000pt;}
._6_c00344{width:3.946667pt;}
._2_c00344{width:11.200000pt;}
.fs1_c00344{font-size:37.333333pt;}
.fs0_c00344{font-size:53.333333pt;}
.fs3_c00344{font-size:64.000000pt;}
.fs4_c00344{font-size:106.666667pt;}
.fs2_c00344{font-size:320.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.y1_c00344{bottom:36.666667pt;}
.yb_c00344{bottom:473.154400pt;}
.ya_c00344{bottom:491.826400pt;}
.y9_c00344{bottom:510.498400pt;}
.y8_c00344{bottom:529.170400pt;}
.y7_c00344{bottom:547.842400pt;}
.y6_c00344{bottom:590.514400pt;}
.y5_c00344{bottom:609.186400pt;}
.y4_c00344{bottom:627.858400pt;}
.y3_c00344{bottom:669.186400pt;}
.yf_c00344{bottom:814.519733pt;}
.ye_c00344{bottom:841.186400pt;}
.yd_c00344{bottom:867.853067pt;}
.yc_c00344{bottom:894.519733pt;}
.y2_c00344{bottom:972.023733pt;}
.h2_c00344{height:48.000000pt;}
.h5_c00344{height:57.600000pt;}
.h4_c00344{height:59.072000pt;}
.h6_c00344{height:99.733333pt;}
.h3_c00344{height:288.000000pt;}
.h0_c00344{height:1122.520000pt;}
.h1_c00344{height:1122.666667pt;}
.w0_c00344{width:793.701333pt;}
.w1_c00344{width:794.000000pt;}
.x0_c00344{left:0.000000pt;}
.x2_c00344{left:72.258000pt;}
.x3_c00344{left:73.238800pt;}
.x5_c00344{left:99.811067pt;}
.x4_c00344{left:113.238800pt;}
.x1_c00344{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.161000;font-style: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);}
.m1_c00345{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls5_c00345{letter-spacing:-0.540000px;}
.ls4_c00345{letter-spacing:0.000000px;}
.ls0_c00345{letter-spacing:0.720000px;}
.ls1_c00345{letter-spacing:0.840000px;}
.ls3_c00345{letter-spacing:1.500000px;}
.ls2_c00345{letter-spacing:1.650000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00345{word-spacing:-21.060000px;}
.ws2_c00345{word-spacing:-17.640000px;}
.ws0_c00345{word-spacing:-10.200000px;}
.wsa_c00345{word-spacing:-2.160000px;}
.wsf_c00345{word-spacing:-1.500000px;}
.ws4_c00345{word-spacing:-0.840000px;}
.ws3_c00345{word-spacing:0.000000px;}
.wse_c00345{word-spacing:1.512000px;}
.wsd_c00345{word-spacing:3.024000px;}
.ws9_c00345{word-spacing:3.384000px;}
.ws8_c00345{word-spacing:4.464000px;}
.wsc_c00345{word-spacing:4.824000px;}
.ws7_c00345{word-spacing:6.120000px;}
.wsb_c00345{word-spacing:10.440000px;}
.ws6_c00345{word-spacing:11.088000px;}
.ws5_c00345{word-spacing:14.184000px;}
._0_c00345{margin-left:-480.337200px;}
._1_c00345{margin-left:-4.200000px;}
._2_c00345{margin-left:-1.440000px;}
.fc3_c00345{color:rgb(32,32,32);}
.fc2_c00345{color:rgb(233,83,14);}
.fc1_c00345{color:rgb(232,86,17);}
.fc4_c00345{color:rgb(157,157,156);}
.fc0_c00345{color:rgb(60,60,59);}
.fs1_c00345{font-size:42.000000px;}
.fs0_c00345{font-size:60.000000px;}
.fs5_c00345{font-size:66.000000px;}
.fs4_c00345{font-size:72.000000px;}
.fs3_c00345{font-size:84.000000px;}
.fs2_c00345{font-size:108.000000px;}
.y0_c00345{bottom:0.000000px;}
.y1_c00345{bottom:41.250000px;}
.y11_c00345{bottom:286.310700px;}
.y10_c00345{bottom:316.316700px;}
.yf_c00345{bottom:346.322700px;}
.ye_c00345{bottom:376.328700px;}
.yd_c00345{bottom:406.334700px;}
.yc_c00345{bottom:466.334700px;}
.yb_c00345{bottom:556.322700px;}
.ya_c00345{bottom:586.328700px;}
.y9_c00345{bottom:616.334700px;}
.y8_c00345{bottom:676.334700px;}
.y17_c00345{bottom:706.334700px;}
.y16_c00345{bottom:736.334700px;}
.y7_c00345{bottom:766.316700px;}
.y15_c00345{bottom:766.334700px;}
.y6_c00345{bottom:796.322700px;}
.y14_c00345{bottom:796.334700px;}
.y5_c00345{bottom:826.328700px;}
.y13_c00345{bottom:826.334700px;}
.y4_c00345{bottom:856.334700px;}
.y12_c00345{bottom:856.376100px;}
.y3_c00345{bottom:916.334700px;}
.y2_c00345{bottom:1006.334700px;}
.h6_c00345{height:50.292000px;}
.h2_c00345{height:54.000000px;}
.h5_c00345{height:64.800000px;}
.h4_c00345{height:78.540000px;}
.h3_c00345{height:100.980000px;}
.h0_c00345{height:1262.835000px;}
.h1_c00345{height:1263.000000px;}
.w0_c00345{width:892.914000px;}
.w1_c00345{width:893.250000px;}
.x0_c00345{left:0.000000px;}
.x2_c00345{left:82.500000px;}
.x3_c00345{left:90.000000px;}
.x4_c00345{left:106.500000px;}
.x5_c00345{left:675.611100px;}
.x1_c00345{left:785.663850px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls5_c00345{letter-spacing:-0.480000pt;}
.ls4_c00345{letter-spacing:0.000000pt;}
.ls0_c00345{letter-spacing:0.640000pt;}
.ls1_c00345{letter-spacing:0.746667pt;}
.ls3_c00345{letter-spacing:1.333333pt;}
.ls2_c00345{letter-spacing:1.466667pt;}
.ws1_c00345{word-spacing:-18.720000pt;}
.ws2_c00345{word-spacing:-15.680000pt;}
.ws0_c00345{word-spacing:-9.066667pt;}
.wsa_c00345{word-spacing:-1.920000pt;}
.wsf_c00345{word-spacing:-1.333333pt;}
.ws4_c00345{word-spacing:-0.746667pt;}
.ws3_c00345{word-spacing:0.000000pt;}
.wse_c00345{word-spacing:1.344000pt;}
.wsd_c00345{word-spacing:2.688000pt;}
.ws9_c00345{word-spacing:3.008000pt;}
.ws8_c00345{word-spacing:3.968000pt;}
.wsc_c00345{word-spacing:4.288000pt;}
.ws7_c00345{word-spacing:5.440000pt;}
.wsb_c00345{word-spacing:9.280000pt;}
.ws6_c00345{word-spacing:9.856000pt;}
.ws5_c00345{word-spacing:12.608000pt;}
._0_c00345{margin-left:-426.966400pt;}
._1_c00345{margin-left:-3.733333pt;}
._2_c00345{margin-left:-1.280000pt;}
.fs1_c00345{font-size:37.333333pt;}
.fs0_c00345{font-size:53.333333pt;}
.fs5_c00345{font-size:58.666667pt;}
.fs4_c00345{font-size:64.000000pt;}
.fs3_c00345{font-size:74.666667pt;}
.fs2_c00345{font-size:96.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y1_c00345{bottom:36.666667pt;}
.y11_c00345{bottom:254.498400pt;}
.y10_c00345{bottom:281.170400pt;}
.yf_c00345{bottom:307.842400pt;}
.ye_c00345{bottom:334.514400pt;}
.yd_c00345{bottom:361.186400pt;}
.yc_c00345{bottom:414.519733pt;}
.yb_c00345{bottom:494.509067pt;}
.ya_c00345{bottom:521.181067pt;}
.y9_c00345{bottom:547.853067pt;}
.y8_c00345{bottom:601.186400pt;}
.y17_c00345{bottom:627.853067pt;}
.y16_c00345{bottom:654.519733pt;}
.y7_c00345{bottom:681.170400pt;}
.y15_c00345{bottom:681.186400pt;}
.y6_c00345{bottom:707.842400pt;}
.y14_c00345{bottom:707.853067pt;}
.y5_c00345{bottom:734.514400pt;}
.y13_c00345{bottom:734.519733pt;}
.y4_c00345{bottom:761.186400pt;}
.y12_c00345{bottom:761.223200pt;}
.y3_c00345{bottom:814.519733pt;}
.y2_c00345{bottom:894.519733pt;}
.h6_c00345{height:44.704000pt;}
.h2_c00345{height:48.000000pt;}
.h5_c00345{height:57.600000pt;}
.h4_c00345{height:69.813333pt;}
.h3_c00345{height:89.760000pt;}
.h0_c00345{height:1122.520000pt;}
.h1_c00345{height:1122.666667pt;}
.w0_c00345{width:793.701333pt;}
.w1_c00345{width:794.000000pt;}
.x0_c00345{left:0.000000pt;}
.x2_c00345{left:73.333333pt;}
.x3_c00345{left:80.000000pt;}
.x4_c00345{left:94.666667pt;}
.x5_c00345{left:600.543200pt;}
.x1_c00345{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.199000;font-style: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);}
.m1_c00346{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls1_c00346{letter-spacing:0.000000px;}
.ls0_c00346{letter-spacing:0.720000px;}
.ls2_c00346{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00346{word-spacing:-0.840000px;}
.wsc_c00346{word-spacing:-0.792000px;}
.ws1_c00346{word-spacing:0.000000px;}
.wsf_c00346{word-spacing:0.144000px;}
.ws10_c00346{word-spacing:0.216000px;}
.ws11_c00346{word-spacing:1.944000px;}
.ws9_c00346{word-spacing:2.088000px;}
.ws15_c00346{word-spacing:2.448000px;}
.ws3_c00346{word-spacing:3.168000px;}
.wsb_c00346{word-spacing:4.104000px;}
.ws5_c00346{word-spacing:4.608000px;}
.wse_c00346{word-spacing:6.048000px;}
.ws12_c00346{word-spacing:7.056000px;}
.wsa_c00346{word-spacing:7.272000px;}
.wsd_c00346{word-spacing:7.344000px;}
.ws8_c00346{word-spacing:9.072000px;}
.ws13_c00346{word-spacing:9.576000px;}
.ws14_c00346{word-spacing:10.368000px;}
.ws7_c00346{word-spacing:11.160000px;}
.ws4_c00346{word-spacing:22.032000px;}
.ws6_c00346{word-spacing:22.824000px;}
._0_c00346{margin-left:-480.336600px;}
._3_c00346{margin-left:-6.487200px;}
._1_c00346{margin-left:-4.200000px;}
._2_c00346{margin-left:-1.440000px;}
.fc2_c00346{color:rgb(32,32,32);}
.fc1_c00346{color:rgb(232,86,17);}
.fc0_c00346{color:rgb(60,60,59);}
.fs1_c00346{font-size:42.000000px;}
.fs0_c00346{font-size:60.000000px;}
.fs3_c00346{font-size:72.000000px;}
.fs2_c00346{font-size:84.000000px;}
.y0_c00346{bottom:0.000000px;}
.y1_c00346{bottom:41.250000px;}
.y17_c00346{bottom:256.280700px;}
.y16_c00346{bottom:286.286700px;}
.y15_c00346{bottom:316.292700px;}
.y14_c00346{bottom:346.298700px;}
.y13_c00346{bottom:376.304700px;}
.y12_c00346{bottom:406.310700px;}
.y11_c00346{bottom:436.316700px;}
.y10_c00346{bottom:466.322700px;}
.yf_c00346{bottom:496.328700px;}
.ye_c00346{bottom:526.334700px;}
.yd_c00346{bottom:586.334700px;}
.yc_c00346{bottom:676.280700px;}
.yb_c00346{bottom:706.286700px;}
.ya_c00346{bottom:736.292700px;}
.y9_c00346{bottom:766.298700px;}
.y8_c00346{bottom:796.304700px;}
.y7_c00346{bottom:826.310700px;}
.y6_c00346{bottom:856.316700px;}
.y5_c00346{bottom:886.322700px;}
.y4_c00346{bottom:916.328700px;}
.y3_c00346{bottom:946.334700px;}
.y2_c00346{bottom:1006.334700px;}
.h2_c00346{height:54.000000px;}
.h4_c00346{height:64.800000px;}
.h3_c00346{height:78.540000px;}
.h0_c00346{height:1262.835000px;}
.h1_c00346{height:1263.000000px;}
.w0_c00346{width:892.914000px;}
.w1_c00346{width:893.250000px;}
.x0_c00346{left:0.000000px;}
.x2_c00346{left:90.000000px;}
.x3_c00346{left:106.500000px;}
.x1_c00346{left:787.763700px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls1_c00346{letter-spacing:0.000000pt;}
.ls0_c00346{letter-spacing:0.640000pt;}
.ls2_c00346{letter-spacing:0.746667pt;}
.ws0_c00346{word-spacing:-9.066667pt;}
.ws2_c00346{word-spacing:-0.746667pt;}
.wsc_c00346{word-spacing:-0.704000pt;}
.ws1_c00346{word-spacing:0.000000pt;}
.wsf_c00346{word-spacing:0.128000pt;}
.ws10_c00346{word-spacing:0.192000pt;}
.ws11_c00346{word-spacing:1.728000pt;}
.ws9_c00346{word-spacing:1.856000pt;}
.ws15_c00346{word-spacing:2.176000pt;}
.ws3_c00346{word-spacing:2.816000pt;}
.wsb_c00346{word-spacing:3.648000pt;}
.ws5_c00346{word-spacing:4.096000pt;}
.wse_c00346{word-spacing:5.376000pt;}
.ws12_c00346{word-spacing:6.272000pt;}
.wsa_c00346{word-spacing:6.464000pt;}
.wsd_c00346{word-spacing:6.528000pt;}
.ws8_c00346{word-spacing:8.064000pt;}
.ws13_c00346{word-spacing:8.512000pt;}
.ws14_c00346{word-spacing:9.216000pt;}
.ws7_c00346{word-spacing:9.920000pt;}
.ws4_c00346{word-spacing:19.584000pt;}
.ws6_c00346{word-spacing:20.288000pt;}
._0_c00346{margin-left:-426.965867pt;}
._3_c00346{margin-left:-5.766400pt;}
._1_c00346{margin-left:-3.733333pt;}
._2_c00346{margin-left:-1.280000pt;}
.fs1_c00346{font-size:37.333333pt;}
.fs0_c00346{font-size:53.333333pt;}
.fs3_c00346{font-size:64.000000pt;}
.fs2_c00346{font-size:74.666667pt;}
.y0_c00346{bottom:0.000000pt;}
.y1_c00346{bottom:36.666667pt;}
.y17_c00346{bottom:227.805067pt;}
.y16_c00346{bottom:254.477067pt;}
.y15_c00346{bottom:281.149067pt;}
.y14_c00346{bottom:307.821067pt;}
.y13_c00346{bottom:334.493067pt;}
.y12_c00346{bottom:361.165067pt;}
.y11_c00346{bottom:387.837067pt;}
.y10_c00346{bottom:414.509067pt;}
.yf_c00346{bottom:441.181067pt;}
.ye_c00346{bottom:467.853067pt;}
.yd_c00346{bottom:521.186400pt;}
.yc_c00346{bottom:601.138400pt;}
.yb_c00346{bottom:627.810400pt;}
.ya_c00346{bottom:654.482400pt;}
.y9_c00346{bottom:681.154400pt;}
.y8_c00346{bottom:707.826400pt;}
.y7_c00346{bottom:734.498400pt;}
.y6_c00346{bottom:761.170400pt;}
.y5_c00346{bottom:787.842400pt;}
.y4_c00346{bottom:814.514400pt;}
.y3_c00346{bottom:841.186400pt;}
.y2_c00346{bottom:894.519733pt;}
.h2_c00346{height:48.000000pt;}
.h4_c00346{height:57.600000pt;}
.h3_c00346{height:69.813333pt;}
.h0_c00346{height:1122.520000pt;}
.h1_c00346{height:1122.666667pt;}
.w0_c00346{width:793.701333pt;}
.w1_c00346{width:794.000000pt;}
.x0_c00346{left:0.000000pt;}
.x2_c00346{left:80.000000pt;}
.x3_c00346{left:94.666667pt;}
.x1_c00346{left:700.234400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:1.161000;font-style: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);}
.m1_c00347{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls5_c00347{letter-spacing:-0.324000px;}
.ls4_c00347{letter-spacing:0.000000px;}
.ls0_c00347{letter-spacing:0.720000px;}
.ls1_c00347{letter-spacing:0.840000px;}
.ls3_c00347{letter-spacing:1.500000px;}
.ls2_c00347{letter-spacing:1.650000px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00347{word-spacing:-21.276000px;}
.ws2_c00347{word-spacing:-17.640000px;}
.ws3_c00347{word-spacing:-14.850000px;}
.ws4_c00347{word-spacing:-11.700000px;}
.ws0_c00347{word-spacing:-10.200000px;}
.wsd_c00347{word-spacing:-2.016000px;}
.wsa_c00347{word-spacing:-1.656000px;}
.wse_c00347{word-spacing:-0.936000px;}
.ws6_c00347{word-spacing:-0.840000px;}
.ws5_c00347{word-spacing:0.000000px;}
.ws8_c00347{word-spacing:0.648000px;}
.ws7_c00347{word-spacing:1.728000px;}
.ws9_c00347{word-spacing:4.248000px;}
.wsc_c00347{word-spacing:6.696000px;}
.wsb_c00347{word-spacing:22.752000px;}
._0_c00347{margin-left:-480.337200px;}
._1_c00347{margin-left:-4.200000px;}
._3_c00347{margin-left:-2.232000px;}
._2_c00347{margin-left:-1.134000px;}
.fc3_c00347{color:rgb(32,32,32);}
.fc2_c00347{color:rgb(233,83,14);}
.fc1_c00347{color:rgb(232,86,17);}
.fc4_c00347{color:rgb(157,157,156);}
.fc0_c00347{color:rgb(60,60,59);}
.fs1_c00347{font-size:42.000000px;}
.fs0_c00347{font-size:60.000000px;}
.fs5_c00347{font-size:66.000000px;}
.fs4_c00347{font-size:72.000000px;}
.fs3_c00347{font-size:84.000000px;}
.fs2_c00347{font-size:108.000000px;}
.y0_c00347{bottom:0.000000px;}
.y1_c00347{bottom:41.250000px;}
.y10_c00347{bottom:316.310700px;}
.yf_c00347{bottom:346.316700px;}
.ye_c00347{bottom:376.322700px;}
.yd_c00347{bottom:406.328700px;}
.yc_c00347{bottom:436.334700px;}
.yb_c00347{bottom:496.334700px;}
.ya_c00347{bottom:586.328700px;}
.y9_c00347{bottom:616.334700px;}
.y8_c00347{bottom:676.334700px;}
.y15_c00347{bottom:736.334700px;}
.y7_c00347{bottom:766.316700px;}
.y14_c00347{bottom:766.334700px;}
.y6_c00347{bottom:796.322700px;}
.y13_c00347{bottom:796.334700px;}
.y5_c00347{bottom:826.328700px;}
.y12_c00347{bottom:826.334700px;}
.y4_c00347{bottom:856.334700px;}
.y11_c00347{bottom:856.376100px;}
.y3_c00347{bottom:916.334700px;}
.y2_c00347{bottom:1006.334700px;}
.h6_c00347{height:50.292000px;}
.h2_c00347{height:54.000000px;}
.h5_c00347{height:64.800000px;}
.h4_c00347{height:78.540000px;}
.h3_c00347{height:100.980000px;}
.h0_c00347{height:1262.835000px;}
.h1_c00347{height:1263.000000px;}
.w0_c00347{width:892.914000px;}
.w1_c00347{width:893.250000px;}
.x0_c00347{left:0.000000px;}
.x2_c00347{left:82.500000px;}
.x3_c00347{left:90.000000px;}
.x4_c00347{left:106.500000px;}
.x5_c00347{left:675.611100px;}
.x1_c00347{left:785.738850px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls5_c00347{letter-spacing:-0.288000pt;}
.ls4_c00347{letter-spacing:0.000000pt;}
.ls0_c00347{letter-spacing:0.640000pt;}
.ls1_c00347{letter-spacing:0.746667pt;}
.ls3_c00347{letter-spacing:1.333333pt;}
.ls2_c00347{letter-spacing:1.466667pt;}
.ws1_c00347{word-spacing:-18.912000pt;}
.ws2_c00347{word-spacing:-15.680000pt;}
.ws3_c00347{word-spacing:-13.200000pt;}
.ws4_c00347{word-spacing:-10.400000pt;}
.ws0_c00347{word-spacing:-9.066667pt;}
.wsd_c00347{word-spacing:-1.792000pt;}
.wsa_c00347{word-spacing:-1.472000pt;}
.wse_c00347{word-spacing:-0.832000pt;}
.ws6_c00347{word-spacing:-0.746667pt;}
.ws5_c00347{word-spacing:0.000000pt;}
.ws8_c00347{word-spacing:0.576000pt;}
.ws7_c00347{word-spacing:1.536000pt;}
.ws9_c00347{word-spacing:3.776000pt;}
.wsc_c00347{word-spacing:5.952000pt;}
.wsb_c00347{word-spacing:20.224000pt;}
._0_c00347{margin-left:-426.966400pt;}
._1_c00347{margin-left:-3.733333pt;}
._3_c00347{margin-left:-1.984000pt;}
._2_c00347{margin-left:-1.008000pt;}
.fs1_c00347{font-size:37.333333pt;}
.fs0_c00347{font-size:53.333333pt;}
.fs5_c00347{font-size:58.666667pt;}
.fs4_c00347{font-size:64.000000pt;}
.fs3_c00347{font-size:74.666667pt;}
.fs2_c00347{font-size:96.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.y1_c00347{bottom:36.666667pt;}
.y10_c00347{bottom:281.165067pt;}
.yf_c00347{bottom:307.837067pt;}
.ye_c00347{bottom:334.509067pt;}
.yd_c00347{bottom:361.181067pt;}
.yc_c00347{bottom:387.853067pt;}
.yb_c00347{bottom:441.186400pt;}
.ya_c00347{bottom:521.181067pt;}
.y9_c00347{bottom:547.853067pt;}
.y8_c00347{bottom:601.186400pt;}
.y15_c00347{bottom:654.519733pt;}
.y7_c00347{bottom:681.170400pt;}
.y14_c00347{bottom:681.186400pt;}
.y6_c00347{bottom:707.842400pt;}
.y13_c00347{bottom:707.853067pt;}
.y5_c00347{bottom:734.514400pt;}
.y12_c00347{bottom:734.519733pt;}
.y4_c00347{bottom:761.186400pt;}
.y11_c00347{bottom:761.223200pt;}
.y3_c00347{bottom:814.519733pt;}
.y2_c00347{bottom:894.519733pt;}
.h6_c00347{height:44.704000pt;}
.h2_c00347{height:48.000000pt;}
.h5_c00347{height:57.600000pt;}
.h4_c00347{height:69.813333pt;}
.h3_c00347{height:89.760000pt;}
.h0_c00347{height:1122.520000pt;}
.h1_c00347{height:1122.666667pt;}
.w0_c00347{width:793.701333pt;}
.w1_c00347{width:794.000000pt;}
.x0_c00347{left:0.000000pt;}
.x2_c00347{left:73.333333pt;}
.x3_c00347{left:80.000000pt;}
.x4_c00347{left:94.666667pt;}
.x5_c00347{left:600.543200pt;}
.x1_c00347{left:698.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.199000;font-style: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);}
.m1_c00348{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls1_c00348{letter-spacing:0.000000px;}
.ls0_c00348{letter-spacing:0.720000px;}
.ls2_c00348{letter-spacing:0.840000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00348{word-spacing:-12.960000px;}
.ws0_c00348{word-spacing:-10.200000px;}
.ws4_c00348{word-spacing:-4.392000px;}
.ws9_c00348{word-spacing:-1.656000px;}
.ws5_c00348{word-spacing:-1.512000px;}
.ws3_c00348{word-spacing:-0.840000px;}
.ws10_c00348{word-spacing:-0.432000px;}
.ws2_c00348{word-spacing:0.000000px;}
.wsf_c00348{word-spacing:0.576000px;}
.wsa_c00348{word-spacing:0.648000px;}
.ws11_c00348{word-spacing:1.080000px;}
.ws6_c00348{word-spacing:1.368000px;}
.wsb_c00348{word-spacing:2.016000px;}
.wsd_c00348{word-spacing:4.032000px;}
.wse_c00348{word-spacing:5.112000px;}
.ws8_c00348{word-spacing:6.696000px;}
.wsc_c00348{word-spacing:8.136000px;}
.ws12_c00348{word-spacing:8.352000px;}
.ws7_c00348{word-spacing:10.008000px;}
._0_c00348{margin-left:-480.337200px;}
._1_c00348{margin-left:-4.200000px;}
._3_c00348{margin-left:-3.028800px;}
._2_c00348{margin-left:-1.432800px;}
.fc2_c00348{color:rgb(32,32,32);}
.fc1_c00348{color:rgb(232,86,17);}
.fc0_c00348{color:rgb(60,60,59);}
.fs1_c00348{font-size:42.000000px;}
.fs0_c00348{font-size:60.000000px;}
.fs3_c00348{font-size:72.000000px;}
.fs2_c00348{font-size:84.000000px;}
.y0_c00348{bottom:0.000000px;}
.y1_c00348{bottom:41.250000px;}
.y14_c00348{bottom:346.286700px;}
.y13_c00348{bottom:376.292700px;}
.y12_c00348{bottom:406.298700px;}
.y11_c00348{bottom:436.304700px;}
.y10_c00348{bottom:466.310700px;}
.yf_c00348{bottom:496.316700px;}
.ye_c00348{bottom:526.322700px;}
.yd_c00348{bottom:556.328700px;}
.yc_c00348{bottom:586.334700px;}
.yb_c00348{bottom:646.334700px;}
.ya_c00348{bottom:736.292700px;}
.y9_c00348{bottom:766.298700px;}
.y8_c00348{bottom:796.304700px;}
.y7_c00348{bottom:826.310700px;}
.y6_c00348{bottom:856.316700px;}
.y5_c00348{bottom:886.322700px;}
.y4_c00348{bottom:916.328700px;}
.y3_c00348{bottom:946.334700px;}
.y2_c00348{bottom:1006.334700px;}
.h2_c00348{height:54.000000px;}
.h4_c00348{height:64.800000px;}
.h3_c00348{height:78.540000px;}
.h0_c00348{height:1262.835000px;}
.h1_c00348{height:1263.000000px;}
.w0_c00348{width:892.914000px;}
.w1_c00348{width:893.250000px;}
.x0_c00348{left:0.000000px;}
.x2_c00348{left:90.000000px;}
.x3_c00348{left:106.500000px;}
.x1_c00348{left:785.663850px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls1_c00348{letter-spacing:0.000000pt;}
.ls0_c00348{letter-spacing:0.640000pt;}
.ls2_c00348{letter-spacing:0.746667pt;}
.ws1_c00348{word-spacing:-11.520000pt;}
.ws0_c00348{word-spacing:-9.066667pt;}
.ws4_c00348{word-spacing:-3.904000pt;}
.ws9_c00348{word-spacing:-1.472000pt;}
.ws5_c00348{word-spacing:-1.344000pt;}
.ws3_c00348{word-spacing:-0.746667pt;}
.ws10_c00348{word-spacing:-0.384000pt;}
.ws2_c00348{word-spacing:0.000000pt;}
.wsf_c00348{word-spacing:0.512000pt;}
.wsa_c00348{word-spacing:0.576000pt;}
.ws11_c00348{word-spacing:0.960000pt;}
.ws6_c00348{word-spacing:1.216000pt;}
.wsb_c00348{word-spacing:1.792000pt;}
.wsd_c00348{word-spacing:3.584000pt;}
.wse_c00348{word-spacing:4.544000pt;}
.ws8_c00348{word-spacing:5.952000pt;}
.wsc_c00348{word-spacing:7.232000pt;}
.ws12_c00348{word-spacing:7.424000pt;}
.ws7_c00348{word-spacing:8.896000pt;}
._0_c00348{margin-left:-426.966400pt;}
._1_c00348{margin-left:-3.733333pt;}
._3_c00348{margin-left:-2.692267pt;}
._2_c00348{margin-left:-1.273600pt;}
.fs1_c00348{font-size:37.333333pt;}
.fs0_c00348{font-size:53.333333pt;}
.fs3_c00348{font-size:64.000000pt;}
.fs2_c00348{font-size:74.666667pt;}
.y0_c00348{bottom:0.000000pt;}
.y1_c00348{bottom:36.666667pt;}
.y14_c00348{bottom:307.810400pt;}
.y13_c00348{bottom:334.482400pt;}
.y12_c00348{bottom:361.154400pt;}
.y11_c00348{bottom:387.826400pt;}
.y10_c00348{bottom:414.498400pt;}
.yf_c00348{bottom:441.170400pt;}
.ye_c00348{bottom:467.842400pt;}
.yd_c00348{bottom:494.514400pt;}
.yc_c00348{bottom:521.186400pt;}
.yb_c00348{bottom:574.519733pt;}
.ya_c00348{bottom:654.482400pt;}
.y9_c00348{bottom:681.154400pt;}
.y8_c00348{bottom:707.826400pt;}
.y7_c00348{bottom:734.498400pt;}
.y6_c00348{bottom:761.170400pt;}
.y5_c00348{bottom:787.842400pt;}
.y4_c00348{bottom:814.514400pt;}
.y3_c00348{bottom:841.186400pt;}
.y2_c00348{bottom:894.519733pt;}
.h2_c00348{height:48.000000pt;}
.h4_c00348{height:57.600000pt;}
.h3_c00348{height:69.813333pt;}
.h0_c00348{height:1122.520000pt;}
.h1_c00348{height:1122.666667pt;}
.w0_c00348{width:793.701333pt;}
.w1_c00348{width:794.000000pt;}
.x0_c00348{left:0.000000pt;}
.x2_c00348{left:80.000000pt;}
.x3_c00348{left:94.666667pt;}
.x1_c00348{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00349;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00349;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00349{font-family:ff5_c00349;line-height:1.155000;font-style: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);}
.m1_c00349{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls2_c00349{letter-spacing:0.000000px;}
.ls0_c00349{letter-spacing:0.864000px;}
.ls1_c00349{letter-spacing:1.200000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00349{word-spacing:-13.104000px;}
.ws0_c00349{word-spacing:-10.200000px;}
.ws3_c00349{word-spacing:-1.440000px;}
.ws5_c00349{word-spacing:-1.200000px;}
.ws4_c00349{word-spacing:-0.864000px;}
.ws2_c00349{word-spacing:0.000000px;}
._0_c00349{margin-left:-480.336600px;}
._5_c00349{margin-left:-11.400000px;}
._4_c00349{margin-left:-9.000000px;}
._3_c00349{margin-left:-6.480000px;}
._1_c00349{margin-left:-4.200000px;}
._2_c00349{margin-left:-1.440000px;}
.fc3_c00349{color:rgb(255,255,255);}
.fc2_c00349{color:rgb(233,83,14);}
.fc1_c00349{color:rgb(232,86,17);}
.fc0_c00349{color:rgb(60,60,59);}
.fs1_c00349{font-size:42.000000px;}
.fs0_c00349{font-size:60.000000px;}
.fs3_c00349{font-size:72.000000px;}
.fs4_c00349{font-size:120.000000px;}
.fs2_c00349{font-size:360.000000px;}
.y0_c00349{bottom:0.000000px;}
.y1_c00349{bottom:41.250000px;}
.yf_c00349{bottom:394.274700px;}
.ye_c00349{bottom:415.280700px;}
.yd_c00349{bottom:436.286700px;}
.yc_c00349{bottom:484.292700px;}
.yb_c00349{bottom:505.298700px;}
.ya_c00349{bottom:526.304700px;}
.y9_c00349{bottom:574.310700px;}
.y8_c00349{bottom:595.316700px;}
.y7_c00349{bottom:616.322700px;}
.y6_c00349{bottom:664.328700px;}
.y5_c00349{bottom:685.334700px;}
.y4_c00349{bottom:706.340700px;}
.y3_c00349{bottom:752.834700px;}
.y12_c00349{bottom:946.334700px;}
.y11_c00349{bottom:976.334700px;}
.y10_c00349{bottom:1006.334700px;}
.y2_c00349{bottom:1093.526700px;}
.h2_c00349{height:54.000000px;}
.h5_c00349{height:64.800000px;}
.h4_c00349{height:66.456000px;}
.h6_c00349{height:112.200000px;}
.h3_c00349{height:324.000000px;}
.h0_c00349{height:1262.835000px;}
.h1_c00349{height:1263.000000px;}
.w0_c00349{width:892.914000px;}
.w1_c00349{width:893.250000px;}
.x0_c00349{left:0.000000px;}
.x2_c00349{left:81.290250px;}
.x3_c00349{left:82.393650px;}
.x5_c00349{left:112.287450px;}
.x4_c00349{left:127.393650px;}
.x1_c00349{left:786.728700px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls2_c00349{letter-spacing:0.000000pt;}
.ls0_c00349{letter-spacing:0.768000pt;}
.ls1_c00349{letter-spacing:1.066667pt;}
.ws1_c00349{word-spacing:-11.648000pt;}
.ws0_c00349{word-spacing:-9.066667pt;}
.ws3_c00349{word-spacing:-1.280000pt;}
.ws5_c00349{word-spacing:-1.066667pt;}
.ws4_c00349{word-spacing:-0.768000pt;}
.ws2_c00349{word-spacing:0.000000pt;}
._0_c00349{margin-left:-426.965867pt;}
._5_c00349{margin-left:-10.133333pt;}
._4_c00349{margin-left:-8.000000pt;}
._3_c00349{margin-left:-5.760000pt;}
._1_c00349{margin-left:-3.733333pt;}
._2_c00349{margin-left:-1.280000pt;}
.fs1_c00349{font-size:37.333333pt;}
.fs0_c00349{font-size:53.333333pt;}
.fs3_c00349{font-size:64.000000pt;}
.fs4_c00349{font-size:106.666667pt;}
.fs2_c00349{font-size:320.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y1_c00349{bottom:36.666667pt;}
.yf_c00349{bottom:350.466400pt;}
.ye_c00349{bottom:369.138400pt;}
.yd_c00349{bottom:387.810400pt;}
.yc_c00349{bottom:430.482400pt;}
.yb_c00349{bottom:449.154400pt;}
.ya_c00349{bottom:467.826400pt;}
.y9_c00349{bottom:510.498400pt;}
.y8_c00349{bottom:529.170400pt;}
.y7_c00349{bottom:547.842400pt;}
.y6_c00349{bottom:590.514400pt;}
.y5_c00349{bottom:609.186400pt;}
.y4_c00349{bottom:627.858400pt;}
.y3_c00349{bottom:669.186400pt;}
.y12_c00349{bottom:841.186400pt;}
.y11_c00349{bottom:867.853067pt;}
.y10_c00349{bottom:894.519733pt;}
.y2_c00349{bottom:972.023733pt;}
.h2_c00349{height:48.000000pt;}
.h5_c00349{height:57.600000pt;}
.h4_c00349{height:59.072000pt;}
.h6_c00349{height:99.733333pt;}
.h3_c00349{height:288.000000pt;}
.h0_c00349{height:1122.520000pt;}
.h1_c00349{height:1122.666667pt;}
.w0_c00349{width:793.701333pt;}
.w1_c00349{width:794.000000pt;}
.x0_c00349{left:0.000000pt;}
.x2_c00349{left:72.258000pt;}
.x3_c00349{left:73.238800pt;}
.x5_c00349{left:99.811067pt;}
.x4_c00349{left:113.238800pt;}
.x1_c00349{left:699.314400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.160000;font-style:normal;font-weight:normal;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_e12e76fc6151d647455519d2.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00350;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.161000;font-style: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);}
.m1_c00350{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.v1_c00350{vertical-align:18.000000px;}
.v3_c00350{vertical-align:36.000000px;}
.v2_c00350{vertical-align:55.200000px;}
.ls4_c00350{letter-spacing:-0.540000px;}
.ls3_c00350{letter-spacing:0.000000px;}
.ls0_c00350{letter-spacing:0.720000px;}
.ls2_c00350{letter-spacing:1.500000px;}
.ls1_c00350{letter-spacing:1.650000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00350{word-spacing:-21.060000px;}
.ws0_c00350{word-spacing:-10.200000px;}
.ws13_c00350{word-spacing:-1.728000px;}
.ws23_c00350{word-spacing:-1.500000px;}
.ws1d_c00350{word-spacing:-0.936000px;}
.ws12_c00350{word-spacing:-0.288000px;}
.ws18_c00350{word-spacing:-0.216000px;}
.ws9_c00350{word-spacing:0.000000px;}
.ws22_c00350{word-spacing:0.144000px;}
.ws11_c00350{word-spacing:1.008000px;}
.ws17_c00350{word-spacing:2.016000px;}
.ws1a_c00350{word-spacing:2.088000px;}
.ws19_c00350{word-spacing:3.240000px;}
.wse_c00350{word-spacing:3.312000px;}
.ws1b_c00350{word-spacing:4.104000px;}
.ws1c_c00350{word-spacing:4.752000px;}
.ws1f_c00350{word-spacing:5.616000px;}
.wsf_c00350{word-spacing:5.832000px;}
.ws14_c00350{word-spacing:6.048000px;}
.wsa_c00350{word-spacing:6.408000px;}
.ws1e_c00350{word-spacing:7.128000px;}
.ws10_c00350{word-spacing:10.440000px;}
.wsc_c00350{word-spacing:11.880000px;}
.ws16_c00350{word-spacing:12.096000px;}
.ws20_c00350{word-spacing:15.840000px;}
.wsb_c00350{word-spacing:16.488000px;}
.ws21_c00350{word-spacing:17.064000px;}
.ws15_c00350{word-spacing:17.352000px;}
.wsd_c00350{word-spacing:19.368000px;}
.ws3_c00350{word-spacing:286.272000px;}
.ws2_c00350{word-spacing:317.856000px;}
.ws4_c00350{word-spacing:440.304000px;}
.ws5_c00350{word-spacing:463.248000px;}
.ws7_c00350{word-spacing:474.000000px;}
.ws6_c00350{word-spacing:492.816000px;}
.ws8_c00350{word-spacing:494.832000px;}
._0_c00350{margin-left:-480.337200px;}
._3_c00350{margin-left:-6.508800px;}
._1_c00350{margin-left:-4.200000px;}
._2_c00350{margin-left:-2.152800px;}
._4_c00350{margin-left:-1.044000px;}
._5_c00350{width:361.152000px;}
._6_c00350{width:469.200000px;}
._8_c00350{width:520.320000px;}
._c_c00350{width:522.336000px;}
._a_c00350{width:534.336000px;}
._7_c00350{width:539.088000px;}
._b_c00350{width:568.800000px;}
._9_c00350{width:591.552000px;}
._d_c00350{width:599.712000px;}
.fc6_c00350{color:transparent;}
.fc4_c00350{color:rgb(0,0,0);}
.fc3_c00350{color:rgb(32,32,32);}
.fc2_c00350{color:rgb(233,83,14);}
.fc1_c00350{color:rgb(232,86,17);}
.fc5_c00350{color:rgb(157,157,156);}
.fc0_c00350{color:rgb(60,60,59);}
.fs1_c00350{font-size:42.000000px;}
.fs4_c00350{font-size:48.000000px;}
.fs0_c00350{font-size:60.000000px;}
.fs5_c00350{font-size:66.000000px;}
.fs3_c00350{font-size:72.000000px;}
.fs2_c00350{font-size:108.000000px;}
.y0_c00350{bottom:0.000000px;}
.y1_c00350{bottom:41.250000px;}
.y1c_c00350{bottom:196.184700px;}
.y1b_c00350{bottom:226.190700px;}
.y1a_c00350{bottom:256.196700px;}
.y19_c00350{bottom:286.202700px;}
.y29_c00350{bottom:305.952750px;}
.y18_c00350{bottom:316.208700px;}
.y17_c00350{bottom:346.214700px;}
.y16_c00350{bottom:376.220700px;}
.y15_c00350{bottom:406.226700px;}
.y14_c00350{bottom:436.232700px;}
.y28_c00350{bottom:442.152750px;}
.y13_c00350{bottom:466.238700px;}
.y27_c00350{bottom:472.152750px;}
.y24_c00350{bottom:477.702750px;}
.y12_c00350{bottom:496.244700px;}
.y26_c00350{bottom:499.152750px;}
.y25_c00350{bottom:512.952750px;}
.y11_c00350{bottom:526.250700px;}
.y23_c00350{bottom:551.949900px;}
.y10_c00350{bottom:556.256700px;}
.yf_c00350{bottom:586.262700px;}
.ye_c00350{bottom:616.268700px;}
.yd_c00350{bottom:646.274700px;}
.y22_c00350{bottom:661.689900px;}
.y1f_c00350{bottom:667.239900px;}
.yc_c00350{bottom:676.280700px;}
.y21_c00350{bottom:688.689900px;}
.y20_c00350{bottom:702.489900px;}
.yb_c00350{bottom:706.286700px;}
.y1e_c00350{bottom:732.489900px;}
.ya_c00350{bottom:736.292700px;}
.y1d_c00350{bottom:741.789900px;}
.y9_c00350{bottom:766.298700px;}
.y8_c00350{bottom:796.304700px;}
.y7_c00350{bottom:826.310700px;}
.y6_c00350{bottom:856.316700px;}
.y5_c00350{bottom:886.322700px;}
.y2c_c00350{bottom:886.334700px;}
.y4_c00350{bottom:916.328700px;}
.y2b_c00350{bottom:916.334700px;}
.y3_c00350{bottom:946.334700px;}
.y2a_c00350{bottom:946.663950px;}
.y2_c00350{bottom:1006.334700px;}
.h8_c00350{height:43.200000px;}
.ha_c00350{height:50.292000px;}
.h2_c00350{height:54.000000px;}
.h7_c00350{height:56.100000px;}
.h5_c00350{height:61.200000px;}
.h4_c00350{height:64.800000px;}
.h9_c00350{height:79.200000px;}
.h6_c00350{height:98.400000px;}
.h3_c00350{height:100.980000px;}
.h0_c00350{height:1262.835000px;}
.h1_c00350{height:1263.000000px;}
.w0_c00350{width:892.914000px;}
.w1_c00350{width:893.250000px;}
.x0_c00350{left:0.000000px;}
.x2_c00350{left:82.500000px;}
.x3_c00350{left:106.500000px;}
.xb_c00350{left:675.611100px;}
.x1_c00350{left:790.388850px;}
.xa_c00350{left:902.456550px;}
.x7_c00350{left:914.081550px;}
.x8_c00350{left:994.913250px;}
.x4_c00350{left:1125.139200px;}
.x9_c00350{left:1151.333250px;}
.x5_c00350{left:1269.547200px;}
.x6_c00350{left:1414.351200px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.v1_c00350{vertical-align:16.000000pt;}
.v3_c00350{vertical-align:32.000000pt;}
.v2_c00350{vertical-align:49.066667pt;}
.ls4_c00350{letter-spacing:-0.480000pt;}
.ls3_c00350{letter-spacing:0.000000pt;}
.ls0_c00350{letter-spacing:0.640000pt;}
.ls2_c00350{letter-spacing:1.333333pt;}
.ls1_c00350{letter-spacing:1.466667pt;}
.ws1_c00350{word-spacing:-18.720000pt;}
.ws0_c00350{word-spacing:-9.066667pt;}
.ws13_c00350{word-spacing:-1.536000pt;}
.ws23_c00350{word-spacing:-1.333333pt;}
.ws1d_c00350{word-spacing:-0.832000pt;}
.ws12_c00350{word-spacing:-0.256000pt;}
.ws18_c00350{word-spacing:-0.192000pt;}
.ws9_c00350{word-spacing:0.000000pt;}
.ws22_c00350{word-spacing:0.128000pt;}
.ws11_c00350{word-spacing:0.896000pt;}
.ws17_c00350{word-spacing:1.792000pt;}
.ws1a_c00350{word-spacing:1.856000pt;}
.ws19_c00350{word-spacing:2.880000pt;}
.wse_c00350{word-spacing:2.944000pt;}
.ws1b_c00350{word-spacing:3.648000pt;}
.ws1c_c00350{word-spacing:4.224000pt;}
.ws1f_c00350{word-spacing:4.992000pt;}
.wsf_c00350{word-spacing:5.184000pt;}
.ws14_c00350{word-spacing:5.376000pt;}
.wsa_c00350{word-spacing:5.696000pt;}
.ws1e_c00350{word-spacing:6.336000pt;}
.ws10_c00350{word-spacing:9.280000pt;}
.wsc_c00350{word-spacing:10.560000pt;}
.ws16_c00350{word-spacing:10.752000pt;}
.ws20_c00350{word-spacing:14.080000pt;}
.wsb_c00350{word-spacing:14.656000pt;}
.ws21_c00350{word-spacing:15.168000pt;}
.ws15_c00350{word-spacing:15.424000pt;}
.wsd_c00350{word-spacing:17.216000pt;}
.ws3_c00350{word-spacing:254.464000pt;}
.ws2_c00350{word-spacing:282.538667pt;}
.ws4_c00350{word-spacing:391.381333pt;}
.ws5_c00350{word-spacing:411.776000pt;}
.ws7_c00350{word-spacing:421.333333pt;}
.ws6_c00350{word-spacing:438.058667pt;}
.ws8_c00350{word-spacing:439.850667pt;}
._0_c00350{margin-left:-426.966400pt;}
._3_c00350{margin-left:-5.785600pt;}
._1_c00350{margin-left:-3.733333pt;}
._2_c00350{margin-left:-1.913600pt;}
._4_c00350{margin-left:-0.928000pt;}
._5_c00350{width:321.024000pt;}
._6_c00350{width:417.066667pt;}
._8_c00350{width:462.506667pt;}
._c_c00350{width:464.298667pt;}
._a_c00350{width:474.965333pt;}
._7_c00350{width:479.189333pt;}
._b_c00350{width:505.600000pt;}
._9_c00350{width:525.824000pt;}
._d_c00350{width:533.077333pt;}
.fs1_c00350{font-size:37.333333pt;}
.fs4_c00350{font-size:42.666667pt;}
.fs0_c00350{font-size:53.333333pt;}
.fs5_c00350{font-size:58.666667pt;}
.fs3_c00350{font-size:64.000000pt;}
.fs2_c00350{font-size:96.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y1_c00350{bottom:36.666667pt;}
.y1c_c00350{bottom:174.386400pt;}
.y1b_c00350{bottom:201.058400pt;}
.y1a_c00350{bottom:227.730400pt;}
.y19_c00350{bottom:254.402400pt;}
.y29_c00350{bottom:271.958000pt;}
.y18_c00350{bottom:281.074400pt;}
.y17_c00350{bottom:307.746400pt;}
.y16_c00350{bottom:334.418400pt;}
.y15_c00350{bottom:361.090400pt;}
.y14_c00350{bottom:387.762400pt;}
.y28_c00350{bottom:393.024667pt;}
.y13_c00350{bottom:414.434400pt;}
.y27_c00350{bottom:419.691333pt;}
.y24_c00350{bottom:424.624667pt;}
.y12_c00350{bottom:441.106400pt;}
.y26_c00350{bottom:443.691333pt;}
.y25_c00350{bottom:455.958000pt;}
.y11_c00350{bottom:467.778400pt;}
.y23_c00350{bottom:490.622133pt;}
.y10_c00350{bottom:494.450400pt;}
.yf_c00350{bottom:521.122400pt;}
.ye_c00350{bottom:547.794400pt;}
.yd_c00350{bottom:574.466400pt;}
.y22_c00350{bottom:588.168800pt;}
.y1f_c00350{bottom:593.102133pt;}
.yc_c00350{bottom:601.138400pt;}
.y21_c00350{bottom:612.168800pt;}
.y20_c00350{bottom:624.435467pt;}
.yb_c00350{bottom:627.810400pt;}
.y1e_c00350{bottom:651.102133pt;}
.ya_c00350{bottom:654.482400pt;}
.y1d_c00350{bottom:659.368800pt;}
.y9_c00350{bottom:681.154400pt;}
.y8_c00350{bottom:707.826400pt;}
.y7_c00350{bottom:734.498400pt;}
.y6_c00350{bottom:761.170400pt;}
.y5_c00350{bottom:787.842400pt;}
.y2c_c00350{bottom:787.853067pt;}
.y4_c00350{bottom:814.514400pt;}
.y2b_c00350{bottom:814.519733pt;}
.y3_c00350{bottom:841.186400pt;}
.y2a_c00350{bottom:841.479067pt;}
.y2_c00350{bottom:894.519733pt;}
.h8_c00350{height:38.400000pt;}
.ha_c00350{height:44.704000pt;}
.h2_c00350{height:48.000000pt;}
.h7_c00350{height:49.866667pt;}
.h5_c00350{height:54.400000pt;}
.h4_c00350{height:57.600000pt;}
.h9_c00350{height:70.400000pt;}
.h6_c00350{height:87.466667pt;}
.h3_c00350{height:89.760000pt;}
.h0_c00350{height:1122.520000pt;}
.h1_c00350{height:1122.666667pt;}
.w0_c00350{width:793.701333pt;}
.w1_c00350{width:794.000000pt;}
.x0_c00350{left:0.000000pt;}
.x2_c00350{left:73.333333pt;}
.x3_c00350{left:94.666667pt;}
.xb_c00350{left:600.543200pt;}
.x1_c00350{left:702.567867pt;}
.xa_c00350{left:802.183600pt;}
.x7_c00350{left:812.516933pt;}
.x8_c00350{left:884.367333pt;}
.x4_c00350{left:1000.123733pt;}
.x9_c00350{left:1023.407333pt;}
.x5_c00350{left:1128.486400pt;}
.x6_c00350{left:1257.201067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d2b3a49cabb83f4fe7c44d3.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00351;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.161000;font-style: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);}
.m1_c00351{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls4_c00351{letter-spacing:-0.324000px;}
.ls3_c00351{letter-spacing:0.000000px;}
.ls0_c00351{letter-spacing:0.720000px;}
.ls2_c00351{letter-spacing:1.500000px;}
.ls1_c00351{letter-spacing:1.650000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00351{word-spacing:-21.276000px;}
.ws2_c00351{word-spacing:-14.850000px;}
.ws0_c00351{word-spacing:-10.200000px;}
.ws1d_c00351{word-spacing:-1.500000px;}
.ws10_c00351{word-spacing:-0.936000px;}
.ws14_c00351{word-spacing:-0.864000px;}
.ws6_c00351{word-spacing:-0.144000px;}
.ws3_c00351{word-spacing:0.000000px;}
.ws8_c00351{word-spacing:1.584000px;}
.ws1c_c00351{word-spacing:3.672000px;}
.ws1b_c00351{word-spacing:4.248000px;}
.ws13_c00351{word-spacing:4.464000px;}
.ws17_c00351{word-spacing:5.112000px;}
.wse_c00351{word-spacing:5.904000px;}
.ws19_c00351{word-spacing:6.120000px;}
.wsc_c00351{word-spacing:6.336000px;}
.ws7_c00351{word-spacing:6.840000px;}
.wsf_c00351{word-spacing:7.632000px;}
.wsd_c00351{word-spacing:7.776000px;}
.ws5_c00351{word-spacing:8.568000px;}
.ws18_c00351{word-spacing:8.784000px;}
.wsa_c00351{word-spacing:9.144000px;}
.wsb_c00351{word-spacing:10.368000px;}
.ws15_c00351{word-spacing:10.872000px;}
.ws12_c00351{word-spacing:11.016000px;}
.ws11_c00351{word-spacing:11.232000px;}
.ws1a_c00351{word-spacing:11.664000px;}
.ws4_c00351{word-spacing:12.528000px;}
.ws9_c00351{word-spacing:19.944000px;}
.ws16_c00351{word-spacing:21.024000px;}
._0_c00351{margin-left:-480.336600px;}
._4_c00351{margin-left:-5.760000px;}
._1_c00351{margin-left:-4.200000px;}
._3_c00351{margin-left:-2.160000px;}
._2_c00351{margin-left:-1.134000px;}
.fc3_c00351{color:rgb(32,32,32);}
.fc2_c00351{color:rgb(233,83,14);}
.fc1_c00351{color:rgb(232,86,17);}
.fc4_c00351{color:rgb(157,157,156);}
.fc0_c00351{color:rgb(60,60,59);}
.fs1_c00351{font-size:42.000000px;}
.fs0_c00351{font-size:60.000000px;}
.fs4_c00351{font-size:66.000000px;}
.fs3_c00351{font-size:72.000000px;}
.fs2_c00351{font-size:108.000000px;}
.y0_c00351{bottom:0.000000px;}
.y1_c00351{bottom:41.250000px;}
.y1c_c00351{bottom:196.184700px;}
.y1b_c00351{bottom:226.190700px;}
.y1a_c00351{bottom:256.196700px;}
.y19_c00351{bottom:286.202700px;}
.y18_c00351{bottom:316.208700px;}
.y17_c00351{bottom:346.214700px;}
.y16_c00351{bottom:376.220700px;}
.y15_c00351{bottom:406.226700px;}
.y14_c00351{bottom:436.232700px;}
.y13_c00351{bottom:466.238700px;}
.y12_c00351{bottom:496.244700px;}
.y11_c00351{bottom:526.250700px;}
.y10_c00351{bottom:556.256700px;}
.yf_c00351{bottom:586.262700px;}
.ye_c00351{bottom:616.268700px;}
.yd_c00351{bottom:646.274700px;}
.yc_c00351{bottom:676.280700px;}
.yb_c00351{bottom:706.286700px;}
.ya_c00351{bottom:736.292700px;}
.y9_c00351{bottom:766.298700px;}
.y8_c00351{bottom:796.304700px;}
.y7_c00351{bottom:826.310700px;}
.y6_c00351{bottom:856.316700px;}
.y5_c00351{bottom:886.322700px;}
.y1f_c00351{bottom:886.334700px;}
.y4_c00351{bottom:916.328700px;}
.y1e_c00351{bottom:916.334700px;}
.y3_c00351{bottom:946.334700px;}
.y1d_c00351{bottom:946.376100px;}
.y2_c00351{bottom:1006.334700px;}
.h5_c00351{height:50.292000px;}
.h2_c00351{height:54.000000px;}
.h4_c00351{height:64.800000px;}
.h3_c00351{height:100.980000px;}
.h0_c00351{height:1262.835000px;}
.h1_c00351{height:1263.000000px;}
.w0_c00351{width:892.914000px;}
.w1_c00351{width:893.250000px;}
.x0_c00351{left:0.000000px;}
.x2_c00351{left:82.500000px;}
.x3_c00351{left:106.500000px;}
.x4_c00351{left:675.611100px;}
.x1_c00351{left:787.913700px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls4_c00351{letter-spacing:-0.288000pt;}
.ls3_c00351{letter-spacing:0.000000pt;}
.ls0_c00351{letter-spacing:0.640000pt;}
.ls2_c00351{letter-spacing:1.333333pt;}
.ls1_c00351{letter-spacing:1.466667pt;}
.ws1_c00351{word-spacing:-18.912000pt;}
.ws2_c00351{word-spacing:-13.200000pt;}
.ws0_c00351{word-spacing:-9.066667pt;}
.ws1d_c00351{word-spacing:-1.333333pt;}
.ws10_c00351{word-spacing:-0.832000pt;}
.ws14_c00351{word-spacing:-0.768000pt;}
.ws6_c00351{word-spacing:-0.128000pt;}
.ws3_c00351{word-spacing:0.000000pt;}
.ws8_c00351{word-spacing:1.408000pt;}
.ws1c_c00351{word-spacing:3.264000pt;}
.ws1b_c00351{word-spacing:3.776000pt;}
.ws13_c00351{word-spacing:3.968000pt;}
.ws17_c00351{word-spacing:4.544000pt;}
.wse_c00351{word-spacing:5.248000pt;}
.ws19_c00351{word-spacing:5.440000pt;}
.wsc_c00351{word-spacing:5.632000pt;}
.ws7_c00351{word-spacing:6.080000pt;}
.wsf_c00351{word-spacing:6.784000pt;}
.wsd_c00351{word-spacing:6.912000pt;}
.ws5_c00351{word-spacing:7.616000pt;}
.ws18_c00351{word-spacing:7.808000pt;}
.wsa_c00351{word-spacing:8.128000pt;}
.wsb_c00351{word-spacing:9.216000pt;}
.ws15_c00351{word-spacing:9.664000pt;}
.ws12_c00351{word-spacing:9.792000pt;}
.ws11_c00351{word-spacing:9.984000pt;}
.ws1a_c00351{word-spacing:10.368000pt;}
.ws4_c00351{word-spacing:11.136000pt;}
.ws9_c00351{word-spacing:17.728000pt;}
.ws16_c00351{word-spacing:18.688000pt;}
._0_c00351{margin-left:-426.965867pt;}
._4_c00351{margin-left:-5.120000pt;}
._1_c00351{margin-left:-3.733333pt;}
._3_c00351{margin-left:-1.920000pt;}
._2_c00351{margin-left:-1.008000pt;}
.fs1_c00351{font-size:37.333333pt;}
.fs0_c00351{font-size:53.333333pt;}
.fs4_c00351{font-size:58.666667pt;}
.fs3_c00351{font-size:64.000000pt;}
.fs2_c00351{font-size:96.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y1_c00351{bottom:36.666667pt;}
.y1c_c00351{bottom:174.386400pt;}
.y1b_c00351{bottom:201.058400pt;}
.y1a_c00351{bottom:227.730400pt;}
.y19_c00351{bottom:254.402400pt;}
.y18_c00351{bottom:281.074400pt;}
.y17_c00351{bottom:307.746400pt;}
.y16_c00351{bottom:334.418400pt;}
.y15_c00351{bottom:361.090400pt;}
.y14_c00351{bottom:387.762400pt;}
.y13_c00351{bottom:414.434400pt;}
.y12_c00351{bottom:441.106400pt;}
.y11_c00351{bottom:467.778400pt;}
.y10_c00351{bottom:494.450400pt;}
.yf_c00351{bottom:521.122400pt;}
.ye_c00351{bottom:547.794400pt;}
.yd_c00351{bottom:574.466400pt;}
.yc_c00351{bottom:601.138400pt;}
.yb_c00351{bottom:627.810400pt;}
.ya_c00351{bottom:654.482400pt;}
.y9_c00351{bottom:681.154400pt;}
.y8_c00351{bottom:707.826400pt;}
.y7_c00351{bottom:734.498400pt;}
.y6_c00351{bottom:761.170400pt;}
.y5_c00351{bottom:787.842400pt;}
.y1f_c00351{bottom:787.853067pt;}
.y4_c00351{bottom:814.514400pt;}
.y1e_c00351{bottom:814.519733pt;}
.y3_c00351{bottom:841.186400pt;}
.y1d_c00351{bottom:841.223200pt;}
.y2_c00351{bottom:894.519733pt;}
.h5_c00351{height:44.704000pt;}
.h2_c00351{height:48.000000pt;}
.h4_c00351{height:57.600000pt;}
.h3_c00351{height:89.760000pt;}
.h0_c00351{height:1122.520000pt;}
.h1_c00351{height:1122.666667pt;}
.w0_c00351{width:793.701333pt;}
.w1_c00351{width:794.000000pt;}
.x0_c00351{left:0.000000pt;}
.x2_c00351{left:73.333333pt;}
.x3_c00351{left:94.666667pt;}
.x4_c00351{left:600.543200pt;}
.x1_c00351{left:700.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00352;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:1.155000;font-style: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);}
.m1_c00352{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls2_c00352{letter-spacing:0.000000px;}
.ls0_c00352{letter-spacing:0.864000px;}
.ls1_c00352{letter-spacing:1.200000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00352{word-spacing:-13.104000px;}
.ws0_c00352{word-spacing:-10.200000px;}
.ws3_c00352{word-spacing:-8.280000px;}
.ws5_c00352{word-spacing:-7.128000px;}
.ws4_c00352{word-spacing:-1.440000px;}
.ws2_c00352{word-spacing:0.000000px;}
._0_c00352{margin-left:-480.336600px;}
._9_c00352{margin-left:-9.408000px;}
._3_c00352{margin-left:-6.480000px;}
._1_c00352{margin-left:-4.200000px;}
._6_c00352{margin-left:-2.592000px;}
._2_c00352{margin-left:-1.440000px;}
._7_c00352{width:1.152000px;}
._5_c00352{width:4.608000px;}
._8_c00352{width:7.128000px;}
._4_c00352{width:8.280000px;}
.fc3_c00352{color:rgb(255,255,255);}
.fc2_c00352{color:rgb(233,83,14);}
.fc1_c00352{color:rgb(232,86,17);}
.fc0_c00352{color:rgb(60,60,59);}
.fs1_c00352{font-size:42.000000px;}
.fs0_c00352{font-size:60.000000px;}
.fs3_c00352{font-size:72.000000px;}
.fs4_c00352{font-size:120.000000px;}
.fs2_c00352{font-size:360.000000px;}
.y0_c00352{bottom:0.000000px;}
.y1_c00352{bottom:41.250000px;}
.yf_c00352{bottom:394.274700px;}
.ye_c00352{bottom:415.280700px;}
.yd_c00352{bottom:436.286700px;}
.yc_c00352{bottom:484.292700px;}
.yb_c00352{bottom:505.298700px;}
.ya_c00352{bottom:526.304700px;}
.y9_c00352{bottom:574.310700px;}
.y8_c00352{bottom:595.316700px;}
.y7_c00352{bottom:616.322700px;}
.y6_c00352{bottom:664.328700px;}
.y5_c00352{bottom:685.334700px;}
.y4_c00352{bottom:706.340700px;}
.y3_c00352{bottom:752.834700px;}
.y13_c00352{bottom:916.334700px;}
.y12_c00352{bottom:946.334700px;}
.y11_c00352{bottom:976.334700px;}
.y10_c00352{bottom:1006.334700px;}
.y2_c00352{bottom:1093.526700px;}
.h2_c00352{height:54.000000px;}
.h5_c00352{height:64.800000px;}
.h4_c00352{height:66.456000px;}
.h6_c00352{height:112.200000px;}
.h3_c00352{height:324.000000px;}
.h0_c00352{height:1262.835000px;}
.h1_c00352{height:1263.000000px;}
.w0_c00352{width:892.914000px;}
.w1_c00352{width:893.250000px;}
.x0_c00352{left:0.000000px;}
.x2_c00352{left:81.290250px;}
.x3_c00352{left:82.393650px;}
.x5_c00352{left:112.287450px;}
.x4_c00352{left:127.393650px;}
.x1_c00352{left:787.763700px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls2_c00352{letter-spacing:0.000000pt;}
.ls0_c00352{letter-spacing:0.768000pt;}
.ls1_c00352{letter-spacing:1.066667pt;}
.ws1_c00352{word-spacing:-11.648000pt;}
.ws0_c00352{word-spacing:-9.066667pt;}
.ws3_c00352{word-spacing:-7.360000pt;}
.ws5_c00352{word-spacing:-6.336000pt;}
.ws4_c00352{word-spacing:-1.280000pt;}
.ws2_c00352{word-spacing:0.000000pt;}
._0_c00352{margin-left:-426.965867pt;}
._9_c00352{margin-left:-8.362667pt;}
._3_c00352{margin-left:-5.760000pt;}
._1_c00352{margin-left:-3.733333pt;}
._6_c00352{margin-left:-2.304000pt;}
._2_c00352{margin-left:-1.280000pt;}
._7_c00352{width:1.024000pt;}
._5_c00352{width:4.096000pt;}
._8_c00352{width:6.336000pt;}
._4_c00352{width:7.360000pt;}
.fs1_c00352{font-size:37.333333pt;}
.fs0_c00352{font-size:53.333333pt;}
.fs3_c00352{font-size:64.000000pt;}
.fs4_c00352{font-size:106.666667pt;}
.fs2_c00352{font-size:320.000000pt;}
.y0_c00352{bottom:0.000000pt;}
.y1_c00352{bottom:36.666667pt;}
.yf_c00352{bottom:350.466400pt;}
.ye_c00352{bottom:369.138400pt;}
.yd_c00352{bottom:387.810400pt;}
.yc_c00352{bottom:430.482400pt;}
.yb_c00352{bottom:449.154400pt;}
.ya_c00352{bottom:467.826400pt;}
.y9_c00352{bottom:510.498400pt;}
.y8_c00352{bottom:529.170400pt;}
.y7_c00352{bottom:547.842400pt;}
.y6_c00352{bottom:590.514400pt;}
.y5_c00352{bottom:609.186400pt;}
.y4_c00352{bottom:627.858400pt;}
.y3_c00352{bottom:669.186400pt;}
.y13_c00352{bottom:814.519733pt;}
.y12_c00352{bottom:841.186400pt;}
.y11_c00352{bottom:867.853067pt;}
.y10_c00352{bottom:894.519733pt;}
.y2_c00352{bottom:972.023733pt;}
.h2_c00352{height:48.000000pt;}
.h5_c00352{height:57.600000pt;}
.h4_c00352{height:59.072000pt;}
.h6_c00352{height:99.733333pt;}
.h3_c00352{height:288.000000pt;}
.h0_c00352{height:1122.520000pt;}
.h1_c00352{height:1122.666667pt;}
.w0_c00352{width:793.701333pt;}
.w1_c00352{width:794.000000pt;}
.x0_c00352{left:0.000000pt;}
.x2_c00352{left:72.258000pt;}
.x3_c00352{left:73.238800pt;}
.x5_c00352{left:99.811067pt;}
.x4_c00352{left:113.238800pt;}
.x1_c00352{left:700.234400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.160000;font-style:normal;font-weight:normal;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_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.199000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:1.024000;font-style: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);}
.m1_c00353{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls4_c00353{letter-spacing:-0.540000px;}
.ls3_c00353{letter-spacing:0.000000px;}
.ls0_c00353{letter-spacing:0.720000px;}
.ls5_c00353{letter-spacing:0.840000px;}
.ls2_c00353{letter-spacing:1.500000px;}
.ls1_c00353{letter-spacing:1.650000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00353{word-spacing:-21.060000px;}
.ws0_c00353{word-spacing:-10.200000px;}
.wse_c00353{word-spacing:-2.304000px;}
.ws16_c00353{word-spacing:-1.500000px;}
.ws3_c00353{word-spacing:-0.840000px;}
.ws8_c00353{word-spacing:-0.720000px;}
.ws2_c00353{word-spacing:0.000000px;}
.ws7_c00353{word-spacing:0.144000px;}
.wsa_c00353{word-spacing:0.432000px;}
.ws4_c00353{word-spacing:1.008000px;}
.ws9_c00353{word-spacing:1.224000px;}
.ws15_c00353{word-spacing:2.160000px;}
.ws10_c00353{word-spacing:2.304000px;}
.ws5_c00353{word-spacing:2.736000px;}
.wsb_c00353{word-spacing:3.168000px;}
.ws14_c00353{word-spacing:5.184000px;}
.ws6_c00353{word-spacing:5.472000px;}
.ws11_c00353{word-spacing:6.048000px;}
.ws13_c00353{word-spacing:6.912000px;}
.wsc_c00353{word-spacing:8.712000px;}
.wsd_c00353{word-spacing:11.880000px;}
.wsf_c00353{word-spacing:15.840000px;}
.ws12_c00353{word-spacing:19.944000px;}
._0_c00353{margin-left:-480.336600px;}
._4_c00353{margin-left:-8.640000px;}
._6_c00353{margin-left:-6.408000px;}
._1_c00353{margin-left:-4.200000px;}
._3_c00353{margin-left:-2.232000px;}
._2_c00353{margin-left:-1.044000px;}
._5_c00353{width:11.736000px;}
.fc3_c00353{color:rgb(32,32,32);}
.fc2_c00353{color:rgb(233,83,14);}
.fc1_c00353{color:rgb(232,86,17);}
.fc4_c00353{color:rgb(157,157,156);}
.fc0_c00353{color:rgb(60,60,59);}
.fs1_c00353{font-size:42.000000px;}
.fs0_c00353{font-size:60.000000px;}
.fs5_c00353{font-size:66.000000px;}
.fs4_c00353{font-size:72.000000px;}
.fs3_c00353{font-size:84.000000px;}
.fs2_c00353{font-size:108.000000px;}
.y0_c00353{bottom:0.000000px;}
.y1_c00353{bottom:41.250000px;}
.y17_c00353{bottom:196.286700px;}
.y16_c00353{bottom:226.292700px;}
.y15_c00353{bottom:256.298700px;}
.y14_c00353{bottom:286.304700px;}
.y13_c00353{bottom:316.310700px;}
.y12_c00353{bottom:346.316700px;}
.y11_c00353{bottom:376.322700px;}
.y10_c00353{bottom:406.328700px;}
.yf_c00353{bottom:436.334700px;}
.ye_c00353{bottom:496.334700px;}
.yd_c00353{bottom:586.280700px;}
.yc_c00353{bottom:616.286700px;}
.yb_c00353{bottom:646.292700px;}
.ya_c00353{bottom:676.298700px;}
.y9_c00353{bottom:706.304700px;}
.y8_c00353{bottom:736.310700px;}
.y7_c00353{bottom:766.316700px;}
.y1b_c00353{bottom:766.334700px;}
.y6_c00353{bottom:796.322700px;}
.y1a_c00353{bottom:796.334700px;}
.y5_c00353{bottom:826.328700px;}
.y19_c00353{bottom:826.334700px;}
.y4_c00353{bottom:856.334700px;}
.y18_c00353{bottom:856.376100px;}
.y3_c00353{bottom:916.334700px;}
.y2_c00353{bottom:1006.334700px;}
.h7_c00353{height:50.292000px;}
.h2_c00353{height:54.000000px;}
.h5_c00353{height:64.800000px;}
.h6_c00353{height:67.320000px;}
.h4_c00353{height:78.540000px;}
.h3_c00353{height:100.980000px;}
.h0_c00353{height:1262.835000px;}
.h1_c00353{height:1263.000000px;}
.w0_c00353{width:892.914000px;}
.w1_c00353{width:893.250000px;}
.x0_c00353{left:0.000000px;}
.x2_c00353{left:82.500000px;}
.x3_c00353{left:90.000000px;}
.x4_c00353{left:106.500000px;}
.x5_c00353{left:675.611100px;}
.x1_c00353{left:786.788700px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls4_c00353{letter-spacing:-0.480000pt;}
.ls3_c00353{letter-spacing:0.000000pt;}
.ls0_c00353{letter-spacing:0.640000pt;}
.ls5_c00353{letter-spacing:0.746667pt;}
.ls2_c00353{letter-spacing:1.333333pt;}
.ls1_c00353{letter-spacing:1.466667pt;}
.ws1_c00353{word-spacing:-18.720000pt;}
.ws0_c00353{word-spacing:-9.066667pt;}
.wse_c00353{word-spacing:-2.048000pt;}
.ws16_c00353{word-spacing:-1.333333pt;}
.ws3_c00353{word-spacing:-0.746667pt;}
.ws8_c00353{word-spacing:-0.640000pt;}
.ws2_c00353{word-spacing:0.000000pt;}
.ws7_c00353{word-spacing:0.128000pt;}
.wsa_c00353{word-spacing:0.384000pt;}
.ws4_c00353{word-spacing:0.896000pt;}
.ws9_c00353{word-spacing:1.088000pt;}
.ws15_c00353{word-spacing:1.920000pt;}
.ws10_c00353{word-spacing:2.048000pt;}
.ws5_c00353{word-spacing:2.432000pt;}
.wsb_c00353{word-spacing:2.816000pt;}
.ws14_c00353{word-spacing:4.608000pt;}
.ws6_c00353{word-spacing:4.864000pt;}
.ws11_c00353{word-spacing:5.376000pt;}
.ws13_c00353{word-spacing:6.144000pt;}
.wsc_c00353{word-spacing:7.744000pt;}
.wsd_c00353{word-spacing:10.560000pt;}
.wsf_c00353{word-spacing:14.080000pt;}
.ws12_c00353{word-spacing:17.728000pt;}
._0_c00353{margin-left:-426.965867pt;}
._4_c00353{margin-left:-7.680000pt;}
._6_c00353{margin-left:-5.696000pt;}
._1_c00353{margin-left:-3.733333pt;}
._3_c00353{margin-left:-1.984000pt;}
._2_c00353{margin-left:-0.928000pt;}
._5_c00353{width:10.432000pt;}
.fs1_c00353{font-size:37.333333pt;}
.fs0_c00353{font-size:53.333333pt;}
.fs5_c00353{font-size:58.666667pt;}
.fs4_c00353{font-size:64.000000pt;}
.fs3_c00353{font-size:74.666667pt;}
.fs2_c00353{font-size:96.000000pt;}
.y0_c00353{bottom:0.000000pt;}
.y1_c00353{bottom:36.666667pt;}
.y17_c00353{bottom:174.477067pt;}
.y16_c00353{bottom:201.149067pt;}
.y15_c00353{bottom:227.821067pt;}
.y14_c00353{bottom:254.493067pt;}
.y13_c00353{bottom:281.165067pt;}
.y12_c00353{bottom:307.837067pt;}
.y11_c00353{bottom:334.509067pt;}
.y10_c00353{bottom:361.181067pt;}
.yf_c00353{bottom:387.853067pt;}
.ye_c00353{bottom:441.186400pt;}
.yd_c00353{bottom:521.138400pt;}
.yc_c00353{bottom:547.810400pt;}
.yb_c00353{bottom:574.482400pt;}
.ya_c00353{bottom:601.154400pt;}
.y9_c00353{bottom:627.826400pt;}
.y8_c00353{bottom:654.498400pt;}
.y7_c00353{bottom:681.170400pt;}
.y1b_c00353{bottom:681.186400pt;}
.y6_c00353{bottom:707.842400pt;}
.y1a_c00353{bottom:707.853067pt;}
.y5_c00353{bottom:734.514400pt;}
.y19_c00353{bottom:734.519733pt;}
.y4_c00353{bottom:761.186400pt;}
.y18_c00353{bottom:761.223200pt;}
.y3_c00353{bottom:814.519733pt;}
.y2_c00353{bottom:894.519733pt;}
.h7_c00353{height:44.704000pt;}
.h2_c00353{height:48.000000pt;}
.h5_c00353{height:57.600000pt;}
.h6_c00353{height:59.840000pt;}
.h4_c00353{height:69.813333pt;}
.h3_c00353{height:89.760000pt;}
.h0_c00353{height:1122.520000pt;}
.h1_c00353{height:1122.666667pt;}
.w0_c00353{width:793.701333pt;}
.w1_c00353{width:794.000000pt;}
.x0_c00353{left:0.000000pt;}
.x2_c00353{left:73.333333pt;}
.x3_c00353{left:80.000000pt;}
.x4_c00353{left:94.666667pt;}
.x5_c00353{left:600.543200pt;}
.x1_c00353{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.199000;font-style: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);}
.m1_c00354{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls1_c00354{letter-spacing:0.000000px;}
.ls0_c00354{letter-spacing:0.720000px;}
.ls2_c00354{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsb_c00354{word-spacing:-2.304000px;}
.ws2_c00354{word-spacing:-0.840000px;}
.ws4_c00354{word-spacing:-0.144000px;}
.ws1_c00354{word-spacing:0.000000px;}
.ws5_c00354{word-spacing:1.296000px;}
.ws3_c00354{word-spacing:2.376000px;}
.ws6_c00354{word-spacing:3.096000px;}
.ws7_c00354{word-spacing:5.832000px;}
.ws8_c00354{word-spacing:9.792000px;}
.wsa_c00354{word-spacing:13.608000px;}
.ws9_c00354{word-spacing:18.792000px;}
._0_c00354{margin-left:-480.336000px;}
._3_c00354{margin-left:-6.480000px;}
._1_c00354{margin-left:-4.200000px;}
._2_c00354{margin-left:-1.440000px;}
._4_c00354{width:2.304000px;}
.fc2_c00354{color:rgb(32,32,32);}
.fc1_c00354{color:rgb(232,86,17);}
.fc0_c00354{color:rgb(60,60,59);}
.fs1_c00354{font-size:42.000000px;}
.fs0_c00354{font-size:60.000000px;}
.fs3_c00354{font-size:72.000000px;}
.fs2_c00354{font-size:84.000000px;}
.y0_c00354{bottom:0.000000px;}
.y1_c00354{bottom:41.250000px;}
.yd_c00354{bottom:556.304700px;}
.yc_c00354{bottom:586.310700px;}
.yb_c00354{bottom:616.316700px;}
.ya_c00354{bottom:646.322700px;}
.y9_c00354{bottom:676.328700px;}
.y8_c00354{bottom:706.334700px;}
.y7_c00354{bottom:766.334700px;}
.y6_c00354{bottom:856.316700px;}
.y5_c00354{bottom:886.322700px;}
.y4_c00354{bottom:916.328700px;}
.y3_c00354{bottom:946.334700px;}
.y2_c00354{bottom:1006.334700px;}
.h2_c00354{height:54.000000px;}
.h4_c00354{height:64.800000px;}
.h3_c00354{height:78.540000px;}
.h0_c00354{height:1262.835000px;}
.h1_c00354{height:1263.000000px;}
.w0_c00354{width:892.914000px;}
.w1_c00354{width:893.250000px;}
.x0_c00354{left:0.000000px;}
.x2_c00354{left:90.000000px;}
.x3_c00354{left:106.500000px;}
.x1_c00354{left:787.838550px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls1_c00354{letter-spacing:0.000000pt;}
.ls0_c00354{letter-spacing:0.640000pt;}
.ls2_c00354{letter-spacing:0.746667pt;}
.ws0_c00354{word-spacing:-9.066667pt;}
.wsb_c00354{word-spacing:-2.048000pt;}
.ws2_c00354{word-spacing:-0.746667pt;}
.ws4_c00354{word-spacing:-0.128000pt;}
.ws1_c00354{word-spacing:0.000000pt;}
.ws5_c00354{word-spacing:1.152000pt;}
.ws3_c00354{word-spacing:2.112000pt;}
.ws6_c00354{word-spacing:2.752000pt;}
.ws7_c00354{word-spacing:5.184000pt;}
.ws8_c00354{word-spacing:8.704000pt;}
.wsa_c00354{word-spacing:12.096000pt;}
.ws9_c00354{word-spacing:16.704000pt;}
._0_c00354{margin-left:-426.965333pt;}
._3_c00354{margin-left:-5.760000pt;}
._1_c00354{margin-left:-3.733333pt;}
._2_c00354{margin-left:-1.280000pt;}
._4_c00354{width:2.048000pt;}
.fs1_c00354{font-size:37.333333pt;}
.fs0_c00354{font-size:53.333333pt;}
.fs3_c00354{font-size:64.000000pt;}
.fs2_c00354{font-size:74.666667pt;}
.y0_c00354{bottom:0.000000pt;}
.y1_c00354{bottom:36.666667pt;}
.yd_c00354{bottom:494.493067pt;}
.yc_c00354{bottom:521.165067pt;}
.yb_c00354{bottom:547.837067pt;}
.ya_c00354{bottom:574.509067pt;}
.y9_c00354{bottom:601.181067pt;}
.y8_c00354{bottom:627.853067pt;}
.y7_c00354{bottom:681.186400pt;}
.y6_c00354{bottom:761.170400pt;}
.y5_c00354{bottom:787.842400pt;}
.y4_c00354{bottom:814.514400pt;}
.y3_c00354{bottom:841.186400pt;}
.y2_c00354{bottom:894.519733pt;}
.h2_c00354{height:48.000000pt;}
.h4_c00354{height:57.600000pt;}
.h3_c00354{height:69.813333pt;}
.h0_c00354{height:1122.520000pt;}
.h1_c00354{height:1122.666667pt;}
.w0_c00354{width:793.701333pt;}
.w1_c00354{width:794.000000pt;}
.x0_c00354{left:0.000000pt;}
.x2_c00354{left:80.000000pt;}
.x3_c00354{left:94.666667pt;}
.x1_c00354{left:700.300933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f0146705d46c3af5096eb9.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00355;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.161000;font-style: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);}
.m1_c00355{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls4_c00355{letter-spacing:-0.324000px;}
.ls3_c00355{letter-spacing:0.000000px;}
.ls0_c00355{letter-spacing:0.720000px;}
.ls5_c00355{letter-spacing:0.840000px;}
.ls2_c00355{letter-spacing:1.500000px;}
.ls1_c00355{letter-spacing:1.650000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00355{word-spacing:-21.276000px;}
.ws2_c00355{word-spacing:-14.850000px;}
.ws0_c00355{word-spacing:-10.200000px;}
.ws10_c00355{word-spacing:-2.376000px;}
.ws8_c00355{word-spacing:-2.232000px;}
.ws14_c00355{word-spacing:-1.500000px;}
.ws13_c00355{word-spacing:-1.080000px;}
.ws4_c00355{word-spacing:-0.840000px;}
.ws7_c00355{word-spacing:-0.216000px;}
.ws11_c00355{word-spacing:-0.072000px;}
.ws3_c00355{word-spacing:0.000000px;}
.wsa_c00355{word-spacing:0.648000px;}
.wsb_c00355{word-spacing:1.728000px;}
.ws9_c00355{word-spacing:2.016000px;}
.wsf_c00355{word-spacing:4.680000px;}
.wsc_c00355{word-spacing:5.400000px;}
.ws6_c00355{word-spacing:5.904000px;}
.wse_c00355{word-spacing:6.480000px;}
.ws12_c00355{word-spacing:6.768000px;}
.ws5_c00355{word-spacing:12.600000px;}
.wsd_c00355{word-spacing:23.832000px;}
._0_c00355{margin-left:-480.336600px;}
._4_c00355{margin-left:-9.352800px;}
._5_c00355{margin-left:-7.920000px;}
._6_c00355{margin-left:-5.760000px;}
._1_c00355{margin-left:-4.200000px;}
._3_c00355{margin-left:-2.160000px;}
._2_c00355{margin-left:-1.134000px;}
.fc3_c00355{color:rgb(32,32,32);}
.fc2_c00355{color:rgb(233,83,14);}
.fc1_c00355{color:rgb(232,86,17);}
.fc4_c00355{color:rgb(157,157,156);}
.fc0_c00355{color:rgb(60,60,59);}
.fs1_c00355{font-size:42.000000px;}
.fs0_c00355{font-size:60.000000px;}
.fs5_c00355{font-size:66.000000px;}
.fs4_c00355{font-size:72.000000px;}
.fs3_c00355{font-size:84.000000px;}
.fs2_c00355{font-size:108.000000px;}
.y0_c00355{bottom:0.000000px;}
.y1_c00355{bottom:41.250000px;}
.y15_c00355{bottom:256.292700px;}
.y14_c00355{bottom:286.298700px;}
.y13_c00355{bottom:316.304700px;}
.y12_c00355{bottom:346.310700px;}
.y11_c00355{bottom:376.316700px;}
.y10_c00355{bottom:406.322700px;}
.yf_c00355{bottom:436.328700px;}
.ye_c00355{bottom:466.334700px;}
.yd_c00355{bottom:526.334700px;}
.yc_c00355{bottom:616.286700px;}
.yb_c00355{bottom:646.292700px;}
.ya_c00355{bottom:676.298700px;}
.y9_c00355{bottom:706.304700px;}
.y8_c00355{bottom:736.310700px;}
.y7_c00355{bottom:766.316700px;}
.y19_c00355{bottom:766.334700px;}
.y6_c00355{bottom:796.322700px;}
.y18_c00355{bottom:796.334700px;}
.y5_c00355{bottom:826.328700px;}
.y17_c00355{bottom:826.334700px;}
.y4_c00355{bottom:856.334700px;}
.y16_c00355{bottom:856.376100px;}
.y3_c00355{bottom:916.334700px;}
.y2_c00355{bottom:1006.334700px;}
.h6_c00355{height:50.292000px;}
.h2_c00355{height:54.000000px;}
.h5_c00355{height:64.800000px;}
.h4_c00355{height:78.540000px;}
.h3_c00355{height:100.980000px;}
.h0_c00355{height:1262.835000px;}
.h1_c00355{height:1263.000000px;}
.w0_c00355{width:892.914000px;}
.w1_c00355{width:893.250000px;}
.x0_c00355{left:0.000000px;}
.x2_c00355{left:82.500000px;}
.x3_c00355{left:90.000000px;}
.x4_c00355{left:106.500000px;}
.x5_c00355{left:675.611100px;}
.x1_c00355{left:786.713700px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls4_c00355{letter-spacing:-0.288000pt;}
.ls3_c00355{letter-spacing:0.000000pt;}
.ls0_c00355{letter-spacing:0.640000pt;}
.ls5_c00355{letter-spacing:0.746667pt;}
.ls2_c00355{letter-spacing:1.333333pt;}
.ls1_c00355{letter-spacing:1.466667pt;}
.ws1_c00355{word-spacing:-18.912000pt;}
.ws2_c00355{word-spacing:-13.200000pt;}
.ws0_c00355{word-spacing:-9.066667pt;}
.ws10_c00355{word-spacing:-2.112000pt;}
.ws8_c00355{word-spacing:-1.984000pt;}
.ws14_c00355{word-spacing:-1.333333pt;}
.ws13_c00355{word-spacing:-0.960000pt;}
.ws4_c00355{word-spacing:-0.746667pt;}
.ws7_c00355{word-spacing:-0.192000pt;}
.ws11_c00355{word-spacing:-0.064000pt;}
.ws3_c00355{word-spacing:0.000000pt;}
.wsa_c00355{word-spacing:0.576000pt;}
.wsb_c00355{word-spacing:1.536000pt;}
.ws9_c00355{word-spacing:1.792000pt;}
.wsf_c00355{word-spacing:4.160000pt;}
.wsc_c00355{word-spacing:4.800000pt;}
.ws6_c00355{word-spacing:5.248000pt;}
.wse_c00355{word-spacing:5.760000pt;}
.ws12_c00355{word-spacing:6.016000pt;}
.ws5_c00355{word-spacing:11.200000pt;}
.wsd_c00355{word-spacing:21.184000pt;}
._0_c00355{margin-left:-426.965867pt;}
._4_c00355{margin-left:-8.313600pt;}
._5_c00355{margin-left:-7.040000pt;}
._6_c00355{margin-left:-5.120000pt;}
._1_c00355{margin-left:-3.733333pt;}
._3_c00355{margin-left:-1.920000pt;}
._2_c00355{margin-left:-1.008000pt;}
.fs1_c00355{font-size:37.333333pt;}
.fs0_c00355{font-size:53.333333pt;}
.fs5_c00355{font-size:58.666667pt;}
.fs4_c00355{font-size:64.000000pt;}
.fs3_c00355{font-size:74.666667pt;}
.fs2_c00355{font-size:96.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.y1_c00355{bottom:36.666667pt;}
.y15_c00355{bottom:227.815733pt;}
.y14_c00355{bottom:254.487733pt;}
.y13_c00355{bottom:281.159733pt;}
.y12_c00355{bottom:307.831733pt;}
.y11_c00355{bottom:334.503733pt;}
.y10_c00355{bottom:361.175733pt;}
.yf_c00355{bottom:387.847733pt;}
.ye_c00355{bottom:414.519733pt;}
.yd_c00355{bottom:467.853067pt;}
.yc_c00355{bottom:547.810400pt;}
.yb_c00355{bottom:574.482400pt;}
.ya_c00355{bottom:601.154400pt;}
.y9_c00355{bottom:627.826400pt;}
.y8_c00355{bottom:654.498400pt;}
.y7_c00355{bottom:681.170400pt;}
.y19_c00355{bottom:681.186400pt;}
.y6_c00355{bottom:707.842400pt;}
.y18_c00355{bottom:707.853067pt;}
.y5_c00355{bottom:734.514400pt;}
.y17_c00355{bottom:734.519733pt;}
.y4_c00355{bottom:761.186400pt;}
.y16_c00355{bottom:761.223200pt;}
.y3_c00355{bottom:814.519733pt;}
.y2_c00355{bottom:894.519733pt;}
.h6_c00355{height:44.704000pt;}
.h2_c00355{height:48.000000pt;}
.h5_c00355{height:57.600000pt;}
.h4_c00355{height:69.813333pt;}
.h3_c00355{height:89.760000pt;}
.h0_c00355{height:1122.520000pt;}
.h1_c00355{height:1122.666667pt;}
.w0_c00355{width:793.701333pt;}
.w1_c00355{width:794.000000pt;}
.x0_c00355{left:0.000000pt;}
.x2_c00355{left:73.333333pt;}
.x3_c00355{left:80.000000pt;}
.x4_c00355{left:94.666667pt;}
.x5_c00355{left:600.543200pt;}
.x1_c00355{left:699.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.199000;font-style: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);}
.m1_c00356{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls1_c00356{letter-spacing:0.000000px;}
.ls0_c00356{letter-spacing:0.720000px;}
.ls2_c00356{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00356{word-spacing:-0.840000px;}
.ws1_c00356{word-spacing:0.000000px;}
.ws5_c00356{word-spacing:3.960000px;}
.ws3_c00356{word-spacing:4.248000px;}
.ws6_c00356{word-spacing:8.280000px;}
.ws4_c00356{word-spacing:8.496000px;}
.ws9_c00356{word-spacing:8.640000px;}
.ws7_c00356{word-spacing:9.504000px;}
.ws8_c00356{word-spacing:16.488000px;}
._0_c00356{margin-left:-480.336000px;}
._3_c00356{margin-left:-7.200000px;}
._1_c00356{margin-left:-4.200000px;}
._2_c00356{margin-left:-2.160000px;}
.fc2_c00356{color:rgb(32,32,32);}
.fc1_c00356{color:rgb(232,86,17);}
.fc0_c00356{color:rgb(60,60,59);}
.fs1_c00356{font-size:42.000000px;}
.fs0_c00356{font-size:60.000000px;}
.fs3_c00356{font-size:72.000000px;}
.fs2_c00356{font-size:84.000000px;}
.y0_c00356{bottom:0.000000px;}
.y1_c00356{bottom:41.250000px;}
.yc_c00356{bottom:586.310700px;}
.yb_c00356{bottom:616.316700px;}
.ya_c00356{bottom:646.322700px;}
.y9_c00356{bottom:676.328700px;}
.y8_c00356{bottom:706.334700px;}
.y7_c00356{bottom:766.334700px;}
.y6_c00356{bottom:856.316700px;}
.y5_c00356{bottom:886.322700px;}
.y4_c00356{bottom:916.328700px;}
.y3_c00356{bottom:946.334700px;}
.y2_c00356{bottom:1006.334700px;}
.h2_c00356{height:54.000000px;}
.h4_c00356{height:64.800000px;}
.h3_c00356{height:78.540000px;}
.h0_c00356{height:1262.835000px;}
.h1_c00356{height:1263.000000px;}
.w0_c00356{width:892.914000px;}
.w1_c00356{width:893.250000px;}
.x0_c00356{left:0.000000px;}
.x2_c00356{left:90.000000px;}
.x3_c00356{left:106.500000px;}
.x1_c00356{left:788.813550px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls1_c00356{letter-spacing:0.000000pt;}
.ls0_c00356{letter-spacing:0.640000pt;}
.ls2_c00356{letter-spacing:0.746667pt;}
.ws0_c00356{word-spacing:-9.066667pt;}
.ws2_c00356{word-spacing:-0.746667pt;}
.ws1_c00356{word-spacing:0.000000pt;}
.ws5_c00356{word-spacing:3.520000pt;}
.ws3_c00356{word-spacing:3.776000pt;}
.ws6_c00356{word-spacing:7.360000pt;}
.ws4_c00356{word-spacing:7.552000pt;}
.ws9_c00356{word-spacing:7.680000pt;}
.ws7_c00356{word-spacing:8.448000pt;}
.ws8_c00356{word-spacing:14.656000pt;}
._0_c00356{margin-left:-426.965333pt;}
._3_c00356{margin-left:-6.400000pt;}
._1_c00356{margin-left:-3.733333pt;}
._2_c00356{margin-left:-1.920000pt;}
.fs1_c00356{font-size:37.333333pt;}
.fs0_c00356{font-size:53.333333pt;}
.fs3_c00356{font-size:64.000000pt;}
.fs2_c00356{font-size:74.666667pt;}
.y0_c00356{bottom:0.000000pt;}
.y1_c00356{bottom:36.666667pt;}
.yc_c00356{bottom:521.165067pt;}
.yb_c00356{bottom:547.837067pt;}
.ya_c00356{bottom:574.509067pt;}
.y9_c00356{bottom:601.181067pt;}
.y8_c00356{bottom:627.853067pt;}
.y7_c00356{bottom:681.186400pt;}
.y6_c00356{bottom:761.170400pt;}
.y5_c00356{bottom:787.842400pt;}
.y4_c00356{bottom:814.514400pt;}
.y3_c00356{bottom:841.186400pt;}
.y2_c00356{bottom:894.519733pt;}
.h2_c00356{height:48.000000pt;}
.h4_c00356{height:57.600000pt;}
.h3_c00356{height:69.813333pt;}
.h0_c00356{height:1122.520000pt;}
.h1_c00356{height:1122.666667pt;}
.w0_c00356{width:793.701333pt;}
.w1_c00356{width:794.000000pt;}
.x0_c00356{left:0.000000pt;}
.x2_c00356{left:80.000000pt;}
.x3_c00356{left:94.666667pt;}
.x1_c00356{left:701.167600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.199000;font-style:normal;font-weight:normal;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_4829a453264cbee9cb480ba0.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00357;src:url('chunks/assets/font_33c67a7a21b3428d95d6a908.woff2')format("woff");}.ff5_c00357{font-family:ff5_c00357;line-height:1.155000;font-style: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);}
.m1_c00357{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls3_c00357{letter-spacing:-0.648000px;}
.ls2_c00357{letter-spacing:0.000000px;}
.ls0_c00357{letter-spacing:0.864000px;}
.ls1_c00357{letter-spacing:1.200000px;}
.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;}
}
.ws7_c00357{word-spacing:-13.896000px;}
.ws2_c00357{word-spacing:-13.104000px;}
.ws8_c00357{word-spacing:-12.240000px;}
.ws1_c00357{word-spacing:-11.592000px;}
.ws0_c00357{word-spacing:-10.200000px;}
.ws5_c00357{word-spacing:-6.408000px;}
.ws4_c00357{word-spacing:-1.800000px;}
.ws6_c00357{word-spacing:-0.864000px;}
.ws3_c00357{word-spacing:0.000000px;}
._0_c00357{margin-left:-480.336600px;}
._6_c00357{margin-left:-14.544000px;}
._b_c00357{margin-left:-11.191200px;}
._7_c00357{margin-left:-10.152000px;}
._9_c00357{margin-left:-7.560000px;}
._5_c00357{margin-left:-5.608800px;}
._1_c00357{margin-left:-4.200000px;}
._2_c00357{margin-left:-1.440000px;}
._3_c00357{width:1.440000px;}
._4_c00357{width:4.248000px;}
._a_c00357{width:11.832000px;}
._8_c00357{width:13.248000px;}
.fc3_c00357{color:rgb(255,255,255);}
.fc2_c00357{color:rgb(233,83,14);}
.fc1_c00357{color:rgb(232,86,17);}
.fc0_c00357{color:rgb(60,60,59);}
.fs1_c00357{font-size:42.000000px;}
.fs0_c00357{font-size:60.000000px;}
.fs3_c00357{font-size:72.000000px;}
.fs4_c00357{font-size:120.000000px;}
.fs2_c00357{font-size:360.000000px;}
.y0_c00357{bottom:0.000000px;}
.y1_c00357{bottom:41.250000px;}
.y19_c00357{bottom:112.214700px;}
.y18_c00357{bottom:133.220700px;}
.y17_c00357{bottom:154.226700px;}
.y16_c00357{bottom:175.232700px;}
.y15_c00357{bottom:196.238700px;}
.y14_c00357{bottom:244.244700px;}
.y13_c00357{bottom:265.250700px;}
.y12_c00357{bottom:286.256700px;}
.y11_c00357{bottom:334.262700px;}
.y10_c00357{bottom:355.268700px;}
.yf_c00357{bottom:376.274700px;}
.ye_c00357{bottom:424.280700px;}
.yd_c00357{bottom:445.286700px;}
.yc_c00357{bottom:466.292700px;}
.yb_c00357{bottom:523.298700px;}
.ya_c00357{bottom:544.304700px;}
.y9_c00357{bottom:565.310700px;}
.y8_c00357{bottom:586.316700px;}
.y7_c00357{bottom:643.322700px;}
.y6_c00357{bottom:664.328700px;}
.y5_c00357{bottom:685.334700px;}
.y4_c00357{bottom:706.340700px;}
.y3_c00357{bottom:752.834700px;}
.y1f_c00357{bottom:826.334700px;}
.y1e_c00357{bottom:856.334700px;}
.y1d_c00357{bottom:886.334700px;}
.y1c_c00357{bottom:946.334700px;}
.y1b_c00357{bottom:976.334700px;}
.y1a_c00357{bottom:1006.334700px;}
.y2_c00357{bottom:1093.526700px;}
.h2_c00357{height:54.000000px;}
.h5_c00357{height:64.800000px;}
.h4_c00357{height:66.456000px;}
.h7_c00357{height:108.000000px;}
.h6_c00357{height:112.200000px;}
.h3_c00357{height:324.000000px;}
.h0_c00357{height:1262.835000px;}
.h1_c00357{height:1263.000000px;}
.w0_c00357{width:892.914000px;}
.w1_c00357{width:893.250000px;}
.x0_c00357{left:0.000000px;}
.x2_c00357{left:81.290250px;}
.x3_c00357{left:82.393650px;}
.x5_c00357{left:112.287450px;}
.x4_c00357{left:127.393650px;}
.x1_c00357{left:786.788700px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls3_c00357{letter-spacing:-0.576000pt;}
.ls2_c00357{letter-spacing:0.000000pt;}
.ls0_c00357{letter-spacing:0.768000pt;}
.ls1_c00357{letter-spacing:1.066667pt;}
.ws7_c00357{word-spacing:-12.352000pt;}
.ws2_c00357{word-spacing:-11.648000pt;}
.ws8_c00357{word-spacing:-10.880000pt;}
.ws1_c00357{word-spacing:-10.304000pt;}
.ws0_c00357{word-spacing:-9.066667pt;}
.ws5_c00357{word-spacing:-5.696000pt;}
.ws4_c00357{word-spacing:-1.600000pt;}
.ws6_c00357{word-spacing:-0.768000pt;}
.ws3_c00357{word-spacing:0.000000pt;}
._0_c00357{margin-left:-426.965867pt;}
._6_c00357{margin-left:-12.928000pt;}
._b_c00357{margin-left:-9.947733pt;}
._7_c00357{margin-left:-9.024000pt;}
._9_c00357{margin-left:-6.720000pt;}
._5_c00357{margin-left:-4.985600pt;}
._1_c00357{margin-left:-3.733333pt;}
._2_c00357{margin-left:-1.280000pt;}
._3_c00357{width:1.280000pt;}
._4_c00357{width:3.776000pt;}
._a_c00357{width:10.517333pt;}
._8_c00357{width:11.776000pt;}
.fs1_c00357{font-size:37.333333pt;}
.fs0_c00357{font-size:53.333333pt;}
.fs3_c00357{font-size:64.000000pt;}
.fs4_c00357{font-size:106.666667pt;}
.fs2_c00357{font-size:320.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.y1_c00357{bottom:36.666667pt;}
.y19_c00357{bottom:99.746400pt;}
.y18_c00357{bottom:118.418400pt;}
.y17_c00357{bottom:137.090400pt;}
.y16_c00357{bottom:155.762400pt;}
.y15_c00357{bottom:174.434400pt;}
.y14_c00357{bottom:217.106400pt;}
.y13_c00357{bottom:235.778400pt;}
.y12_c00357{bottom:254.450400pt;}
.y11_c00357{bottom:297.122400pt;}
.y10_c00357{bottom:315.794400pt;}
.yf_c00357{bottom:334.466400pt;}
.ye_c00357{bottom:377.138400pt;}
.yd_c00357{bottom:395.810400pt;}
.yc_c00357{bottom:414.482400pt;}
.yb_c00357{bottom:465.154400pt;}
.ya_c00357{bottom:483.826400pt;}
.y9_c00357{bottom:502.498400pt;}
.y8_c00357{bottom:521.170400pt;}
.y7_c00357{bottom:571.842400pt;}
.y6_c00357{bottom:590.514400pt;}
.y5_c00357{bottom:609.186400pt;}
.y4_c00357{bottom:627.858400pt;}
.y3_c00357{bottom:669.186400pt;}
.y1f_c00357{bottom:734.519733pt;}
.y1e_c00357{bottom:761.186400pt;}
.y1d_c00357{bottom:787.853067pt;}
.y1c_c00357{bottom:841.186400pt;}
.y1b_c00357{bottom:867.853067pt;}
.y1a_c00357{bottom:894.519733pt;}
.y2_c00357{bottom:972.023733pt;}
.h2_c00357{height:48.000000pt;}
.h5_c00357{height:57.600000pt;}
.h4_c00357{height:59.072000pt;}
.h7_c00357{height:96.000000pt;}
.h6_c00357{height:99.733333pt;}
.h3_c00357{height:288.000000pt;}
.h0_c00357{height:1122.520000pt;}
.h1_c00357{height:1122.666667pt;}
.w0_c00357{width:793.701333pt;}
.w1_c00357{width:794.000000pt;}
.x0_c00357{left:0.000000pt;}
.x2_c00357{left:72.258000pt;}
.x3_c00357{left:73.238800pt;}
.x5_c00357{left:99.811067pt;}
.x4_c00357{left:113.238800pt;}
.x1_c00357{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.160000;font-style:normal;font-weight:normal;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_e12e76fc6151d647455519d2.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.161000;font-style: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);}
.m1_c00358{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls7_c00358{letter-spacing:-3.600000px;}
.ls5_c00358{letter-spacing:-0.540000px;}
.ls4_c00358{letter-spacing:0.000000px;}
.ls1_c00358{letter-spacing:0.432000px;}
.ls0_c00358{letter-spacing:0.720000px;}
.ls6_c00358{letter-spacing:0.840000px;}
.ls3_c00358{letter-spacing:1.500000px;}
.ls2_c00358{letter-spacing:1.650000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00358{word-spacing:-21.060000px;}
.ws3_c00358{word-spacing:-12.960000px;}
.ws0_c00358{word-spacing:-10.200000px;}
.ws2_c00358{word-spacing:-8.640000px;}
.ws8_c00358{word-spacing:-2.808000px;}
.ws12_c00358{word-spacing:-1.500000px;}
.ws9_c00358{word-spacing:-0.864000px;}
.ws5_c00358{word-spacing:-0.840000px;}
.ws4_c00358{word-spacing:0.000000px;}
.ws6_c00358{word-spacing:1.368000px;}
.wsb_c00358{word-spacing:1.872000px;}
.ws10_c00358{word-spacing:2.520000px;}
.ws11_c00358{word-spacing:2.952000px;}
.ws7_c00358{word-spacing:3.600000px;}
.wsa_c00358{word-spacing:5.904000px;}
.wse_c00358{word-spacing:8.064000px;}
.wsd_c00358{word-spacing:8.208000px;}
.wsc_c00358{word-spacing:8.856000px;}
.wsf_c00358{word-spacing:9.072000px;}
._0_c00358{margin-left:-480.336600px;}
._4_c00358{margin-left:-6.480000px;}
._1_c00358{margin-left:-4.200000px;}
._3_c00358{margin-left:-2.800800px;}
._2_c00358{margin-left:-1.548000px;}
._5_c00358{width:4.428000px;}
.fc3_c00358{color:rgb(32,32,32);}
.fc2_c00358{color:rgb(233,83,14);}
.fc1_c00358{color:rgb(232,86,17);}
.fc5_c00358{color:rgb(157,157,156);}
.fc4_c00358{color:rgb(4,97,193);}
.fc0_c00358{color:rgb(60,60,59);}
.fs1_c00358{font-size:42.000000px;}
.fs0_c00358{font-size:60.000000px;}
.fs5_c00358{font-size:66.000000px;}
.fs4_c00358{font-size:72.000000px;}
.fs3_c00358{font-size:84.000000px;}
.fs2_c00358{font-size:108.000000px;}
.y0_c00358{bottom:0.000000px;}
.y1_c00358{bottom:41.250000px;}
.y13_c00358{bottom:316.298700px;}
.y12_c00358{bottom:346.304700px;}
.y11_c00358{bottom:376.310700px;}
.y10_c00358{bottom:406.316700px;}
.yf_c00358{bottom:436.322700px;}
.ye_c00358{bottom:466.328700px;}
.yd_c00358{bottom:496.334700px;}
.yc_c00358{bottom:556.334700px;}
.yb_c00358{bottom:646.292700px;}
.y1b_c00358{bottom:646.334700px;}
.ya_c00358{bottom:676.298700px;}
.y1a_c00358{bottom:676.334700px;}
.y9_c00358{bottom:706.304700px;}
.y19_c00358{bottom:706.334700px;}
.y8_c00358{bottom:736.310700px;}
.y18_c00358{bottom:736.334700px;}
.y7_c00358{bottom:766.316700px;}
.y17_c00358{bottom:766.334700px;}
.y6_c00358{bottom:796.322700px;}
.y16_c00358{bottom:796.334700px;}
.y5_c00358{bottom:826.328700px;}
.y15_c00358{bottom:826.334700px;}
.y4_c00358{bottom:856.334700px;}
.y14_c00358{bottom:856.376100px;}
.y3_c00358{bottom:916.334700px;}
.y2_c00358{bottom:1006.334700px;}
.h6_c00358{height:50.292000px;}
.h2_c00358{height:54.000000px;}
.h5_c00358{height:64.800000px;}
.h4_c00358{height:78.540000px;}
.h3_c00358{height:100.980000px;}
.h0_c00358{height:1262.835000px;}
.h1_c00358{height:1263.000000px;}
.w0_c00358{width:892.914000px;}
.w1_c00358{width:893.250000px;}
.x0_c00358{left:0.000000px;}
.x2_c00358{left:82.500000px;}
.x3_c00358{left:90.000000px;}
.x4_c00358{left:106.500000px;}
.x5_c00358{left:675.611100px;}
.x1_c00358{left:786.713700px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls7_c00358{letter-spacing:-3.200000pt;}
.ls5_c00358{letter-spacing:-0.480000pt;}
.ls4_c00358{letter-spacing:0.000000pt;}
.ls1_c00358{letter-spacing:0.384000pt;}
.ls0_c00358{letter-spacing:0.640000pt;}
.ls6_c00358{letter-spacing:0.746667pt;}
.ls3_c00358{letter-spacing:1.333333pt;}
.ls2_c00358{letter-spacing:1.466667pt;}
.ws1_c00358{word-spacing:-18.720000pt;}
.ws3_c00358{word-spacing:-11.520000pt;}
.ws0_c00358{word-spacing:-9.066667pt;}
.ws2_c00358{word-spacing:-7.680000pt;}
.ws8_c00358{word-spacing:-2.496000pt;}
.ws12_c00358{word-spacing:-1.333333pt;}
.ws9_c00358{word-spacing:-0.768000pt;}
.ws5_c00358{word-spacing:-0.746667pt;}
.ws4_c00358{word-spacing:0.000000pt;}
.ws6_c00358{word-spacing:1.216000pt;}
.wsb_c00358{word-spacing:1.664000pt;}
.ws10_c00358{word-spacing:2.240000pt;}
.ws11_c00358{word-spacing:2.624000pt;}
.ws7_c00358{word-spacing:3.200000pt;}
.wsa_c00358{word-spacing:5.248000pt;}
.wse_c00358{word-spacing:7.168000pt;}
.wsd_c00358{word-spacing:7.296000pt;}
.wsc_c00358{word-spacing:7.872000pt;}
.wsf_c00358{word-spacing:8.064000pt;}
._0_c00358{margin-left:-426.965867pt;}
._4_c00358{margin-left:-5.760000pt;}
._1_c00358{margin-left:-3.733333pt;}
._3_c00358{margin-left:-2.489600pt;}
._2_c00358{margin-left:-1.376000pt;}
._5_c00358{width:3.936000pt;}
.fs1_c00358{font-size:37.333333pt;}
.fs0_c00358{font-size:53.333333pt;}
.fs5_c00358{font-size:58.666667pt;}
.fs4_c00358{font-size:64.000000pt;}
.fs3_c00358{font-size:74.666667pt;}
.fs2_c00358{font-size:96.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y1_c00358{bottom:36.666667pt;}
.y13_c00358{bottom:281.154400pt;}
.y12_c00358{bottom:307.826400pt;}
.y11_c00358{bottom:334.498400pt;}
.y10_c00358{bottom:361.170400pt;}
.yf_c00358{bottom:387.842400pt;}
.ye_c00358{bottom:414.514400pt;}
.yd_c00358{bottom:441.186400pt;}
.yc_c00358{bottom:494.519733pt;}
.yb_c00358{bottom:574.482400pt;}
.y1b_c00358{bottom:574.519733pt;}
.ya_c00358{bottom:601.154400pt;}
.y1a_c00358{bottom:601.186400pt;}
.y9_c00358{bottom:627.826400pt;}
.y19_c00358{bottom:627.853067pt;}
.y8_c00358{bottom:654.498400pt;}
.y18_c00358{bottom:654.519733pt;}
.y7_c00358{bottom:681.170400pt;}
.y17_c00358{bottom:681.186400pt;}
.y6_c00358{bottom:707.842400pt;}
.y16_c00358{bottom:707.853067pt;}
.y5_c00358{bottom:734.514400pt;}
.y15_c00358{bottom:734.519733pt;}
.y4_c00358{bottom:761.186400pt;}
.y14_c00358{bottom:761.223200pt;}
.y3_c00358{bottom:814.519733pt;}
.y2_c00358{bottom:894.519733pt;}
.h6_c00358{height:44.704000pt;}
.h2_c00358{height:48.000000pt;}
.h5_c00358{height:57.600000pt;}
.h4_c00358{height:69.813333pt;}
.h3_c00358{height:89.760000pt;}
.h0_c00358{height:1122.520000pt;}
.h1_c00358{height:1122.666667pt;}
.w0_c00358{width:793.701333pt;}
.w1_c00358{width:794.000000pt;}
.x0_c00358{left:0.000000pt;}
.x2_c00358{left:73.333333pt;}
.x3_c00358{left:80.000000pt;}
.x4_c00358{left:94.666667pt;}
.x5_c00358{left:600.543200pt;}
.x1_c00358{left:699.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.199000;font-style: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);}
.m1_c00359{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls1_c00359{letter-spacing:0.000000px;}
.ls0_c00359{letter-spacing:0.720000px;}
.ls2_c00359{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws6_c00359{word-spacing:-5.184000px;}
.wse_c00359{word-spacing:-2.952000px;}
.wsa_c00359{word-spacing:-2.808000px;}
.ws9_c00359{word-spacing:-1.800000px;}
.ws2_c00359{word-spacing:-0.840000px;}
.ws1_c00359{word-spacing:0.000000px;}
.ws4_c00359{word-spacing:0.288000px;}
.ws8_c00359{word-spacing:1.224000px;}
.ws7_c00359{word-spacing:1.440000px;}
.wsc_c00359{word-spacing:2.016000px;}
.ws5_c00359{word-spacing:2.664000px;}
.wsb_c00359{word-spacing:3.816000px;}
.wsd_c00359{word-spacing:8.496000px;}
.ws3_c00359{word-spacing:10.368000px;}
._0_c00359{margin-left:-480.336600px;}
._1_c00359{margin-left:-4.200000px;}
._2_c00359{margin-left:-1.440000px;}
.fc2_c00359{color:rgb(32,32,32);}
.fc1_c00359{color:rgb(232,86,17);}
.fc0_c00359{color:rgb(60,60,59);}
.fs1_c00359{font-size:42.000000px;}
.fs0_c00359{font-size:60.000000px;}
.fs3_c00359{font-size:72.000000px;}
.fs2_c00359{font-size:84.000000px;}
.y0_c00359{bottom:0.000000px;}
.y1_c00359{bottom:41.250000px;}
.y11_c00359{bottom:436.310700px;}
.y10_c00359{bottom:466.316700px;}
.yf_c00359{bottom:496.322700px;}
.ye_c00359{bottom:526.328700px;}
.yd_c00359{bottom:556.334700px;}
.yc_c00359{bottom:616.334700px;}
.yb_c00359{bottom:706.286700px;}
.ya_c00359{bottom:736.292700px;}
.y9_c00359{bottom:766.298700px;}
.y8_c00359{bottom:796.304700px;}
.y7_c00359{bottom:826.310700px;}
.y6_c00359{bottom:856.316700px;}
.y5_c00359{bottom:886.322700px;}
.y4_c00359{bottom:916.328700px;}
.y3_c00359{bottom:946.334700px;}
.y2_c00359{bottom:1006.334700px;}
.h2_c00359{height:54.000000px;}
.h4_c00359{height:64.800000px;}
.h3_c00359{height:78.540000px;}
.h0_c00359{height:1262.835000px;}
.h1_c00359{height:1263.000000px;}
.w0_c00359{width:892.914000px;}
.w1_c00359{width:893.250000px;}
.x0_c00359{left:0.000000px;}
.x2_c00359{left:90.000000px;}
.x3_c00359{left:106.500000px;}
.x1_c00359{left:785.603700px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls1_c00359{letter-spacing:0.000000pt;}
.ls0_c00359{letter-spacing:0.640000pt;}
.ls2_c00359{letter-spacing:0.746667pt;}
.ws0_c00359{word-spacing:-9.066667pt;}
.ws6_c00359{word-spacing:-4.608000pt;}
.wse_c00359{word-spacing:-2.624000pt;}
.wsa_c00359{word-spacing:-2.496000pt;}
.ws9_c00359{word-spacing:-1.600000pt;}
.ws2_c00359{word-spacing:-0.746667pt;}
.ws1_c00359{word-spacing:0.000000pt;}
.ws4_c00359{word-spacing:0.256000pt;}
.ws8_c00359{word-spacing:1.088000pt;}
.ws7_c00359{word-spacing:1.280000pt;}
.wsc_c00359{word-spacing:1.792000pt;}
.ws5_c00359{word-spacing:2.368000pt;}
.wsb_c00359{word-spacing:3.392000pt;}
.wsd_c00359{word-spacing:7.552000pt;}
.ws3_c00359{word-spacing:9.216000pt;}
._0_c00359{margin-left:-426.965867pt;}
._1_c00359{margin-left:-3.733333pt;}
._2_c00359{margin-left:-1.280000pt;}
.fs1_c00359{font-size:37.333333pt;}
.fs0_c00359{font-size:53.333333pt;}
.fs3_c00359{font-size:64.000000pt;}
.fs2_c00359{font-size:74.666667pt;}
.y0_c00359{bottom:0.000000pt;}
.y1_c00359{bottom:36.666667pt;}
.y11_c00359{bottom:387.831733pt;}
.y10_c00359{bottom:414.503733pt;}
.yf_c00359{bottom:441.175733pt;}
.ye_c00359{bottom:467.847733pt;}
.yd_c00359{bottom:494.519733pt;}
.yc_c00359{bottom:547.853067pt;}
.yb_c00359{bottom:627.810400pt;}
.ya_c00359{bottom:654.482400pt;}
.y9_c00359{bottom:681.154400pt;}
.y8_c00359{bottom:707.826400pt;}
.y7_c00359{bottom:734.498400pt;}
.y6_c00359{bottom:761.170400pt;}
.y5_c00359{bottom:787.842400pt;}
.y4_c00359{bottom:814.514400pt;}
.y3_c00359{bottom:841.186400pt;}
.y2_c00359{bottom:894.519733pt;}
.h2_c00359{height:48.000000pt;}
.h4_c00359{height:57.600000pt;}
.h3_c00359{height:69.813333pt;}
.h0_c00359{height:1122.520000pt;}
.h1_c00359{height:1122.666667pt;}
.w0_c00359{width:793.701333pt;}
.w1_c00359{width:794.000000pt;}
.x0_c00359{left:0.000000pt;}
.x2_c00359{left:80.000000pt;}
.x3_c00359{left:94.666667pt;}
.x1_c00359{left:698.314400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_73c7dea85163a337c1490c92.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00360;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.161000;font-style: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);}
.m1_c00360{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls4_c00360{letter-spacing:-0.324000px;}
.ls3_c00360{letter-spacing:0.000000px;}
.ls0_c00360{letter-spacing:0.720000px;}
.ls5_c00360{letter-spacing:0.840000px;}
.ls2_c00360{letter-spacing:1.500000px;}
.ls1_c00360{letter-spacing:1.650000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00360{word-spacing:-21.276000px;}
.ws2_c00360{word-spacing:-14.850000px;}
.ws3_c00360{word-spacing:-11.700000px;}
.ws0_c00360{word-spacing:-10.200000px;}
.ws9_c00360{word-spacing:-2.880000px;}
.ws8_c00360{word-spacing:-2.160000px;}
.ws10_c00360{word-spacing:-1.584000px;}
.ws13_c00360{word-spacing:-1.500000px;}
.ws5_c00360{word-spacing:-0.840000px;}
.ws12_c00360{word-spacing:-0.720000px;}
.ws4_c00360{word-spacing:0.000000px;}
.wsf_c00360{word-spacing:2.736000px;}
.wsa_c00360{word-spacing:3.816000px;}
.ws6_c00360{word-spacing:4.176000px;}
.wse_c00360{word-spacing:6.408000px;}
.ws7_c00360{word-spacing:6.624000px;}
.wsc_c00360{word-spacing:9.720000px;}
.wsb_c00360{word-spacing:10.152000px;}
.ws11_c00360{word-spacing:17.568000px;}
.wsd_c00360{word-spacing:21.456000px;}
._0_c00360{margin-left:-480.337200px;}
._4_c00360{margin-left:-6.778800px;}
._5_c00360{margin-left:-5.400000px;}
._1_c00360{margin-left:-4.200000px;}
._3_c00360{margin-left:-2.466000px;}
._2_c00360{margin-left:-1.134000px;}
.fc3_c00360{color:rgb(32,32,32);}
.fc2_c00360{color:rgb(233,83,14);}
.fc1_c00360{color:rgb(232,86,17);}
.fc5_c00360{color:rgb(157,157,156);}
.fc4_c00360{color:rgb(4,97,193);}
.fc0_c00360{color:rgb(60,60,59);}
.fs1_c00360{font-size:42.000000px;}
.fs0_c00360{font-size:60.000000px;}
.fs5_c00360{font-size:66.000000px;}
.fs4_c00360{font-size:72.000000px;}
.fs3_c00360{font-size:84.000000px;}
.fs2_c00360{font-size:108.000000px;}
.y0_c00360{bottom:0.000000px;}
.y1_c00360{bottom:41.250000px;}
.y12_c00360{bottom:346.304700px;}
.y11_c00360{bottom:376.310700px;}
.y10_c00360{bottom:406.316700px;}
.yf_c00360{bottom:436.322700px;}
.ye_c00360{bottom:466.328700px;}
.yd_c00360{bottom:496.334700px;}
.yc_c00360{bottom:556.334700px;}
.yb_c00360{bottom:646.292700px;}
.ya_c00360{bottom:676.298700px;}
.y19_c00360{bottom:676.334700px;}
.y9_c00360{bottom:706.304700px;}
.y18_c00360{bottom:706.334700px;}
.y8_c00360{bottom:736.310700px;}
.y17_c00360{bottom:736.334700px;}
.y7_c00360{bottom:766.316700px;}
.y16_c00360{bottom:766.334700px;}
.y6_c00360{bottom:796.322700px;}
.y15_c00360{bottom:796.334700px;}
.y5_c00360{bottom:826.328700px;}
.y14_c00360{bottom:826.334700px;}
.y4_c00360{bottom:856.334700px;}
.y13_c00360{bottom:856.376100px;}
.y3_c00360{bottom:916.334700px;}
.y2_c00360{bottom:1006.334700px;}
.h6_c00360{height:50.292000px;}
.h2_c00360{height:54.000000px;}
.h5_c00360{height:64.800000px;}
.h4_c00360{height:78.540000px;}
.h3_c00360{height:100.980000px;}
.h0_c00360{height:1262.835000px;}
.h1_c00360{height:1263.000000px;}
.w0_c00360{width:892.914000px;}
.w1_c00360{width:893.250000px;}
.x0_c00360{left:0.000000px;}
.x2_c00360{left:82.500000px;}
.x3_c00360{left:90.000000px;}
.x4_c00360{left:106.500000px;}
.x5_c00360{left:675.611100px;}
.x1_c00360{left:789.263850px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls4_c00360{letter-spacing:-0.288000pt;}
.ls3_c00360{letter-spacing:0.000000pt;}
.ls0_c00360{letter-spacing:0.640000pt;}
.ls5_c00360{letter-spacing:0.746667pt;}
.ls2_c00360{letter-spacing:1.333333pt;}
.ls1_c00360{letter-spacing:1.466667pt;}
.ws1_c00360{word-spacing:-18.912000pt;}
.ws2_c00360{word-spacing:-13.200000pt;}
.ws3_c00360{word-spacing:-10.400000pt;}
.ws0_c00360{word-spacing:-9.066667pt;}
.ws9_c00360{word-spacing:-2.560000pt;}
.ws8_c00360{word-spacing:-1.920000pt;}
.ws10_c00360{word-spacing:-1.408000pt;}
.ws13_c00360{word-spacing:-1.333333pt;}
.ws5_c00360{word-spacing:-0.746667pt;}
.ws12_c00360{word-spacing:-0.640000pt;}
.ws4_c00360{word-spacing:0.000000pt;}
.wsf_c00360{word-spacing:2.432000pt;}
.wsa_c00360{word-spacing:3.392000pt;}
.ws6_c00360{word-spacing:3.712000pt;}
.wse_c00360{word-spacing:5.696000pt;}
.ws7_c00360{word-spacing:5.888000pt;}
.wsc_c00360{word-spacing:8.640000pt;}
.wsb_c00360{word-spacing:9.024000pt;}
.ws11_c00360{word-spacing:15.616000pt;}
.wsd_c00360{word-spacing:19.072000pt;}
._0_c00360{margin-left:-426.966400pt;}
._4_c00360{margin-left:-6.025600pt;}
._5_c00360{margin-left:-4.800000pt;}
._1_c00360{margin-left:-3.733333pt;}
._3_c00360{margin-left:-2.192000pt;}
._2_c00360{margin-left:-1.008000pt;}
.fs1_c00360{font-size:37.333333pt;}
.fs0_c00360{font-size:53.333333pt;}
.fs5_c00360{font-size:58.666667pt;}
.fs4_c00360{font-size:64.000000pt;}
.fs3_c00360{font-size:74.666667pt;}
.fs2_c00360{font-size:96.000000pt;}
.y0_c00360{bottom:0.000000pt;}
.y1_c00360{bottom:36.666667pt;}
.y12_c00360{bottom:307.826400pt;}
.y11_c00360{bottom:334.498400pt;}
.y10_c00360{bottom:361.170400pt;}
.yf_c00360{bottom:387.842400pt;}
.ye_c00360{bottom:414.514400pt;}
.yd_c00360{bottom:441.186400pt;}
.yc_c00360{bottom:494.519733pt;}
.yb_c00360{bottom:574.482400pt;}
.ya_c00360{bottom:601.154400pt;}
.y19_c00360{bottom:601.186400pt;}
.y9_c00360{bottom:627.826400pt;}
.y18_c00360{bottom:627.853067pt;}
.y8_c00360{bottom:654.498400pt;}
.y17_c00360{bottom:654.519733pt;}
.y7_c00360{bottom:681.170400pt;}
.y16_c00360{bottom:681.186400pt;}
.y6_c00360{bottom:707.842400pt;}
.y15_c00360{bottom:707.853067pt;}
.y5_c00360{bottom:734.514400pt;}
.y14_c00360{bottom:734.519733pt;}
.y4_c00360{bottom:761.186400pt;}
.y13_c00360{bottom:761.223200pt;}
.y3_c00360{bottom:814.519733pt;}
.y2_c00360{bottom:894.519733pt;}
.h6_c00360{height:44.704000pt;}
.h2_c00360{height:48.000000pt;}
.h5_c00360{height:57.600000pt;}
.h4_c00360{height:69.813333pt;}
.h3_c00360{height:89.760000pt;}
.h0_c00360{height:1122.520000pt;}
.h1_c00360{height:1122.666667pt;}
.w0_c00360{width:793.701333pt;}
.w1_c00360{width:794.000000pt;}
.x0_c00360{left:0.000000pt;}
.x2_c00360{left:73.333333pt;}
.x3_c00360{left:80.000000pt;}
.x4_c00360{left:94.666667pt;}
.x5_c00360{left:600.543200pt;}
.x1_c00360{left:701.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.199000;font-style: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);}
.m1_c00361{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls1_c00361{letter-spacing:0.000000px;}
.ls0_c00361{letter-spacing:0.720000px;}
.ls2_c00361{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsc_c00361{word-spacing:-1.296000px;}
.ws2_c00361{word-spacing:-0.840000px;}
.ws1_c00361{word-spacing:0.000000px;}
.ws6_c00361{word-spacing:0.576000px;}
.ws7_c00361{word-spacing:2.880000px;}
.wsb_c00361{word-spacing:6.624000px;}
.ws9_c00361{word-spacing:8.784000px;}
.ws5_c00361{word-spacing:8.856000px;}
.ws8_c00361{word-spacing:9.072000px;}
.ws4_c00361{word-spacing:9.360000px;}
.ws3_c00361{word-spacing:13.824000px;}
.wsa_c00361{word-spacing:20.880000px;}
._0_c00361{margin-left:-480.336600px;}
._4_c00361{margin-left:-6.926400px;}
._1_c00361{margin-left:-4.200000px;}
._3_c00361{margin-left:-2.959200px;}
._2_c00361{margin-left:-1.432800px;}
.fc2_c00361{color:rgb(32,32,32);}
.fc1_c00361{color:rgb(232,86,17);}
.fc0_c00361{color:rgb(60,60,59);}
.fs1_c00361{font-size:42.000000px;}
.fs0_c00361{font-size:60.000000px;}
.fs3_c00361{font-size:72.000000px;}
.fs2_c00361{font-size:84.000000px;}
.y0_c00361{bottom:0.000000px;}
.y1_c00361{bottom:41.250000px;}
.y10_c00361{bottom:466.310700px;}
.yf_c00361{bottom:496.316700px;}
.ye_c00361{bottom:526.322700px;}
.yd_c00361{bottom:556.328700px;}
.yc_c00361{bottom:586.334700px;}
.yb_c00361{bottom:646.334700px;}
.ya_c00361{bottom:736.292700px;}
.y9_c00361{bottom:766.298700px;}
.y8_c00361{bottom:796.304700px;}
.y7_c00361{bottom:826.310700px;}
.y6_c00361{bottom:856.316700px;}
.y5_c00361{bottom:886.322700px;}
.y4_c00361{bottom:916.328700px;}
.y3_c00361{bottom:946.334700px;}
.y2_c00361{bottom:1006.334700px;}
.h2_c00361{height:54.000000px;}
.h4_c00361{height:64.800000px;}
.h3_c00361{height:78.540000px;}
.h0_c00361{height:1262.835000px;}
.h1_c00361{height:1263.000000px;}
.w0_c00361{width:892.914000px;}
.w1_c00361{width:893.250000px;}
.x0_c00361{left:0.000000px;}
.x2_c00361{left:90.000000px;}
.x3_c00361{left:106.500000px;}
.x1_c00361{left:786.788700px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls1_c00361{letter-spacing:0.000000pt;}
.ls0_c00361{letter-spacing:0.640000pt;}
.ls2_c00361{letter-spacing:0.746667pt;}
.ws0_c00361{word-spacing:-9.066667pt;}
.wsc_c00361{word-spacing:-1.152000pt;}
.ws2_c00361{word-spacing:-0.746667pt;}
.ws1_c00361{word-spacing:0.000000pt;}
.ws6_c00361{word-spacing:0.512000pt;}
.ws7_c00361{word-spacing:2.560000pt;}
.wsb_c00361{word-spacing:5.888000pt;}
.ws9_c00361{word-spacing:7.808000pt;}
.ws5_c00361{word-spacing:7.872000pt;}
.ws8_c00361{word-spacing:8.064000pt;}
.ws4_c00361{word-spacing:8.320000pt;}
.ws3_c00361{word-spacing:12.288000pt;}
.wsa_c00361{word-spacing:18.560000pt;}
._0_c00361{margin-left:-426.965867pt;}
._4_c00361{margin-left:-6.156800pt;}
._1_c00361{margin-left:-3.733333pt;}
._3_c00361{margin-left:-2.630400pt;}
._2_c00361{margin-left:-1.273600pt;}
.fs1_c00361{font-size:37.333333pt;}
.fs0_c00361{font-size:53.333333pt;}
.fs3_c00361{font-size:64.000000pt;}
.fs2_c00361{font-size:74.666667pt;}
.y0_c00361{bottom:0.000000pt;}
.y1_c00361{bottom:36.666667pt;}
.y10_c00361{bottom:414.498400pt;}
.yf_c00361{bottom:441.170400pt;}
.ye_c00361{bottom:467.842400pt;}
.yd_c00361{bottom:494.514400pt;}
.yc_c00361{bottom:521.186400pt;}
.yb_c00361{bottom:574.519733pt;}
.ya_c00361{bottom:654.482400pt;}
.y9_c00361{bottom:681.154400pt;}
.y8_c00361{bottom:707.826400pt;}
.y7_c00361{bottom:734.498400pt;}
.y6_c00361{bottom:761.170400pt;}
.y5_c00361{bottom:787.842400pt;}
.y4_c00361{bottom:814.514400pt;}
.y3_c00361{bottom:841.186400pt;}
.y2_c00361{bottom:894.519733pt;}
.h2_c00361{height:48.000000pt;}
.h4_c00361{height:57.600000pt;}
.h3_c00361{height:69.813333pt;}
.h0_c00361{height:1122.520000pt;}
.h1_c00361{height:1122.666667pt;}
.w0_c00361{width:793.701333pt;}
.w1_c00361{width:794.000000pt;}
.x0_c00361{left:0.000000pt;}
.x2_c00361{left:80.000000pt;}
.x3_c00361{left:94.666667pt;}
.x1_c00361{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.199000;font-style:normal;font-weight:normal;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_4829a453264cbee9cb480ba0.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00362;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;line-height:1.155000;font-style: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);}
.m1_c00362{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls3_c00362{letter-spacing:-0.360000px;}
.ls2_c00362{letter-spacing:0.000000px;}
.ls0_c00362{letter-spacing:0.864000px;}
.ls1_c00362{letter-spacing:1.200000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00362{word-spacing:-13.104000px;}
.ws5_c00362{word-spacing:-11.400000px;}
.ws0_c00362{word-spacing:-10.200000px;}
.ws4_c00362{word-spacing:-8.880000px;}
.ws3_c00362{word-spacing:-1.200000px;}
.ws2_c00362{word-spacing:0.000000px;}
._0_c00362{margin-left:-480.337200px;}
._4_c00362{margin-left:-10.200000px;}
._1_c00362{margin-left:-4.200000px;}
._3_c00362{margin-left:-3.000000px;}
._2_c00362{margin-left:-1.440000px;}
._6_c00362{width:1.560000px;}
._5_c00362{width:9.480000px;}
.fc3_c00362{color:rgb(255,255,255);}
.fc2_c00362{color:rgb(233,83,14);}
.fc1_c00362{color:rgb(232,86,17);}
.fc0_c00362{color:rgb(60,60,59);}
.fs1_c00362{font-size:42.000000px;}
.fs0_c00362{font-size:60.000000px;}
.fs3_c00362{font-size:72.000000px;}
.fs4_c00362{font-size:120.000000px;}
.fs2_c00362{font-size:360.000000px;}
.y0_c00362{bottom:0.000000px;}
.y1_c00362{bottom:41.250000px;}
.y6_c00362{bottom:664.328700px;}
.y5_c00362{bottom:685.334700px;}
.y4_c00362{bottom:706.340700px;}
.y3_c00362{bottom:752.834700px;}
.yb_c00362{bottom:856.334700px;}
.ya_c00362{bottom:886.334700px;}
.y9_c00362{bottom:916.334700px;}
.y8_c00362{bottom:976.334700px;}
.y7_c00362{bottom:1006.334700px;}
.y2_c00362{bottom:1093.526700px;}
.h2_c00362{height:54.000000px;}
.h5_c00362{height:64.800000px;}
.h4_c00362{height:66.456000px;}
.h7_c00362{height:108.000000px;}
.h6_c00362{height:112.200000px;}
.h3_c00362{height:324.000000px;}
.h0_c00362{height:1262.835000px;}
.h1_c00362{height:1263.000000px;}
.w0_c00362{width:892.914000px;}
.w1_c00362{width:893.250000px;}
.x0_c00362{left:0.000000px;}
.x2_c00362{left:81.290250px;}
.x3_c00362{left:82.393650px;}
.x5_c00362{left:112.287450px;}
.x4_c00362{left:127.393650px;}
.x1_c00362{left:786.638850px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls3_c00362{letter-spacing:-0.320000pt;}
.ls2_c00362{letter-spacing:0.000000pt;}
.ls0_c00362{letter-spacing:0.768000pt;}
.ls1_c00362{letter-spacing:1.066667pt;}
.ws1_c00362{word-spacing:-11.648000pt;}
.ws5_c00362{word-spacing:-10.133333pt;}
.ws0_c00362{word-spacing:-9.066667pt;}
.ws4_c00362{word-spacing:-7.893333pt;}
.ws3_c00362{word-spacing:-1.066667pt;}
.ws2_c00362{word-spacing:0.000000pt;}
._0_c00362{margin-left:-426.966400pt;}
._4_c00362{margin-left:-9.066667pt;}
._1_c00362{margin-left:-3.733333pt;}
._3_c00362{margin-left:-2.666667pt;}
._2_c00362{margin-left:-1.280000pt;}
._6_c00362{width:1.386667pt;}
._5_c00362{width:8.426667pt;}
.fs1_c00362{font-size:37.333333pt;}
.fs0_c00362{font-size:53.333333pt;}
.fs3_c00362{font-size:64.000000pt;}
.fs4_c00362{font-size:106.666667pt;}
.fs2_c00362{font-size:320.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y1_c00362{bottom:36.666667pt;}
.y6_c00362{bottom:590.514400pt;}
.y5_c00362{bottom:609.186400pt;}
.y4_c00362{bottom:627.858400pt;}
.y3_c00362{bottom:669.186400pt;}
.yb_c00362{bottom:761.186400pt;}
.ya_c00362{bottom:787.853067pt;}
.y9_c00362{bottom:814.519733pt;}
.y8_c00362{bottom:867.853067pt;}
.y7_c00362{bottom:894.519733pt;}
.y2_c00362{bottom:972.023733pt;}
.h2_c00362{height:48.000000pt;}
.h5_c00362{height:57.600000pt;}
.h4_c00362{height:59.072000pt;}
.h7_c00362{height:96.000000pt;}
.h6_c00362{height:99.733333pt;}
.h3_c00362{height:288.000000pt;}
.h0_c00362{height:1122.520000pt;}
.h1_c00362{height:1122.666667pt;}
.w0_c00362{width:793.701333pt;}
.w1_c00362{width:794.000000pt;}
.x0_c00362{left:0.000000pt;}
.x2_c00362{left:72.258000pt;}
.x3_c00362{left:73.238800pt;}
.x5_c00362{left:99.811067pt;}
.x4_c00362{left:113.238800pt;}
.x1_c00362{left:699.234533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.199000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.161000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.024000;font-style: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);}
.m1_c00363{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls5_c00363{letter-spacing:-0.540000px;}
.ls4_c00363{letter-spacing:0.000000px;}
.ls0_c00363{letter-spacing:0.720000px;}
.ls1_c00363{letter-spacing:0.840000px;}
.ls3_c00363{letter-spacing:1.500000px;}
.ls2_c00363{letter-spacing:1.650000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00363{word-spacing:-21.060000px;}
.ws2_c00363{word-spacing:-17.640000px;}
.ws3_c00363{word-spacing:-11.700000px;}
.ws0_c00363{word-spacing:-10.200000px;}
.ws12_c00363{word-spacing:-1.500000px;}
.ws5_c00363{word-spacing:-0.840000px;}
.ws7_c00363{word-spacing:-0.144000px;}
.ws4_c00363{word-spacing:0.000000px;}
.wsd_c00363{word-spacing:1.584000px;}
.ws11_c00363{word-spacing:1.800000px;}
.wsf_c00363{word-spacing:4.032000px;}
.ws8_c00363{word-spacing:7.344000px;}
.wsa_c00363{word-spacing:11.736000px;}
.ws9_c00363{word-spacing:13.824000px;}
.ws6_c00363{word-spacing:15.264000px;}
.wse_c00363{word-spacing:18.000000px;}
.ws10_c00363{word-spacing:18.576000px;}
.wsb_c00363{word-spacing:19.512000px;}
.wsc_c00363{word-spacing:19.944000px;}
._0_c00363{margin-left:-480.337200px;}
._3_c00363{margin-left:-7.178400px;}
._1_c00363{margin-left:-4.200000px;}
._2_c00363{margin-left:-1.440000px;}
.fc3_c00363{color:rgb(32,32,32);}
.fc2_c00363{color:rgb(233,83,14);}
.fc1_c00363{color:rgb(232,86,17);}
.fc4_c00363{color:rgb(157,157,156);}
.fc0_c00363{color:rgb(60,60,59);}
.fs1_c00363{font-size:42.000000px;}
.fs0_c00363{font-size:60.000000px;}
.fs5_c00363{font-size:66.000000px;}
.fs4_c00363{font-size:72.000000px;}
.fs3_c00363{font-size:84.000000px;}
.fs2_c00363{font-size:108.000000px;}
.y0_c00363{bottom:0.000000px;}
.y1_c00363{bottom:41.250000px;}
.y14_c00363{bottom:196.310700px;}
.y13_c00363{bottom:226.316700px;}
.y12_c00363{bottom:256.322700px;}
.y11_c00363{bottom:286.328700px;}
.y10_c00363{bottom:316.334700px;}
.yf_c00363{bottom:376.334700px;}
.ye_c00363{bottom:466.322700px;}
.yd_c00363{bottom:496.328700px;}
.yc_c00363{bottom:526.334700px;}
.yb_c00363{bottom:586.334700px;}
.ya_c00363{bottom:676.298700px;}
.y1b_c00363{bottom:676.334700px;}
.y9_c00363{bottom:706.304700px;}
.y1a_c00363{bottom:706.334700px;}
.y8_c00363{bottom:736.310700px;}
.y19_c00363{bottom:736.334700px;}
.y7_c00363{bottom:766.316700px;}
.y18_c00363{bottom:766.334700px;}
.y6_c00363{bottom:796.322700px;}
.y17_c00363{bottom:796.334700px;}
.y5_c00363{bottom:826.328700px;}
.y16_c00363{bottom:826.334700px;}
.y4_c00363{bottom:856.334700px;}
.y15_c00363{bottom:856.376100px;}
.y3_c00363{bottom:916.334700px;}
.y2_c00363{bottom:1006.334700px;}
.h6_c00363{height:50.292000px;}
.h2_c00363{height:54.000000px;}
.h5_c00363{height:64.800000px;}
.h4_c00363{height:78.540000px;}
.h3_c00363{height:100.980000px;}
.h0_c00363{height:1262.835000px;}
.h1_c00363{height:1263.000000px;}
.w0_c00363{width:892.914000px;}
.w1_c00363{width:893.250000px;}
.x0_c00363{left:0.000000px;}
.x2_c00363{left:82.500000px;}
.x3_c00363{left:90.000000px;}
.x4_c00363{left:106.500000px;}
.x5_c00363{left:675.611100px;}
.x1_c00363{left:785.663850px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls5_c00363{letter-spacing:-0.480000pt;}
.ls4_c00363{letter-spacing:0.000000pt;}
.ls0_c00363{letter-spacing:0.640000pt;}
.ls1_c00363{letter-spacing:0.746667pt;}
.ls3_c00363{letter-spacing:1.333333pt;}
.ls2_c00363{letter-spacing:1.466667pt;}
.ws1_c00363{word-spacing:-18.720000pt;}
.ws2_c00363{word-spacing:-15.680000pt;}
.ws3_c00363{word-spacing:-10.400000pt;}
.ws0_c00363{word-spacing:-9.066667pt;}
.ws12_c00363{word-spacing:-1.333333pt;}
.ws5_c00363{word-spacing:-0.746667pt;}
.ws7_c00363{word-spacing:-0.128000pt;}
.ws4_c00363{word-spacing:0.000000pt;}
.wsd_c00363{word-spacing:1.408000pt;}
.ws11_c00363{word-spacing:1.600000pt;}
.wsf_c00363{word-spacing:3.584000pt;}
.ws8_c00363{word-spacing:6.528000pt;}
.wsa_c00363{word-spacing:10.432000pt;}
.ws9_c00363{word-spacing:12.288000pt;}
.ws6_c00363{word-spacing:13.568000pt;}
.wse_c00363{word-spacing:16.000000pt;}
.ws10_c00363{word-spacing:16.512000pt;}
.wsb_c00363{word-spacing:17.344000pt;}
.wsc_c00363{word-spacing:17.728000pt;}
._0_c00363{margin-left:-426.966400pt;}
._3_c00363{margin-left:-6.380800pt;}
._1_c00363{margin-left:-3.733333pt;}
._2_c00363{margin-left:-1.280000pt;}
.fs1_c00363{font-size:37.333333pt;}
.fs0_c00363{font-size:53.333333pt;}
.fs5_c00363{font-size:58.666667pt;}
.fs4_c00363{font-size:64.000000pt;}
.fs3_c00363{font-size:74.666667pt;}
.fs2_c00363{font-size:96.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y1_c00363{bottom:36.666667pt;}
.y14_c00363{bottom:174.498400pt;}
.y13_c00363{bottom:201.170400pt;}
.y12_c00363{bottom:227.842400pt;}
.y11_c00363{bottom:254.514400pt;}
.y10_c00363{bottom:281.186400pt;}
.yf_c00363{bottom:334.519733pt;}
.ye_c00363{bottom:414.509067pt;}
.yd_c00363{bottom:441.181067pt;}
.yc_c00363{bottom:467.853067pt;}
.yb_c00363{bottom:521.186400pt;}
.ya_c00363{bottom:601.154400pt;}
.y1b_c00363{bottom:601.186400pt;}
.y9_c00363{bottom:627.826400pt;}
.y1a_c00363{bottom:627.853067pt;}
.y8_c00363{bottom:654.498400pt;}
.y19_c00363{bottom:654.519733pt;}
.y7_c00363{bottom:681.170400pt;}
.y18_c00363{bottom:681.186400pt;}
.y6_c00363{bottom:707.842400pt;}
.y17_c00363{bottom:707.853067pt;}
.y5_c00363{bottom:734.514400pt;}
.y16_c00363{bottom:734.519733pt;}
.y4_c00363{bottom:761.186400pt;}
.y15_c00363{bottom:761.223200pt;}
.y3_c00363{bottom:814.519733pt;}
.y2_c00363{bottom:894.519733pt;}
.h6_c00363{height:44.704000pt;}
.h2_c00363{height:48.000000pt;}
.h5_c00363{height:57.600000pt;}
.h4_c00363{height:69.813333pt;}
.h3_c00363{height:89.760000pt;}
.h0_c00363{height:1122.520000pt;}
.h1_c00363{height:1122.666667pt;}
.w0_c00363{width:793.701333pt;}
.w1_c00363{width:794.000000pt;}
.x0_c00363{left:0.000000pt;}
.x2_c00363{left:73.333333pt;}
.x3_c00363{left:80.000000pt;}
.x4_c00363{left:94.666667pt;}
.x5_c00363{left:600.543200pt;}
.x1_c00363{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls1_c00364{letter-spacing:0.000000px;}
.ls0_c00364{letter-spacing:0.720000px;}
.ls2_c00364{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00364{word-spacing:-0.840000px;}
.ws6_c00364{word-spacing:-0.216000px;}
.ws1_c00364{word-spacing:0.000000px;}
.ws5_c00364{word-spacing:2.952000px;}
.ws7_c00364{word-spacing:7.920000px;}
.ws4_c00364{word-spacing:8.352000px;}
.ws3_c00364{word-spacing:15.768000px;}
._0_c00364{margin-left:-480.336600px;}
._1_c00364{margin-left:-4.200000px;}
._2_c00364{margin-left:-1.476000px;}
.fc2_c00364{color:rgb(32,32,32);}
.fc1_c00364{color:rgb(232,86,17);}
.fc0_c00364{color:rgb(60,60,59);}
.fs1_c00364{font-size:42.000000px;}
.fs0_c00364{font-size:60.000000px;}
.fs3_c00364{font-size:72.000000px;}
.fs2_c00364{font-size:84.000000px;}
.y0_c00364{bottom:0.000000px;}
.y1_c00364{bottom:41.250000px;}
.ya_c00364{bottom:646.316700px;}
.y9_c00364{bottom:676.322700px;}
.y8_c00364{bottom:706.328700px;}
.y7_c00364{bottom:736.334700px;}
.y6_c00364{bottom:796.334700px;}
.y5_c00364{bottom:886.322700px;}
.y4_c00364{bottom:916.328700px;}
.y3_c00364{bottom:946.334700px;}
.y2_c00364{bottom:1006.334700px;}
.h2_c00364{height:54.000000px;}
.h4_c00364{height:64.800000px;}
.h3_c00364{height:78.540000px;}
.h0_c00364{height:1262.835000px;}
.h1_c00364{height:1263.000000px;}
.w0_c00364{width:892.914000px;}
.w1_c00364{width:893.250000px;}
.x0_c00364{left:0.000000px;}
.x2_c00364{left:90.000000px;}
.x3_c00364{left:106.500000px;}
.x1_c00364{left:786.713700px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls1_c00364{letter-spacing:0.000000pt;}
.ls0_c00364{letter-spacing:0.640000pt;}
.ls2_c00364{letter-spacing:0.746667pt;}
.ws0_c00364{word-spacing:-9.066667pt;}
.ws2_c00364{word-spacing:-0.746667pt;}
.ws6_c00364{word-spacing:-0.192000pt;}
.ws1_c00364{word-spacing:0.000000pt;}
.ws5_c00364{word-spacing:2.624000pt;}
.ws7_c00364{word-spacing:7.040000pt;}
.ws4_c00364{word-spacing:7.424000pt;}
.ws3_c00364{word-spacing:14.016000pt;}
._0_c00364{margin-left:-426.965867pt;}
._1_c00364{margin-left:-3.733333pt;}
._2_c00364{margin-left:-1.312000pt;}
.fs1_c00364{font-size:37.333333pt;}
.fs0_c00364{font-size:53.333333pt;}
.fs3_c00364{font-size:64.000000pt;}
.fs2_c00364{font-size:74.666667pt;}
.y0_c00364{bottom:0.000000pt;}
.y1_c00364{bottom:36.666667pt;}
.ya_c00364{bottom:574.503733pt;}
.y9_c00364{bottom:601.175733pt;}
.y8_c00364{bottom:627.847733pt;}
.y7_c00364{bottom:654.519733pt;}
.y6_c00364{bottom:707.853067pt;}
.y5_c00364{bottom:787.842400pt;}
.y4_c00364{bottom:814.514400pt;}
.y3_c00364{bottom:841.186400pt;}
.y2_c00364{bottom:894.519733pt;}
.h2_c00364{height:48.000000pt;}
.h4_c00364{height:57.600000pt;}
.h3_c00364{height:69.813333pt;}
.h0_c00364{height:1122.520000pt;}
.h1_c00364{height:1122.666667pt;}
.w0_c00364{width:793.701333pt;}
.w1_c00364{width:794.000000pt;}
.x0_c00364{left:0.000000pt;}
.x2_c00364{left:80.000000pt;}
.x3_c00364{left:94.666667pt;}
.x1_c00364{left:699.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.199000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.024000;font-style: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);}
.m1_c00365{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls5_c00365{letter-spacing:-0.324000px;}
.ls4_c00365{letter-spacing:0.000000px;}
.ls0_c00365{letter-spacing:0.720000px;}
.ls1_c00365{letter-spacing:0.840000px;}
.ls3_c00365{letter-spacing:1.500000px;}
.ls2_c00365{letter-spacing:1.650000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00365{word-spacing:-21.276000px;}
.ws2_c00365{word-spacing:-17.640000px;}
.ws3_c00365{word-spacing:-14.850000px;}
.ws0_c00365{word-spacing:-10.200000px;}
.wsd_c00365{word-spacing:-1.872000px;}
.wsf_c00365{word-spacing:-1.500000px;}
.wsc_c00365{word-spacing:-1.224000px;}
.ws5_c00365{word-spacing:-0.840000px;}
.ws9_c00365{word-spacing:-0.720000px;}
.ws4_c00365{word-spacing:0.000000px;}
.ws6_c00365{word-spacing:2.376000px;}
.wsb_c00365{word-spacing:3.168000px;}
.wse_c00365{word-spacing:3.312000px;}
.wsa_c00365{word-spacing:4.536000px;}
.ws8_c00365{word-spacing:8.640000px;}
.ws7_c00365{word-spacing:11.952000px;}
._0_c00365{margin-left:-480.336600px;}
._4_c00365{margin-left:-6.458400px;}
._1_c00365{margin-left:-4.200000px;}
._3_c00365{margin-left:-2.160000px;}
._2_c00365{margin-left:-1.134000px;}
.fc3_c00365{color:rgb(32,32,32);}
.fc2_c00365{color:rgb(233,83,14);}
.fc1_c00365{color:rgb(232,86,17);}
.fc4_c00365{color:rgb(157,157,156);}
.fc0_c00365{color:rgb(60,60,59);}
.fs1_c00365{font-size:42.000000px;}
.fs0_c00365{font-size:60.000000px;}
.fs5_c00365{font-size:66.000000px;}
.fs4_c00365{font-size:72.000000px;}
.fs3_c00365{font-size:84.000000px;}
.fs2_c00365{font-size:108.000000px;}
.y0_c00365{bottom:0.000000px;}
.y1_c00365{bottom:41.250000px;}
.y11_c00365{bottom:286.316700px;}
.y10_c00365{bottom:316.322700px;}
.yf_c00365{bottom:346.328700px;}
.ye_c00365{bottom:376.334700px;}
.yd_c00365{bottom:436.334700px;}
.yc_c00365{bottom:526.322700px;}
.yb_c00365{bottom:556.328700px;}
.ya_c00365{bottom:586.334700px;}
.y9_c00365{bottom:646.334700px;}
.y17_c00365{bottom:706.334700px;}
.y8_c00365{bottom:736.310700px;}
.y16_c00365{bottom:736.334700px;}
.y7_c00365{bottom:766.316700px;}
.y15_c00365{bottom:766.334700px;}
.y6_c00365{bottom:796.322700px;}
.y14_c00365{bottom:796.334700px;}
.y5_c00365{bottom:826.328700px;}
.y13_c00365{bottom:826.334700px;}
.y4_c00365{bottom:856.334700px;}
.y12_c00365{bottom:856.376100px;}
.y3_c00365{bottom:916.334700px;}
.y2_c00365{bottom:1006.334700px;}
.h6_c00365{height:50.292000px;}
.h2_c00365{height:54.000000px;}
.h5_c00365{height:64.800000px;}
.h4_c00365{height:78.540000px;}
.h3_c00365{height:100.980000px;}
.h0_c00365{height:1262.835000px;}
.h1_c00365{height:1263.000000px;}
.w0_c00365{width:892.914000px;}
.w1_c00365{width:893.250000px;}
.x0_c00365{left:0.000000px;}
.x2_c00365{left:82.500000px;}
.x3_c00365{left:90.000000px;}
.x4_c00365{left:106.500000px;}
.x5_c00365{left:675.611100px;}
.x1_c00365{left:785.588700px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls5_c00365{letter-spacing:-0.288000pt;}
.ls4_c00365{letter-spacing:0.000000pt;}
.ls0_c00365{letter-spacing:0.640000pt;}
.ls1_c00365{letter-spacing:0.746667pt;}
.ls3_c00365{letter-spacing:1.333333pt;}
.ls2_c00365{letter-spacing:1.466667pt;}
.ws1_c00365{word-spacing:-18.912000pt;}
.ws2_c00365{word-spacing:-15.680000pt;}
.ws3_c00365{word-spacing:-13.200000pt;}
.ws0_c00365{word-spacing:-9.066667pt;}
.wsd_c00365{word-spacing:-1.664000pt;}
.wsf_c00365{word-spacing:-1.333333pt;}
.wsc_c00365{word-spacing:-1.088000pt;}
.ws5_c00365{word-spacing:-0.746667pt;}
.ws9_c00365{word-spacing:-0.640000pt;}
.ws4_c00365{word-spacing:0.000000pt;}
.ws6_c00365{word-spacing:2.112000pt;}
.wsb_c00365{word-spacing:2.816000pt;}
.wse_c00365{word-spacing:2.944000pt;}
.wsa_c00365{word-spacing:4.032000pt;}
.ws8_c00365{word-spacing:7.680000pt;}
.ws7_c00365{word-spacing:10.624000pt;}
._0_c00365{margin-left:-426.965867pt;}
._4_c00365{margin-left:-5.740800pt;}
._1_c00365{margin-left:-3.733333pt;}
._3_c00365{margin-left:-1.920000pt;}
._2_c00365{margin-left:-1.008000pt;}
.fs1_c00365{font-size:37.333333pt;}
.fs0_c00365{font-size:53.333333pt;}
.fs5_c00365{font-size:58.666667pt;}
.fs4_c00365{font-size:64.000000pt;}
.fs3_c00365{font-size:74.666667pt;}
.fs2_c00365{font-size:96.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y1_c00365{bottom:36.666667pt;}
.y11_c00365{bottom:254.503733pt;}
.y10_c00365{bottom:281.175733pt;}
.yf_c00365{bottom:307.847733pt;}
.ye_c00365{bottom:334.519733pt;}
.yd_c00365{bottom:387.853067pt;}
.yc_c00365{bottom:467.842400pt;}
.yb_c00365{bottom:494.514400pt;}
.ya_c00365{bottom:521.186400pt;}
.y9_c00365{bottom:574.519733pt;}
.y17_c00365{bottom:627.853067pt;}
.y8_c00365{bottom:654.498400pt;}
.y16_c00365{bottom:654.519733pt;}
.y7_c00365{bottom:681.170400pt;}
.y15_c00365{bottom:681.186400pt;}
.y6_c00365{bottom:707.842400pt;}
.y14_c00365{bottom:707.853067pt;}
.y5_c00365{bottom:734.514400pt;}
.y13_c00365{bottom:734.519733pt;}
.y4_c00365{bottom:761.186400pt;}
.y12_c00365{bottom:761.223200pt;}
.y3_c00365{bottom:814.519733pt;}
.y2_c00365{bottom:894.519733pt;}
.h6_c00365{height:44.704000pt;}
.h2_c00365{height:48.000000pt;}
.h5_c00365{height:57.600000pt;}
.h4_c00365{height:69.813333pt;}
.h3_c00365{height:89.760000pt;}
.h0_c00365{height:1122.520000pt;}
.h1_c00365{height:1122.666667pt;}
.w0_c00365{width:793.701333pt;}
.w1_c00365{width:794.000000pt;}
.x0_c00365{left:0.000000pt;}
.x2_c00365{left:73.333333pt;}
.x3_c00365{left:80.000000pt;}
.x4_c00365{left:94.666667pt;}
.x5_c00365{left:600.543200pt;}
.x1_c00365{left:698.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.199000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.161000;font-style: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);}
.m1_c00366{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls2_c00366{letter-spacing:0.000000px;}
.ls1_c00366{letter-spacing:0.720000px;}
.ls0_c00366{letter-spacing:0.840000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00366{word-spacing:-17.640000px;}
.ws0_c00366{word-spacing:-10.200000px;}
.ws8_c00366{word-spacing:-2.016000px;}
.ws4_c00366{word-spacing:-0.840000px;}
.ws2_c00366{word-spacing:0.000000px;}
.ws5_c00366{word-spacing:11.520000px;}
.ws6_c00366{word-spacing:13.464000px;}
.ws7_c00366{word-spacing:14.400000px;}
.ws3_c00366{word-spacing:18.072000px;}
._0_c00366{margin-left:-480.336600px;}
._1_c00366{margin-left:-4.200000px;}
._3_c00366{margin-left:-2.152800px;}
._2_c00366{margin-left:-1.080000px;}
.fc2_c00366{color:rgb(32,32,32);}
.fc1_c00366{color:rgb(232,86,17);}
.fc3_c00366{color:rgb(157,157,156);}
.fc0_c00366{color:rgb(60,60,59);}
.fs1_c00366{font-size:42.000000px;}
.fs0_c00366{font-size:60.000000px;}
.fs3_c00366{font-size:72.000000px;}
.fs2_c00366{font-size:84.000000px;}
.y0_c00366{bottom:0.000000px;}
.y1_c00366{bottom:41.250000px;}
.yb_c00366{bottom:586.334700px;}
.ya_c00366{bottom:646.316700px;}
.y9_c00366{bottom:676.322700px;}
.y8_c00366{bottom:706.328700px;}
.y7_c00366{bottom:736.334700px;}
.y6_c00366{bottom:796.334700px;}
.y5_c00366{bottom:886.322700px;}
.y4_c00366{bottom:916.328700px;}
.y3_c00366{bottom:946.334700px;}
.y2_c00366{bottom:1006.334700px;}
.h2_c00366{height:54.000000px;}
.h4_c00366{height:64.800000px;}
.h3_c00366{height:78.540000px;}
.h0_c00366{height:1262.835000px;}
.h1_c00366{height:1263.000000px;}
.w0_c00366{width:892.914000px;}
.w1_c00366{width:893.250000px;}
.x0_c00366{left:0.000000px;}
.x2_c00366{left:90.000000px;}
.x3_c00366{left:106.500000px;}
.x4_c00366{left:112.500000px;}
.x1_c00366{left:787.688700px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls2_c00366{letter-spacing:0.000000pt;}
.ls1_c00366{letter-spacing:0.640000pt;}
.ls0_c00366{letter-spacing:0.746667pt;}
.ws1_c00366{word-spacing:-15.680000pt;}
.ws0_c00366{word-spacing:-9.066667pt;}
.ws8_c00366{word-spacing:-1.792000pt;}
.ws4_c00366{word-spacing:-0.746667pt;}
.ws2_c00366{word-spacing:0.000000pt;}
.ws5_c00366{word-spacing:10.240000pt;}
.ws6_c00366{word-spacing:11.968000pt;}
.ws7_c00366{word-spacing:12.800000pt;}
.ws3_c00366{word-spacing:16.064000pt;}
._0_c00366{margin-left:-426.965867pt;}
._1_c00366{margin-left:-3.733333pt;}
._3_c00366{margin-left:-1.913600pt;}
._2_c00366{margin-left:-0.960000pt;}
.fs1_c00366{font-size:37.333333pt;}
.fs0_c00366{font-size:53.333333pt;}
.fs3_c00366{font-size:64.000000pt;}
.fs2_c00366{font-size:74.666667pt;}
.y0_c00366{bottom:0.000000pt;}
.y1_c00366{bottom:36.666667pt;}
.yb_c00366{bottom:521.186400pt;}
.ya_c00366{bottom:574.503733pt;}
.y9_c00366{bottom:601.175733pt;}
.y8_c00366{bottom:627.847733pt;}
.y7_c00366{bottom:654.519733pt;}
.y6_c00366{bottom:707.853067pt;}
.y5_c00366{bottom:787.842400pt;}
.y4_c00366{bottom:814.514400pt;}
.y3_c00366{bottom:841.186400pt;}
.y2_c00366{bottom:894.519733pt;}
.h2_c00366{height:48.000000pt;}
.h4_c00366{height:57.600000pt;}
.h3_c00366{height:69.813333pt;}
.h0_c00366{height:1122.520000pt;}
.h1_c00366{height:1122.666667pt;}
.w0_c00366{width:793.701333pt;}
.w1_c00366{width:794.000000pt;}
.x0_c00366{left:0.000000pt;}
.x2_c00366{left:80.000000pt;}
.x3_c00366{left:94.666667pt;}
.x4_c00366{left:100.000000pt;}
.x1_c00366{left:700.167733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.185000;font-style:normal;font-weight:normal;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_33c67a7a21b3428d95d6a908.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:1.155000;font-style: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);}
.m1_c00367{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls3_c00367{letter-spacing:-0.648000px;}
.ls2_c00367{letter-spacing:0.000000px;}
.ls0_c00367{letter-spacing:0.864000px;}
.ls1_c00367{letter-spacing:1.200000px;}
.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;}
}
.ws2_c00367{word-spacing:-13.104000px;}
.wsa_c00367{word-spacing:-12.240000px;}
.ws1_c00367{word-spacing:-11.592000px;}
.ws0_c00367{word-spacing:-10.200000px;}
.wsb_c00367{word-spacing:-6.720000px;}
.ws8_c00367{word-spacing:-6.696000px;}
.ws7_c00367{word-spacing:-6.264000px;}
.ws5_c00367{word-spacing:-4.104000px;}
.ws4_c00367{word-spacing:-3.528000px;}
.ws9_c00367{word-spacing:-1.440000px;}
.ws6_c00367{word-spacing:-0.864000px;}
.ws3_c00367{word-spacing:0.000000px;}
._0_c00367{margin-left:-480.337200px;}
._8_c00367{margin-left:-16.800000px;}
._4_c00367{margin-left:-13.240800px;}
._3_c00367{margin-left:-6.480000px;}
._1_c00367{margin-left:-4.200000px;}
._6_c00367{margin-left:-2.520000px;}
._2_c00367{margin-left:-1.440000px;}
._5_c00367{width:1.440000px;}
._7_c00367{width:9.840000px;}
.fc3_c00367{color:rgb(255,255,255);}
.fc2_c00367{color:rgb(233,83,14);}
.fc1_c00367{color:rgb(232,86,17);}
.fc0_c00367{color:rgb(60,60,59);}
.fs1_c00367{font-size:42.000000px;}
.fs0_c00367{font-size:60.000000px;}
.fs3_c00367{font-size:72.000000px;}
.fs4_c00367{font-size:120.000000px;}
.fs2_c00367{font-size:360.000000px;}
.y0_c00367{bottom:0.000000px;}
.y1_c00367{bottom:41.250000px;}
.yf_c00367{bottom:394.274700px;}
.ye_c00367{bottom:415.280700px;}
.yd_c00367{bottom:436.286700px;}
.yc_c00367{bottom:484.292700px;}
.yb_c00367{bottom:505.298700px;}
.ya_c00367{bottom:526.304700px;}
.y9_c00367{bottom:574.310700px;}
.y8_c00367{bottom:595.316700px;}
.y7_c00367{bottom:616.322700px;}
.y6_c00367{bottom:664.328700px;}
.y5_c00367{bottom:685.334700px;}
.y4_c00367{bottom:706.340700px;}
.y3_c00367{bottom:752.834700px;}
.y12_c00367{bottom:946.334700px;}
.y11_c00367{bottom:976.334700px;}
.y10_c00367{bottom:1006.334700px;}
.y2_c00367{bottom:1093.526700px;}
.h2_c00367{height:54.000000px;}
.h5_c00367{height:64.800000px;}
.h4_c00367{height:66.456000px;}
.h6_c00367{height:112.200000px;}
.h3_c00367{height:324.000000px;}
.h0_c00367{height:1262.835000px;}
.h1_c00367{height:1263.000000px;}
.w0_c00367{width:892.914000px;}
.w1_c00367{width:893.250000px;}
.x0_c00367{left:0.000000px;}
.x2_c00367{left:81.290250px;}
.x3_c00367{left:82.393650px;}
.x5_c00367{left:112.287450px;}
.x4_c00367{left:127.393650px;}
.x1_c00367{left:785.663850px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls3_c00367{letter-spacing:-0.576000pt;}
.ls2_c00367{letter-spacing:0.000000pt;}
.ls0_c00367{letter-spacing:0.768000pt;}
.ls1_c00367{letter-spacing:1.066667pt;}
.ws2_c00367{word-spacing:-11.648000pt;}
.wsa_c00367{word-spacing:-10.880000pt;}
.ws1_c00367{word-spacing:-10.304000pt;}
.ws0_c00367{word-spacing:-9.066667pt;}
.wsb_c00367{word-spacing:-5.973333pt;}
.ws8_c00367{word-spacing:-5.952000pt;}
.ws7_c00367{word-spacing:-5.568000pt;}
.ws5_c00367{word-spacing:-3.648000pt;}
.ws4_c00367{word-spacing:-3.136000pt;}
.ws9_c00367{word-spacing:-1.280000pt;}
.ws6_c00367{word-spacing:-0.768000pt;}
.ws3_c00367{word-spacing:0.000000pt;}
._0_c00367{margin-left:-426.966400pt;}
._8_c00367{margin-left:-14.933333pt;}
._4_c00367{margin-left:-11.769600pt;}
._3_c00367{margin-left:-5.760000pt;}
._1_c00367{margin-left:-3.733333pt;}
._6_c00367{margin-left:-2.240000pt;}
._2_c00367{margin-left:-1.280000pt;}
._5_c00367{width:1.280000pt;}
._7_c00367{width:8.746667pt;}
.fs1_c00367{font-size:37.333333pt;}
.fs0_c00367{font-size:53.333333pt;}
.fs3_c00367{font-size:64.000000pt;}
.fs4_c00367{font-size:106.666667pt;}
.fs2_c00367{font-size:320.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y1_c00367{bottom:36.666667pt;}
.yf_c00367{bottom:350.466400pt;}
.ye_c00367{bottom:369.138400pt;}
.yd_c00367{bottom:387.810400pt;}
.yc_c00367{bottom:430.482400pt;}
.yb_c00367{bottom:449.154400pt;}
.ya_c00367{bottom:467.826400pt;}
.y9_c00367{bottom:510.498400pt;}
.y8_c00367{bottom:529.170400pt;}
.y7_c00367{bottom:547.842400pt;}
.y6_c00367{bottom:590.514400pt;}
.y5_c00367{bottom:609.186400pt;}
.y4_c00367{bottom:627.858400pt;}
.y3_c00367{bottom:669.186400pt;}
.y12_c00367{bottom:841.186400pt;}
.y11_c00367{bottom:867.853067pt;}
.y10_c00367{bottom:894.519733pt;}
.y2_c00367{bottom:972.023733pt;}
.h2_c00367{height:48.000000pt;}
.h5_c00367{height:57.600000pt;}
.h4_c00367{height:59.072000pt;}
.h6_c00367{height:99.733333pt;}
.h3_c00367{height:288.000000pt;}
.h0_c00367{height:1122.520000pt;}
.h1_c00367{height:1122.666667pt;}
.w0_c00367{width:793.701333pt;}
.w1_c00367{width:794.000000pt;}
.x0_c00367{left:0.000000pt;}
.x2_c00367{left:72.258000pt;}
.x3_c00367{left:73.238800pt;}
.x5_c00367{left:99.811067pt;}
.x4_c00367{left:113.238800pt;}
.x1_c00367{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.161000;font-style: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);}
.m1_c00368{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls5_c00368{letter-spacing:-0.540000px;}
.ls4_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:0.720000px;}
.ls1_c00368{letter-spacing:0.840000px;}
.ls3_c00368{letter-spacing:1.500000px;}
.ls2_c00368{letter-spacing:1.650000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00368{word-spacing:-21.060000px;}
.ws2_c00368{word-spacing:-17.640000px;}
.ws0_c00368{word-spacing:-10.200000px;}
.ws11_c00368{word-spacing:-1.500000px;}
.ws4_c00368{word-spacing:-0.840000px;}
.ws3_c00368{word-spacing:0.000000px;}
.wsc_c00368{word-spacing:0.720000px;}
.ws10_c00368{word-spacing:2.736000px;}
.wsf_c00368{word-spacing:3.168000px;}
.wsd_c00368{word-spacing:4.320000px;}
.ws6_c00368{word-spacing:7.272000px;}
.wsa_c00368{word-spacing:7.560000px;}
.ws8_c00368{word-spacing:8.352000px;}
.ws9_c00368{word-spacing:10.296000px;}
.wse_c00368{word-spacing:11.664000px;}
.ws7_c00368{word-spacing:13.608000px;}
.ws5_c00368{word-spacing:13.824000px;}
.wsb_c00368{word-spacing:15.984000px;}
._0_c00368{margin-left:-480.336600px;}
._4_c00368{margin-left:-6.480000px;}
._1_c00368{margin-left:-4.200000px;}
._3_c00368{margin-left:-2.872800px;}
._2_c00368{margin-left:-1.440000px;}
._6_c00368{width:1.274400px;}
._5_c00368{width:2.692800px;}
.fc3_c00368{color:rgb(32,32,32);}
.fc2_c00368{color:rgb(233,83,14);}
.fc1_c00368{color:rgb(232,86,17);}
.fc4_c00368{color:rgb(157,157,156);}
.fc0_c00368{color:rgb(60,60,59);}
.fs1_c00368{font-size:42.000000px;}
.fs0_c00368{font-size:60.000000px;}
.fs5_c00368{font-size:66.000000px;}
.fs4_c00368{font-size:72.000000px;}
.fs3_c00368{font-size:84.000000px;}
.fs2_c00368{font-size:108.000000px;}
.y0_c00368{bottom:0.000000px;}
.y1_c00368{bottom:41.250000px;}
.y14_c00368{bottom:196.316700px;}
.y13_c00368{bottom:226.322700px;}
.y12_c00368{bottom:256.328700px;}
.y11_c00368{bottom:286.334700px;}
.y10_c00368{bottom:346.334700px;}
.yf_c00368{bottom:436.316700px;}
.ye_c00368{bottom:466.322700px;}
.yd_c00368{bottom:496.328700px;}
.yc_c00368{bottom:526.334700px;}
.yb_c00368{bottom:586.334700px;}
.ya_c00368{bottom:676.298700px;}
.y9_c00368{bottom:706.304700px;}
.y8_c00368{bottom:736.310700px;}
.y19_c00368{bottom:736.334700px;}
.y7_c00368{bottom:766.316700px;}
.y18_c00368{bottom:766.334700px;}
.y6_c00368{bottom:796.322700px;}
.y17_c00368{bottom:796.334700px;}
.y5_c00368{bottom:826.328700px;}
.y16_c00368{bottom:826.334700px;}
.y4_c00368{bottom:856.334700px;}
.y15_c00368{bottom:856.376100px;}
.y3_c00368{bottom:916.334700px;}
.y2_c00368{bottom:1006.334700px;}
.h6_c00368{height:50.292000px;}
.h2_c00368{height:54.000000px;}
.h5_c00368{height:64.800000px;}
.h4_c00368{height:78.540000px;}
.h3_c00368{height:100.980000px;}
.h0_c00368{height:1262.835000px;}
.h1_c00368{height:1263.000000px;}
.w0_c00368{width:892.914000px;}
.w1_c00368{width:893.250000px;}
.x0_c00368{left:0.000000px;}
.x2_c00368{left:82.500000px;}
.x3_c00368{left:90.000000px;}
.x4_c00368{left:106.500000px;}
.x5_c00368{left:675.611100px;}
.x1_c00368{left:785.588700px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls5_c00368{letter-spacing:-0.480000pt;}
.ls4_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:0.640000pt;}
.ls1_c00368{letter-spacing:0.746667pt;}
.ls3_c00368{letter-spacing:1.333333pt;}
.ls2_c00368{letter-spacing:1.466667pt;}
.ws1_c00368{word-spacing:-18.720000pt;}
.ws2_c00368{word-spacing:-15.680000pt;}
.ws0_c00368{word-spacing:-9.066667pt;}
.ws11_c00368{word-spacing:-1.333333pt;}
.ws4_c00368{word-spacing:-0.746667pt;}
.ws3_c00368{word-spacing:0.000000pt;}
.wsc_c00368{word-spacing:0.640000pt;}
.ws10_c00368{word-spacing:2.432000pt;}
.wsf_c00368{word-spacing:2.816000pt;}
.wsd_c00368{word-spacing:3.840000pt;}
.ws6_c00368{word-spacing:6.464000pt;}
.wsa_c00368{word-spacing:6.720000pt;}
.ws8_c00368{word-spacing:7.424000pt;}
.ws9_c00368{word-spacing:9.152000pt;}
.wse_c00368{word-spacing:10.368000pt;}
.ws7_c00368{word-spacing:12.096000pt;}
.ws5_c00368{word-spacing:12.288000pt;}
.wsb_c00368{word-spacing:14.208000pt;}
._0_c00368{margin-left:-426.965867pt;}
._4_c00368{margin-left:-5.760000pt;}
._1_c00368{margin-left:-3.733333pt;}
._3_c00368{margin-left:-2.553600pt;}
._2_c00368{margin-left:-1.280000pt;}
._6_c00368{width:1.132800pt;}
._5_c00368{width:2.393600pt;}
.fs1_c00368{font-size:37.333333pt;}
.fs0_c00368{font-size:53.333333pt;}
.fs5_c00368{font-size:58.666667pt;}
.fs4_c00368{font-size:64.000000pt;}
.fs3_c00368{font-size:74.666667pt;}
.fs2_c00368{font-size:96.000000pt;}
.y0_c00368{bottom:0.000000pt;}
.y1_c00368{bottom:36.666667pt;}
.y14_c00368{bottom:174.503733pt;}
.y13_c00368{bottom:201.175733pt;}
.y12_c00368{bottom:227.847733pt;}
.y11_c00368{bottom:254.519733pt;}
.y10_c00368{bottom:307.853067pt;}
.yf_c00368{bottom:387.837067pt;}
.ye_c00368{bottom:414.509067pt;}
.yd_c00368{bottom:441.181067pt;}
.yc_c00368{bottom:467.853067pt;}
.yb_c00368{bottom:521.186400pt;}
.ya_c00368{bottom:601.154400pt;}
.y9_c00368{bottom:627.826400pt;}
.y8_c00368{bottom:654.498400pt;}
.y19_c00368{bottom:654.519733pt;}
.y7_c00368{bottom:681.170400pt;}
.y18_c00368{bottom:681.186400pt;}
.y6_c00368{bottom:707.842400pt;}
.y17_c00368{bottom:707.853067pt;}
.y5_c00368{bottom:734.514400pt;}
.y16_c00368{bottom:734.519733pt;}
.y4_c00368{bottom:761.186400pt;}
.y15_c00368{bottom:761.223200pt;}
.y3_c00368{bottom:814.519733pt;}
.y2_c00368{bottom:894.519733pt;}
.h6_c00368{height:44.704000pt;}
.h2_c00368{height:48.000000pt;}
.h5_c00368{height:57.600000pt;}
.h4_c00368{height:69.813333pt;}
.h3_c00368{height:89.760000pt;}
.h0_c00368{height:1122.520000pt;}
.h1_c00368{height:1122.666667pt;}
.w0_c00368{width:793.701333pt;}
.w1_c00368{width:794.000000pt;}
.x0_c00368{left:0.000000pt;}
.x2_c00368{left:73.333333pt;}
.x3_c00368{left:80.000000pt;}
.x4_c00368{left:94.666667pt;}
.x5_c00368{left:600.543200pt;}
.x1_c00368{left:698.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.199000;font-style: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);}
.m1_c00369{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls1_c00369{letter-spacing:0.000000px;}
.ls0_c00369{letter-spacing:0.720000px;}
.ls2_c00369{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws3_c00369{word-spacing:-2.664000px;}
.ws10_c00369{word-spacing:-1.368000px;}
.ws2_c00369{word-spacing:-0.840000px;}
.ws1_c00369{word-spacing:0.000000px;}
.wse_c00369{word-spacing:0.720000px;}
.ws6_c00369{word-spacing:1.728000px;}
.ws4_c00369{word-spacing:2.088000px;}
.wsb_c00369{word-spacing:2.376000px;}
.ws8_c00369{word-spacing:2.520000px;}
.ws7_c00369{word-spacing:3.600000px;}
.wsd_c00369{word-spacing:3.744000px;}
.ws9_c00369{word-spacing:4.392000px;}
.wsa_c00369{word-spacing:6.120000px;}
.ws5_c00369{word-spacing:6.192000px;}
.wsc_c00369{word-spacing:6.912000px;}
.wsf_c00369{word-spacing:18.000000px;}
._0_c00369{margin-left:-480.337200px;}
._4_c00369{margin-left:-12.168000px;}
._1_c00369{margin-left:-4.200000px;}
._3_c00369{margin-left:-2.088000px;}
._2_c00369{margin-left:-1.022400px;}
.fc2_c00369{color:rgb(32,32,32);}
.fc1_c00369{color:rgb(232,86,17);}
.fc0_c00369{color:rgb(60,60,59);}
.fs1_c00369{font-size:42.000000px;}
.fs0_c00369{font-size:60.000000px;}
.fs3_c00369{font-size:72.000000px;}
.fs2_c00369{font-size:84.000000px;}
.y0_c00369{bottom:0.000000px;}
.y1_c00369{bottom:41.250000px;}
.y14_c00369{bottom:346.292700px;}
.y13_c00369{bottom:376.298700px;}
.y12_c00369{bottom:406.304700px;}
.y11_c00369{bottom:436.310700px;}
.y10_c00369{bottom:466.316700px;}
.yf_c00369{bottom:496.322700px;}
.ye_c00369{bottom:526.328700px;}
.yd_c00369{bottom:556.334700px;}
.yc_c00369{bottom:616.334700px;}
.yb_c00369{bottom:706.286700px;}
.ya_c00369{bottom:736.292700px;}
.y9_c00369{bottom:766.298700px;}
.y8_c00369{bottom:796.304700px;}
.y7_c00369{bottom:826.310700px;}
.y6_c00369{bottom:856.316700px;}
.y5_c00369{bottom:886.322700px;}
.y4_c00369{bottom:916.328700px;}
.y3_c00369{bottom:946.334700px;}
.y2_c00369{bottom:1006.334700px;}
.h2_c00369{height:54.000000px;}
.h4_c00369{height:64.800000px;}
.h3_c00369{height:78.540000px;}
.h0_c00369{height:1262.835000px;}
.h1_c00369{height:1263.000000px;}
.w0_c00369{width:892.914000px;}
.w1_c00369{width:893.250000px;}
.x0_c00369{left:0.000000px;}
.x2_c00369{left:90.000000px;}
.x3_c00369{left:106.500000px;}
.x1_c00369{left:787.703850px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls1_c00369{letter-spacing:0.000000pt;}
.ls0_c00369{letter-spacing:0.640000pt;}
.ls2_c00369{letter-spacing:0.746667pt;}
.ws0_c00369{word-spacing:-9.066667pt;}
.ws3_c00369{word-spacing:-2.368000pt;}
.ws10_c00369{word-spacing:-1.216000pt;}
.ws2_c00369{word-spacing:-0.746667pt;}
.ws1_c00369{word-spacing:0.000000pt;}
.wse_c00369{word-spacing:0.640000pt;}
.ws6_c00369{word-spacing:1.536000pt;}
.ws4_c00369{word-spacing:1.856000pt;}
.wsb_c00369{word-spacing:2.112000pt;}
.ws8_c00369{word-spacing:2.240000pt;}
.ws7_c00369{word-spacing:3.200000pt;}
.wsd_c00369{word-spacing:3.328000pt;}
.ws9_c00369{word-spacing:3.904000pt;}
.wsa_c00369{word-spacing:5.440000pt;}
.ws5_c00369{word-spacing:5.504000pt;}
.wsc_c00369{word-spacing:6.144000pt;}
.wsf_c00369{word-spacing:16.000000pt;}
._0_c00369{margin-left:-426.966400pt;}
._4_c00369{margin-left:-10.816000pt;}
._1_c00369{margin-left:-3.733333pt;}
._3_c00369{margin-left:-1.856000pt;}
._2_c00369{margin-left:-0.908800pt;}
.fs1_c00369{font-size:37.333333pt;}
.fs0_c00369{font-size:53.333333pt;}
.fs3_c00369{font-size:64.000000pt;}
.fs2_c00369{font-size:74.666667pt;}
.y0_c00369{bottom:0.000000pt;}
.y1_c00369{bottom:36.666667pt;}
.y14_c00369{bottom:307.815733pt;}
.y13_c00369{bottom:334.487733pt;}
.y12_c00369{bottom:361.159733pt;}
.y11_c00369{bottom:387.831733pt;}
.y10_c00369{bottom:414.503733pt;}
.yf_c00369{bottom:441.175733pt;}
.ye_c00369{bottom:467.847733pt;}
.yd_c00369{bottom:494.519733pt;}
.yc_c00369{bottom:547.853067pt;}
.yb_c00369{bottom:627.810400pt;}
.ya_c00369{bottom:654.482400pt;}
.y9_c00369{bottom:681.154400pt;}
.y8_c00369{bottom:707.826400pt;}
.y7_c00369{bottom:734.498400pt;}
.y6_c00369{bottom:761.170400pt;}
.y5_c00369{bottom:787.842400pt;}
.y4_c00369{bottom:814.514400pt;}
.y3_c00369{bottom:841.186400pt;}
.y2_c00369{bottom:894.519733pt;}
.h2_c00369{height:48.000000pt;}
.h4_c00369{height:57.600000pt;}
.h3_c00369{height:69.813333pt;}
.h0_c00369{height:1122.520000pt;}
.h1_c00369{height:1122.666667pt;}
.w0_c00369{width:793.701333pt;}
.w1_c00369{width:794.000000pt;}
.x0_c00369{left:0.000000pt;}
.x2_c00369{left:80.000000pt;}
.x3_c00369{left:94.666667pt;}
.x1_c00369{left:700.181200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f0146705d46c3af5096eb9.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.161000;font-style: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);}
.m1_c00370{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls5_c00370{letter-spacing:-0.324000px;}
.ls4_c00370{letter-spacing:0.000000px;}
.ls0_c00370{letter-spacing:0.720000px;}
.ls1_c00370{letter-spacing:0.840000px;}
.ls3_c00370{letter-spacing:1.500000px;}
.ls2_c00370{letter-spacing:1.650000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00370{word-spacing:-21.276000px;}
.ws2_c00370{word-spacing:-17.640000px;}
.ws3_c00370{word-spacing:-14.850000px;}
.ws0_c00370{word-spacing:-10.200000px;}
.ws10_c00370{word-spacing:-5.472000px;}
.ws6_c00370{word-spacing:-2.160000px;}
.ws12_c00370{word-spacing:-1.500000px;}
.ws5_c00370{word-spacing:-0.840000px;}
.wsc_c00370{word-spacing:-0.720000px;}
.ws11_c00370{word-spacing:-0.288000px;}
.ws4_c00370{word-spacing:0.000000px;}
.wsf_c00370{word-spacing:1.944000px;}
.ws8_c00370{word-spacing:2.664000px;}
.wsa_c00370{word-spacing:2.952000px;}
.ws7_c00370{word-spacing:3.096000px;}
.ws9_c00370{word-spacing:4.032000px;}
.wsb_c00370{word-spacing:4.680000px;}
.wse_c00370{word-spacing:7.128000px;}
.wsd_c00370{word-spacing:9.792000px;}
._0_c00370{margin-left:-480.337200px;}
._4_c00370{margin-left:-6.480000px;}
._1_c00370{margin-left:-4.200000px;}
._3_c00370{margin-left:-2.188800px;}
._2_c00370{margin-left:-1.134000px;}
._5_c00370{width:1.630800px;}
.fc3_c00370{color:rgb(32,32,32);}
.fc2_c00370{color:rgb(233,83,14);}
.fc1_c00370{color:rgb(232,86,17);}
.fc4_c00370{color:rgb(157,157,156);}
.fc0_c00370{color:rgb(60,60,59);}
.fs1_c00370{font-size:42.000000px;}
.fs0_c00370{font-size:60.000000px;}
.fs5_c00370{font-size:66.000000px;}
.fs4_c00370{font-size:72.000000px;}
.fs3_c00370{font-size:84.000000px;}
.fs2_c00370{font-size:108.000000px;}
.y0_c00370{bottom:0.000000px;}
.y1_c00370{bottom:41.250000px;}
.y13_c00370{bottom:226.322700px;}
.y12_c00370{bottom:256.328700px;}
.y11_c00370{bottom:286.334700px;}
.y10_c00370{bottom:346.334700px;}
.yf_c00370{bottom:436.316700px;}
.ye_c00370{bottom:466.322700px;}
.yd_c00370{bottom:496.328700px;}
.yc_c00370{bottom:526.334700px;}
.yb_c00370{bottom:586.334700px;}
.ya_c00370{bottom:676.298700px;}
.y9_c00370{bottom:706.304700px;}
.y8_c00370{bottom:736.310700px;}
.y18_c00370{bottom:736.334700px;}
.y7_c00370{bottom:766.316700px;}
.y17_c00370{bottom:766.334700px;}
.y6_c00370{bottom:796.322700px;}
.y16_c00370{bottom:796.334700px;}
.y5_c00370{bottom:826.328700px;}
.y15_c00370{bottom:826.334700px;}
.y4_c00370{bottom:856.334700px;}
.y14_c00370{bottom:856.376100px;}
.y3_c00370{bottom:916.334700px;}
.y2_c00370{bottom:1006.334700px;}
.h6_c00370{height:50.292000px;}
.h2_c00370{height:54.000000px;}
.h5_c00370{height:64.800000px;}
.h4_c00370{height:78.540000px;}
.h3_c00370{height:100.980000px;}
.h0_c00370{height:1262.835000px;}
.h1_c00370{height:1263.000000px;}
.w0_c00370{width:892.914000px;}
.w1_c00370{width:893.250000px;}
.x0_c00370{left:0.000000px;}
.x2_c00370{left:82.500000px;}
.x3_c00370{left:90.000000px;}
.x4_c00370{left:106.500000px;}
.x5_c00370{left:675.611100px;}
.x1_c00370{left:791.363850px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls5_c00370{letter-spacing:-0.288000pt;}
.ls4_c00370{letter-spacing:0.000000pt;}
.ls0_c00370{letter-spacing:0.640000pt;}
.ls1_c00370{letter-spacing:0.746667pt;}
.ls3_c00370{letter-spacing:1.333333pt;}
.ls2_c00370{letter-spacing:1.466667pt;}
.ws1_c00370{word-spacing:-18.912000pt;}
.ws2_c00370{word-spacing:-15.680000pt;}
.ws3_c00370{word-spacing:-13.200000pt;}
.ws0_c00370{word-spacing:-9.066667pt;}
.ws10_c00370{word-spacing:-4.864000pt;}
.ws6_c00370{word-spacing:-1.920000pt;}
.ws12_c00370{word-spacing:-1.333333pt;}
.ws5_c00370{word-spacing:-0.746667pt;}
.wsc_c00370{word-spacing:-0.640000pt;}
.ws11_c00370{word-spacing:-0.256000pt;}
.ws4_c00370{word-spacing:0.000000pt;}
.wsf_c00370{word-spacing:1.728000pt;}
.ws8_c00370{word-spacing:2.368000pt;}
.wsa_c00370{word-spacing:2.624000pt;}
.ws7_c00370{word-spacing:2.752000pt;}
.ws9_c00370{word-spacing:3.584000pt;}
.wsb_c00370{word-spacing:4.160000pt;}
.wse_c00370{word-spacing:6.336000pt;}
.wsd_c00370{word-spacing:8.704000pt;}
._0_c00370{margin-left:-426.966400pt;}
._4_c00370{margin-left:-5.760000pt;}
._1_c00370{margin-left:-3.733333pt;}
._3_c00370{margin-left:-1.945600pt;}
._2_c00370{margin-left:-1.008000pt;}
._5_c00370{width:1.449600pt;}
.fs1_c00370{font-size:37.333333pt;}
.fs0_c00370{font-size:53.333333pt;}
.fs5_c00370{font-size:58.666667pt;}
.fs4_c00370{font-size:64.000000pt;}
.fs3_c00370{font-size:74.666667pt;}
.fs2_c00370{font-size:96.000000pt;}
.y0_c00370{bottom:0.000000pt;}
.y1_c00370{bottom:36.666667pt;}
.y13_c00370{bottom:201.175733pt;}
.y12_c00370{bottom:227.847733pt;}
.y11_c00370{bottom:254.519733pt;}
.y10_c00370{bottom:307.853067pt;}
.yf_c00370{bottom:387.837067pt;}
.ye_c00370{bottom:414.509067pt;}
.yd_c00370{bottom:441.181067pt;}
.yc_c00370{bottom:467.853067pt;}
.yb_c00370{bottom:521.186400pt;}
.ya_c00370{bottom:601.154400pt;}
.y9_c00370{bottom:627.826400pt;}
.y8_c00370{bottom:654.498400pt;}
.y18_c00370{bottom:654.519733pt;}
.y7_c00370{bottom:681.170400pt;}
.y17_c00370{bottom:681.186400pt;}
.y6_c00370{bottom:707.842400pt;}
.y16_c00370{bottom:707.853067pt;}
.y5_c00370{bottom:734.514400pt;}
.y15_c00370{bottom:734.519733pt;}
.y4_c00370{bottom:761.186400pt;}
.y14_c00370{bottom:761.223200pt;}
.y3_c00370{bottom:814.519733pt;}
.y2_c00370{bottom:894.519733pt;}
.h6_c00370{height:44.704000pt;}
.h2_c00370{height:48.000000pt;}
.h5_c00370{height:57.600000pt;}
.h4_c00370{height:69.813333pt;}
.h3_c00370{height:89.760000pt;}
.h0_c00370{height:1122.520000pt;}
.h1_c00370{height:1122.666667pt;}
.w0_c00370{width:793.701333pt;}
.w1_c00370{width:794.000000pt;}
.x0_c00370{left:0.000000pt;}
.x2_c00370{left:73.333333pt;}
.x3_c00370{left:80.000000pt;}
.x4_c00370{left:94.666667pt;}
.x5_c00370{left:600.543200pt;}
.x1_c00370{left:703.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.199000;font-style: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);}
.m1_c00371{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls1_c00371{letter-spacing:0.000000px;}
.ls0_c00371{letter-spacing:0.720000px;}
.ls2_c00371{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws3_c00371{word-spacing:-2.376000px;}
.wsa_c00371{word-spacing:-1.440000px;}
.ws2_c00371{word-spacing:-0.840000px;}
.ws1_c00371{word-spacing:0.000000px;}
.ws7_c00371{word-spacing:1.152000px;}
.ws8_c00371{word-spacing:2.088000px;}
.wsd_c00371{word-spacing:2.232000px;}
.ws6_c00371{word-spacing:3.456000px;}
.wsc_c00371{word-spacing:4.608000px;}
.wsb_c00371{word-spacing:5.472000px;}
.ws9_c00371{word-spacing:5.976000px;}
.ws4_c00371{word-spacing:11.664000px;}
.ws5_c00371{word-spacing:11.808000px;}
._0_c00371{margin-left:-480.336600px;}
._1_c00371{margin-left:-4.200000px;}
._2_c00371{margin-left:-2.152800px;}
.fc2_c00371{color:rgb(32,32,32);}
.fc1_c00371{color:rgb(232,86,17);}
.fc0_c00371{color:rgb(60,60,59);}
.fs1_c00371{font-size:42.000000px;}
.fs0_c00371{font-size:60.000000px;}
.fs3_c00371{font-size:72.000000px;}
.fs2_c00371{font-size:84.000000px;}
.y0_c00371{bottom:0.000000px;}
.y1_c00371{bottom:41.250000px;}
.y11_c00371{bottom:436.298700px;}
.y10_c00371{bottom:466.304700px;}
.yf_c00371{bottom:496.310700px;}
.ye_c00371{bottom:526.316700px;}
.yd_c00371{bottom:556.322700px;}
.yc_c00371{bottom:586.328700px;}
.yb_c00371{bottom:616.334700px;}
.ya_c00371{bottom:676.334700px;}
.y9_c00371{bottom:766.298700px;}
.y8_c00371{bottom:796.304700px;}
.y7_c00371{bottom:826.310700px;}
.y6_c00371{bottom:856.316700px;}
.y5_c00371{bottom:886.322700px;}
.y4_c00371{bottom:916.328700px;}
.y3_c00371{bottom:946.334700px;}
.y2_c00371{bottom:1006.334700px;}
.h2_c00371{height:54.000000px;}
.h4_c00371{height:64.800000px;}
.h3_c00371{height:78.540000px;}
.h0_c00371{height:1262.835000px;}
.h1_c00371{height:1263.000000px;}
.w0_c00371{width:892.914000px;}
.w1_c00371{width:893.250000px;}
.x0_c00371{left:0.000000px;}
.x2_c00371{left:90.000000px;}
.x3_c00371{left:106.500000px;}
.x1_c00371{left:788.888700px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls1_c00371{letter-spacing:0.000000pt;}
.ls0_c00371{letter-spacing:0.640000pt;}
.ls2_c00371{letter-spacing:0.746667pt;}
.ws0_c00371{word-spacing:-9.066667pt;}
.ws3_c00371{word-spacing:-2.112000pt;}
.wsa_c00371{word-spacing:-1.280000pt;}
.ws2_c00371{word-spacing:-0.746667pt;}
.ws1_c00371{word-spacing:0.000000pt;}
.ws7_c00371{word-spacing:1.024000pt;}
.ws8_c00371{word-spacing:1.856000pt;}
.wsd_c00371{word-spacing:1.984000pt;}
.ws6_c00371{word-spacing:3.072000pt;}
.wsc_c00371{word-spacing:4.096000pt;}
.wsb_c00371{word-spacing:4.864000pt;}
.ws9_c00371{word-spacing:5.312000pt;}
.ws4_c00371{word-spacing:10.368000pt;}
.ws5_c00371{word-spacing:10.496000pt;}
._0_c00371{margin-left:-426.965867pt;}
._1_c00371{margin-left:-3.733333pt;}
._2_c00371{margin-left:-1.913600pt;}
.fs1_c00371{font-size:37.333333pt;}
.fs0_c00371{font-size:53.333333pt;}
.fs3_c00371{font-size:64.000000pt;}
.fs2_c00371{font-size:74.666667pt;}
.y0_c00371{bottom:0.000000pt;}
.y1_c00371{bottom:36.666667pt;}
.y11_c00371{bottom:387.821067pt;}
.y10_c00371{bottom:414.493067pt;}
.yf_c00371{bottom:441.165067pt;}
.ye_c00371{bottom:467.837067pt;}
.yd_c00371{bottom:494.509067pt;}
.yc_c00371{bottom:521.181067pt;}
.yb_c00371{bottom:547.853067pt;}
.ya_c00371{bottom:601.186400pt;}
.y9_c00371{bottom:681.154400pt;}
.y8_c00371{bottom:707.826400pt;}
.y7_c00371{bottom:734.498400pt;}
.y6_c00371{bottom:761.170400pt;}
.y5_c00371{bottom:787.842400pt;}
.y4_c00371{bottom:814.514400pt;}
.y3_c00371{bottom:841.186400pt;}
.y2_c00371{bottom:894.519733pt;}
.h2_c00371{height:48.000000pt;}
.h4_c00371{height:57.600000pt;}
.h3_c00371{height:69.813333pt;}
.h0_c00371{height:1122.520000pt;}
.h1_c00371{height:1122.666667pt;}
.w0_c00371{width:793.701333pt;}
.w1_c00371{width:794.000000pt;}
.x0_c00371{left:0.000000pt;}
.x2_c00371{left:80.000000pt;}
.x3_c00371{left:94.666667pt;}
.x1_c00371{left:701.234400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00372;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00372;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;line-height:1.155000;font-style: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);}
.m1_c00372{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls2_c00372{letter-spacing:0.000000px;}
.ls0_c00372{letter-spacing:0.864000px;}
.ls1_c00372{letter-spacing:1.200000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00372{word-spacing:-13.104000px;}
.ws0_c00372{word-spacing:-10.200000px;}
.ws3_c00372{word-spacing:-1.440000px;}
.ws2_c00372{word-spacing:0.000000px;}
._0_c00372{margin-left:-480.337200px;}
._5_c00372{margin-left:-9.000000px;}
._4_c00372{margin-left:-6.480000px;}
._1_c00372{margin-left:-4.200000px;}
._6_c00372{margin-left:-2.760000px;}
._2_c00372{margin-left:-1.440000px;}
._3_c00372{width:1.440000px;}
.fc3_c00372{color:rgb(255,255,255);}
.fc2_c00372{color:rgb(233,83,14);}
.fc1_c00372{color:rgb(232,86,17);}
.fc0_c00372{color:rgb(60,60,59);}
.fs1_c00372{font-size:42.000000px;}
.fs0_c00372{font-size:60.000000px;}
.fs3_c00372{font-size:72.000000px;}
.fs4_c00372{font-size:120.000000px;}
.fs2_c00372{font-size:360.000000px;}
.y0_c00372{bottom:0.000000px;}
.y1_c00372{bottom:41.250000px;}
.yf_c00372{bottom:394.274700px;}
.ye_c00372{bottom:415.280700px;}
.yd_c00372{bottom:436.286700px;}
.yc_c00372{bottom:484.292700px;}
.yb_c00372{bottom:505.298700px;}
.ya_c00372{bottom:526.304700px;}
.y9_c00372{bottom:574.310700px;}
.y8_c00372{bottom:595.316700px;}
.y7_c00372{bottom:616.322700px;}
.y6_c00372{bottom:664.328700px;}
.y5_c00372{bottom:685.334700px;}
.y4_c00372{bottom:706.340700px;}
.y3_c00372{bottom:752.834700px;}
.y13_c00372{bottom:916.334700px;}
.y12_c00372{bottom:946.334700px;}
.y11_c00372{bottom:976.334700px;}
.y10_c00372{bottom:1006.334700px;}
.y2_c00372{bottom:1093.526700px;}
.h2_c00372{height:54.000000px;}
.h5_c00372{height:64.800000px;}
.h4_c00372{height:66.456000px;}
.h6_c00372{height:112.200000px;}
.h3_c00372{height:324.000000px;}
.h0_c00372{height:1262.835000px;}
.h1_c00372{height:1263.000000px;}
.w0_c00372{width:892.914000px;}
.w1_c00372{width:893.250000px;}
.x0_c00372{left:0.000000px;}
.x2_c00372{left:81.290250px;}
.x3_c00372{left:82.393650px;}
.x5_c00372{left:112.287450px;}
.x4_c00372{left:127.393650px;}
.x1_c00372{left:788.738850px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls2_c00372{letter-spacing:0.000000pt;}
.ls0_c00372{letter-spacing:0.768000pt;}
.ls1_c00372{letter-spacing:1.066667pt;}
.ws1_c00372{word-spacing:-11.648000pt;}
.ws0_c00372{word-spacing:-9.066667pt;}
.ws3_c00372{word-spacing:-1.280000pt;}
.ws2_c00372{word-spacing:0.000000pt;}
._0_c00372{margin-left:-426.966400pt;}
._5_c00372{margin-left:-8.000000pt;}
._4_c00372{margin-left:-5.760000pt;}
._1_c00372{margin-left:-3.733333pt;}
._6_c00372{margin-left:-2.453333pt;}
._2_c00372{margin-left:-1.280000pt;}
._3_c00372{width:1.280000pt;}
.fs1_c00372{font-size:37.333333pt;}
.fs0_c00372{font-size:53.333333pt;}
.fs3_c00372{font-size:64.000000pt;}
.fs4_c00372{font-size:106.666667pt;}
.fs2_c00372{font-size:320.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.y1_c00372{bottom:36.666667pt;}
.yf_c00372{bottom:350.466400pt;}
.ye_c00372{bottom:369.138400pt;}
.yd_c00372{bottom:387.810400pt;}
.yc_c00372{bottom:430.482400pt;}
.yb_c00372{bottom:449.154400pt;}
.ya_c00372{bottom:467.826400pt;}
.y9_c00372{bottom:510.498400pt;}
.y8_c00372{bottom:529.170400pt;}
.y7_c00372{bottom:547.842400pt;}
.y6_c00372{bottom:590.514400pt;}
.y5_c00372{bottom:609.186400pt;}
.y4_c00372{bottom:627.858400pt;}
.y3_c00372{bottom:669.186400pt;}
.y13_c00372{bottom:814.519733pt;}
.y12_c00372{bottom:841.186400pt;}
.y11_c00372{bottom:867.853067pt;}
.y10_c00372{bottom:894.519733pt;}
.y2_c00372{bottom:972.023733pt;}
.h2_c00372{height:48.000000pt;}
.h5_c00372{height:57.600000pt;}
.h4_c00372{height:59.072000pt;}
.h6_c00372{height:99.733333pt;}
.h3_c00372{height:288.000000pt;}
.h0_c00372{height:1122.520000pt;}
.h1_c00372{height:1122.666667pt;}
.w0_c00372{width:793.701333pt;}
.w1_c00372{width:794.000000pt;}
.x0_c00372{left:0.000000pt;}
.x2_c00372{left:72.258000pt;}
.x3_c00372{left:73.238800pt;}
.x5_c00372{left:99.811067pt;}
.x4_c00372{left:113.238800pt;}
.x1_c00372{left:701.101200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.199000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.024000;font-style: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);}
.m1_c00373{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls4_c00373{letter-spacing:-3.600000px;}
.ls6_c00373{letter-spacing:-0.540000px;}
.ls5_c00373{letter-spacing:0.000000px;}
.ls0_c00373{letter-spacing:0.720000px;}
.ls1_c00373{letter-spacing:0.840000px;}
.ls3_c00373{letter-spacing:1.500000px;}
.ls2_c00373{letter-spacing:1.650000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00373{word-spacing:-21.060000px;}
.ws2_c00373{word-spacing:-17.640000px;}
.ws0_c00373{word-spacing:-6.600000px;}
.ws14_c00373{word-spacing:-3.312000px;}
.wsf_c00373{word-spacing:-2.016000px;}
.ws15_c00373{word-spacing:-1.500000px;}
.wsa_c00373{word-spacing:-1.080000px;}
.ws4_c00373{word-spacing:-0.840000px;}
.ws3_c00373{word-spacing:0.000000px;}
.wsd_c00373{word-spacing:0.072000px;}
.wsc_c00373{word-spacing:0.648000px;}
.wse_c00373{word-spacing:0.864000px;}
.ws12_c00373{word-spacing:1.080000px;}
.ws11_c00373{word-spacing:3.384000px;}
.ws6_c00373{word-spacing:4.464000px;}
.ws10_c00373{word-spacing:5.400000px;}
.ws8_c00373{word-spacing:5.472000px;}
.ws13_c00373{word-spacing:5.904000px;}
.ws5_c00373{word-spacing:13.608000px;}
.wsb_c00373{word-spacing:13.752000px;}
.ws7_c00373{word-spacing:14.184000px;}
.ws9_c00373{word-spacing:23.472000px;}
._1_c00373{margin-left:-476.736600px;}
._8_c00373{margin-left:-13.096800px;}
._7_c00373{margin-left:-6.480000px;}
._2_c00373{margin-left:-4.200000px;}
._5_c00373{margin-left:-2.829600px;}
._3_c00373{margin-left:-1.440000px;}
._6_c00373{width:1.123200px;}
._4_c00373{width:2.304000px;}
._0_c00373{width:3.600000px;}
.fc3_c00373{color:rgb(32,32,32);}
.fc2_c00373{color:rgb(233,83,14);}
.fc1_c00373{color:rgb(232,86,17);}
.fc4_c00373{color:rgb(157,157,156);}
.fc0_c00373{color:rgb(60,60,59);}
.fs1_c00373{font-size:42.000000px;}
.fs0_c00373{font-size:60.000000px;}
.fs5_c00373{font-size:66.000000px;}
.fs4_c00373{font-size:72.000000px;}
.fs3_c00373{font-size:84.000000px;}
.fs2_c00373{font-size:108.000000px;}
.y0_c00373{bottom:0.000000px;}
.y1_c00373{bottom:41.250000px;}
.y18_c00373{bottom:76.304700px;}
.y17_c00373{bottom:106.310700px;}
.y16_c00373{bottom:136.316700px;}
.y15_c00373{bottom:166.322700px;}
.y14_c00373{bottom:196.328700px;}
.y13_c00373{bottom:226.334700px;}
.y12_c00373{bottom:286.334700px;}
.y11_c00373{bottom:376.304700px;}
.y10_c00373{bottom:406.310700px;}
.yf_c00373{bottom:436.316700px;}
.ye_c00373{bottom:466.322700px;}
.yd_c00373{bottom:496.328700px;}
.yc_c00373{bottom:526.334700px;}
.yb_c00373{bottom:586.334700px;}
.ya_c00373{bottom:676.298700px;}
.y1f_c00373{bottom:676.334700px;}
.y9_c00373{bottom:706.304700px;}
.y1e_c00373{bottom:706.334700px;}
.y8_c00373{bottom:736.310700px;}
.y1d_c00373{bottom:736.334700px;}
.y7_c00373{bottom:766.316700px;}
.y1c_c00373{bottom:766.334700px;}
.y6_c00373{bottom:796.322700px;}
.y1b_c00373{bottom:796.334700px;}
.y5_c00373{bottom:826.328700px;}
.y1a_c00373{bottom:826.334700px;}
.y4_c00373{bottom:856.334700px;}
.y19_c00373{bottom:856.376100px;}
.y3_c00373{bottom:916.334700px;}
.y2_c00373{bottom:1006.334700px;}
.h6_c00373{height:50.292000px;}
.h2_c00373{height:54.000000px;}
.h5_c00373{height:64.800000px;}
.h4_c00373{height:78.540000px;}
.h3_c00373{height:100.980000px;}
.h0_c00373{height:1262.835000px;}
.h1_c00373{height:1263.000000px;}
.w0_c00373{width:892.914000px;}
.w1_c00373{width:893.250000px;}
.x0_c00373{left:0.000000px;}
.x2_c00373{left:82.500000px;}
.x3_c00373{left:90.000000px;}
.x4_c00373{left:106.500000px;}
.x5_c00373{left:675.611100px;}
.x1_c00373{left:788.663700px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls4_c00373{letter-spacing:-3.200000pt;}
.ls6_c00373{letter-spacing:-0.480000pt;}
.ls5_c00373{letter-spacing:0.000000pt;}
.ls0_c00373{letter-spacing:0.640000pt;}
.ls1_c00373{letter-spacing:0.746667pt;}
.ls3_c00373{letter-spacing:1.333333pt;}
.ls2_c00373{letter-spacing:1.466667pt;}
.ws1_c00373{word-spacing:-18.720000pt;}
.ws2_c00373{word-spacing:-15.680000pt;}
.ws0_c00373{word-spacing:-5.866667pt;}
.ws14_c00373{word-spacing:-2.944000pt;}
.wsf_c00373{word-spacing:-1.792000pt;}
.ws15_c00373{word-spacing:-1.333333pt;}
.wsa_c00373{word-spacing:-0.960000pt;}
.ws4_c00373{word-spacing:-0.746667pt;}
.ws3_c00373{word-spacing:0.000000pt;}
.wsd_c00373{word-spacing:0.064000pt;}
.wsc_c00373{word-spacing:0.576000pt;}
.wse_c00373{word-spacing:0.768000pt;}
.ws12_c00373{word-spacing:0.960000pt;}
.ws11_c00373{word-spacing:3.008000pt;}
.ws6_c00373{word-spacing:3.968000pt;}
.ws10_c00373{word-spacing:4.800000pt;}
.ws8_c00373{word-spacing:4.864000pt;}
.ws13_c00373{word-spacing:5.248000pt;}
.ws5_c00373{word-spacing:12.096000pt;}
.wsb_c00373{word-spacing:12.224000pt;}
.ws7_c00373{word-spacing:12.608000pt;}
.ws9_c00373{word-spacing:20.864000pt;}
._1_c00373{margin-left:-423.765867pt;}
._8_c00373{margin-left:-11.641600pt;}
._7_c00373{margin-left:-5.760000pt;}
._2_c00373{margin-left:-3.733333pt;}
._5_c00373{margin-left:-2.515200pt;}
._3_c00373{margin-left:-1.280000pt;}
._6_c00373{width:0.998400pt;}
._4_c00373{width:2.048000pt;}
._0_c00373{width:3.200000pt;}
.fs1_c00373{font-size:37.333333pt;}
.fs0_c00373{font-size:53.333333pt;}
.fs5_c00373{font-size:58.666667pt;}
.fs4_c00373{font-size:64.000000pt;}
.fs3_c00373{font-size:74.666667pt;}
.fs2_c00373{font-size:96.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.y1_c00373{bottom:36.666667pt;}
.y18_c00373{bottom:67.826400pt;}
.y17_c00373{bottom:94.498400pt;}
.y16_c00373{bottom:121.170400pt;}
.y15_c00373{bottom:147.842400pt;}
.y14_c00373{bottom:174.514400pt;}
.y13_c00373{bottom:201.186400pt;}
.y12_c00373{bottom:254.519733pt;}
.y11_c00373{bottom:334.493067pt;}
.y10_c00373{bottom:361.165067pt;}
.yf_c00373{bottom:387.837067pt;}
.ye_c00373{bottom:414.509067pt;}
.yd_c00373{bottom:441.181067pt;}
.yc_c00373{bottom:467.853067pt;}
.yb_c00373{bottom:521.186400pt;}
.ya_c00373{bottom:601.154400pt;}
.y1f_c00373{bottom:601.186400pt;}
.y9_c00373{bottom:627.826400pt;}
.y1e_c00373{bottom:627.853067pt;}
.y8_c00373{bottom:654.498400pt;}
.y1d_c00373{bottom:654.519733pt;}
.y7_c00373{bottom:681.170400pt;}
.y1c_c00373{bottom:681.186400pt;}
.y6_c00373{bottom:707.842400pt;}
.y1b_c00373{bottom:707.853067pt;}
.y5_c00373{bottom:734.514400pt;}
.y1a_c00373{bottom:734.519733pt;}
.y4_c00373{bottom:761.186400pt;}
.y19_c00373{bottom:761.223200pt;}
.y3_c00373{bottom:814.519733pt;}
.y2_c00373{bottom:894.519733pt;}
.h6_c00373{height:44.704000pt;}
.h2_c00373{height:48.000000pt;}
.h5_c00373{height:57.600000pt;}
.h4_c00373{height:69.813333pt;}
.h3_c00373{height:89.760000pt;}
.h0_c00373{height:1122.520000pt;}
.h1_c00373{height:1122.666667pt;}
.w0_c00373{width:793.701333pt;}
.w1_c00373{width:794.000000pt;}
.x0_c00373{left:0.000000pt;}
.x2_c00373{left:73.333333pt;}
.x3_c00373{left:80.000000pt;}
.x4_c00373{left:94.666667pt;}
.x5_c00373{left:600.543200pt;}
.x1_c00373{left:701.034400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.161000;font-style: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);}
.m1_c00374{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls1_c00374{letter-spacing:0.000000px;}
.ls0_c00374{letter-spacing:0.720000px;}
.ls2_c00374{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws9_c00374{word-spacing:-2.304000px;}
.ws2_c00374{word-spacing:-0.840000px;}
.ws1_c00374{word-spacing:0.000000px;}
.ws5_c00374{word-spacing:3.096000px;}
.ws7_c00374{word-spacing:5.040000px;}
.ws4_c00374{word-spacing:5.112000px;}
.ws8_c00374{word-spacing:5.904000px;}
.wsa_c00374{word-spacing:6.048000px;}
.wsb_c00374{word-spacing:8.136000px;}
.ws3_c00374{word-spacing:11.664000px;}
.ws6_c00374{word-spacing:24.840000px;}
._0_c00374{margin-left:-480.336000px;}
._3_c00374{margin-left:-5.980800px;}
._1_c00374{margin-left:-4.200000px;}
._4_c00374{margin-left:-3.024000px;}
._2_c00374{margin-left:-1.440000px;}
.fc2_c00374{color:rgb(32,32,32);}
.fc1_c00374{color:rgb(232,86,17);}
.fc0_c00374{color:rgb(60,60,59);}
.fs1_c00374{font-size:42.000000px;}
.fs0_c00374{font-size:60.000000px;}
.fs3_c00374{font-size:72.000000px;}
.fs2_c00374{font-size:84.000000px;}
.y0_c00374{bottom:0.000000px;}
.y1_c00374{bottom:41.250000px;}
.yf_c00374{bottom:496.298700px;}
.ye_c00374{bottom:526.304700px;}
.yd_c00374{bottom:556.310700px;}
.yc_c00374{bottom:586.316700px;}
.yb_c00374{bottom:616.322700px;}
.ya_c00374{bottom:646.328700px;}
.y9_c00374{bottom:676.334700px;}
.y8_c00374{bottom:736.334700px;}
.y7_c00374{bottom:826.310700px;}
.y6_c00374{bottom:856.316700px;}
.y5_c00374{bottom:886.322700px;}
.y4_c00374{bottom:916.328700px;}
.y3_c00374{bottom:946.334700px;}
.y2_c00374{bottom:1006.334700px;}
.h2_c00374{height:54.000000px;}
.h4_c00374{height:64.800000px;}
.h3_c00374{height:78.540000px;}
.h0_c00374{height:1262.835000px;}
.h1_c00374{height:1263.000000px;}
.w0_c00374{width:892.914000px;}
.w1_c00374{width:893.250000px;}
.x0_c00374{left:0.000000px;}
.x2_c00374{left:90.000000px;}
.x3_c00374{left:106.500000px;}
.x1_c00374{left:788.813550px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls1_c00374{letter-spacing:0.000000pt;}
.ls0_c00374{letter-spacing:0.640000pt;}
.ls2_c00374{letter-spacing:0.746667pt;}
.ws0_c00374{word-spacing:-9.066667pt;}
.ws9_c00374{word-spacing:-2.048000pt;}
.ws2_c00374{word-spacing:-0.746667pt;}
.ws1_c00374{word-spacing:0.000000pt;}
.ws5_c00374{word-spacing:2.752000pt;}
.ws7_c00374{word-spacing:4.480000pt;}
.ws4_c00374{word-spacing:4.544000pt;}
.ws8_c00374{word-spacing:5.248000pt;}
.wsa_c00374{word-spacing:5.376000pt;}
.wsb_c00374{word-spacing:7.232000pt;}
.ws3_c00374{word-spacing:10.368000pt;}
.ws6_c00374{word-spacing:22.080000pt;}
._0_c00374{margin-left:-426.965333pt;}
._3_c00374{margin-left:-5.316267pt;}
._1_c00374{margin-left:-3.733333pt;}
._4_c00374{margin-left:-2.688000pt;}
._2_c00374{margin-left:-1.280000pt;}
.fs1_c00374{font-size:37.333333pt;}
.fs0_c00374{font-size:53.333333pt;}
.fs3_c00374{font-size:64.000000pt;}
.fs2_c00374{font-size:74.666667pt;}
.y0_c00374{bottom:0.000000pt;}
.y1_c00374{bottom:36.666667pt;}
.yf_c00374{bottom:441.154400pt;}
.ye_c00374{bottom:467.826400pt;}
.yd_c00374{bottom:494.498400pt;}
.yc_c00374{bottom:521.170400pt;}
.yb_c00374{bottom:547.842400pt;}
.ya_c00374{bottom:574.514400pt;}
.y9_c00374{bottom:601.186400pt;}
.y8_c00374{bottom:654.519733pt;}
.y7_c00374{bottom:734.498400pt;}
.y6_c00374{bottom:761.170400pt;}
.y5_c00374{bottom:787.842400pt;}
.y4_c00374{bottom:814.514400pt;}
.y3_c00374{bottom:841.186400pt;}
.y2_c00374{bottom:894.519733pt;}
.h2_c00374{height:48.000000pt;}
.h4_c00374{height:57.600000pt;}
.h3_c00374{height:69.813333pt;}
.h0_c00374{height:1122.520000pt;}
.h1_c00374{height:1122.666667pt;}
.w0_c00374{width:793.701333pt;}
.w1_c00374{width:794.000000pt;}
.x0_c00374{left:0.000000pt;}
.x2_c00374{left:80.000000pt;}
.x3_c00374{left:94.666667pt;}
.x1_c00374{left:701.167600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3670fae22649835b4fa4ba20.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.199000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.161000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls5_c00375{letter-spacing:-0.324000px;}
.ls4_c00375{letter-spacing:0.000000px;}
.ls0_c00375{letter-spacing:0.720000px;}
.ls1_c00375{letter-spacing:0.840000px;}
.ls3_c00375{letter-spacing:1.500000px;}
.ls2_c00375{letter-spacing:1.650000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00375{word-spacing:-21.276000px;}
.ws2_c00375{word-spacing:-17.640000px;}
.ws3_c00375{word-spacing:-14.850000px;}
.ws4_c00375{word-spacing:-11.700000px;}
.ws0_c00375{word-spacing:-10.200000px;}
.wsc_c00375{word-spacing:-6.408000px;}
.ws15_c00375{word-spacing:-4.320000px;}
.ws11_c00375{word-spacing:-3.312000px;}
.ws10_c00375{word-spacing:-1.584000px;}
.ws17_c00375{word-spacing:-1.500000px;}
.wsb_c00375{word-spacing:-1.080000px;}
.ws6_c00375{word-spacing:-0.840000px;}
.ws7_c00375{word-spacing:-0.432000px;}
.ws5_c00375{word-spacing:0.000000px;}
.ws8_c00375{word-spacing:0.792000px;}
.wsd_c00375{word-spacing:1.872000px;}
.ws12_c00375{word-spacing:2.952000px;}
.ws14_c00375{word-spacing:3.384000px;}
.wsf_c00375{word-spacing:3.816000px;}
.ws9_c00375{word-spacing:8.712000px;}
.ws16_c00375{word-spacing:10.728000px;}
.wse_c00375{word-spacing:10.944000px;}
.ws13_c00375{word-spacing:13.464000px;}
.wsa_c00375{word-spacing:19.584000px;}
._0_c00375{margin-left:-480.336600px;}
._3_c00375{margin-left:-6.480000px;}
._7_c00375{margin-left:-5.277600px;}
._1_c00375{margin-left:-4.200000px;}
._4_c00375{margin-left:-2.196000px;}
._2_c00375{margin-left:-1.134000px;}
._6_c00375{width:3.052800px;}
._5_c00375{width:4.068000px;}
.fc3_c00375{color:rgb(32,32,32);}
.fc2_c00375{color:rgb(233,83,14);}
.fc1_c00375{color:rgb(232,86,17);}
.fc4_c00375{color:rgb(157,157,156);}
.fc0_c00375{color:rgb(60,60,59);}
.fs1_c00375{font-size:42.000000px;}
.fs0_c00375{font-size:60.000000px;}
.fs5_c00375{font-size:66.000000px;}
.fs4_c00375{font-size:72.000000px;}
.fs3_c00375{font-size:84.000000px;}
.fs2_c00375{font-size:108.000000px;}
.y0_c00375{bottom:0.000000px;}
.y1_c00375{bottom:41.250000px;}
.y17_c00375{bottom:106.304700px;}
.y16_c00375{bottom:136.310700px;}
.y15_c00375{bottom:166.316700px;}
.y14_c00375{bottom:196.322700px;}
.y13_c00375{bottom:226.328700px;}
.y12_c00375{bottom:256.334700px;}
.y11_c00375{bottom:316.334700px;}
.y10_c00375{bottom:406.304700px;}
.yf_c00375{bottom:436.310700px;}
.ye_c00375{bottom:466.316700px;}
.yd_c00375{bottom:496.322700px;}
.yc_c00375{bottom:526.328700px;}
.yb_c00375{bottom:556.334700px;}
.ya_c00375{bottom:616.334700px;}
.y9_c00375{bottom:706.304700px;}
.y1d_c00375{bottom:706.334700px;}
.y8_c00375{bottom:736.310700px;}
.y1c_c00375{bottom:736.334700px;}
.y7_c00375{bottom:766.316700px;}
.y1b_c00375{bottom:766.334700px;}
.y6_c00375{bottom:796.322700px;}
.y1a_c00375{bottom:796.334700px;}
.y5_c00375{bottom:826.328700px;}
.y19_c00375{bottom:826.334700px;}
.y4_c00375{bottom:856.334700px;}
.y18_c00375{bottom:856.376100px;}
.y3_c00375{bottom:916.334700px;}
.y2_c00375{bottom:1006.334700px;}
.h6_c00375{height:50.292000px;}
.h2_c00375{height:54.000000px;}
.h5_c00375{height:64.800000px;}
.h4_c00375{height:78.540000px;}
.h3_c00375{height:100.980000px;}
.h0_c00375{height:1262.835000px;}
.h1_c00375{height:1263.000000px;}
.w0_c00375{width:892.914000px;}
.w1_c00375{width:893.250000px;}
.x0_c00375{left:0.000000px;}
.x2_c00375{left:82.500000px;}
.x3_c00375{left:90.000000px;}
.x4_c00375{left:106.500000px;}
.x5_c00375{left:675.611100px;}
.x1_c00375{left:787.688700px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls5_c00375{letter-spacing:-0.288000pt;}
.ls4_c00375{letter-spacing:0.000000pt;}
.ls0_c00375{letter-spacing:0.640000pt;}
.ls1_c00375{letter-spacing:0.746667pt;}
.ls3_c00375{letter-spacing:1.333333pt;}
.ls2_c00375{letter-spacing:1.466667pt;}
.ws1_c00375{word-spacing:-18.912000pt;}
.ws2_c00375{word-spacing:-15.680000pt;}
.ws3_c00375{word-spacing:-13.200000pt;}
.ws4_c00375{word-spacing:-10.400000pt;}
.ws0_c00375{word-spacing:-9.066667pt;}
.wsc_c00375{word-spacing:-5.696000pt;}
.ws15_c00375{word-spacing:-3.840000pt;}
.ws11_c00375{word-spacing:-2.944000pt;}
.ws10_c00375{word-spacing:-1.408000pt;}
.ws17_c00375{word-spacing:-1.333333pt;}
.wsb_c00375{word-spacing:-0.960000pt;}
.ws6_c00375{word-spacing:-0.746667pt;}
.ws7_c00375{word-spacing:-0.384000pt;}
.ws5_c00375{word-spacing:0.000000pt;}
.ws8_c00375{word-spacing:0.704000pt;}
.wsd_c00375{word-spacing:1.664000pt;}
.ws12_c00375{word-spacing:2.624000pt;}
.ws14_c00375{word-spacing:3.008000pt;}
.wsf_c00375{word-spacing:3.392000pt;}
.ws9_c00375{word-spacing:7.744000pt;}
.ws16_c00375{word-spacing:9.536000pt;}
.wse_c00375{word-spacing:9.728000pt;}
.ws13_c00375{word-spacing:11.968000pt;}
.wsa_c00375{word-spacing:17.408000pt;}
._0_c00375{margin-left:-426.965867pt;}
._3_c00375{margin-left:-5.760000pt;}
._7_c00375{margin-left:-4.691200pt;}
._1_c00375{margin-left:-3.733333pt;}
._4_c00375{margin-left:-1.952000pt;}
._2_c00375{margin-left:-1.008000pt;}
._6_c00375{width:2.713600pt;}
._5_c00375{width:3.616000pt;}
.fs1_c00375{font-size:37.333333pt;}
.fs0_c00375{font-size:53.333333pt;}
.fs5_c00375{font-size:58.666667pt;}
.fs4_c00375{font-size:64.000000pt;}
.fs3_c00375{font-size:74.666667pt;}
.fs2_c00375{font-size:96.000000pt;}
.y0_c00375{bottom:0.000000pt;}
.y1_c00375{bottom:36.666667pt;}
.y17_c00375{bottom:94.493067pt;}
.y16_c00375{bottom:121.165067pt;}
.y15_c00375{bottom:147.837067pt;}
.y14_c00375{bottom:174.509067pt;}
.y13_c00375{bottom:201.181067pt;}
.y12_c00375{bottom:227.853067pt;}
.y11_c00375{bottom:281.186400pt;}
.y10_c00375{bottom:361.159733pt;}
.yf_c00375{bottom:387.831733pt;}
.ye_c00375{bottom:414.503733pt;}
.yd_c00375{bottom:441.175733pt;}
.yc_c00375{bottom:467.847733pt;}
.yb_c00375{bottom:494.519733pt;}
.ya_c00375{bottom:547.853067pt;}
.y9_c00375{bottom:627.826400pt;}
.y1d_c00375{bottom:627.853067pt;}
.y8_c00375{bottom:654.498400pt;}
.y1c_c00375{bottom:654.519733pt;}
.y7_c00375{bottom:681.170400pt;}
.y1b_c00375{bottom:681.186400pt;}
.y6_c00375{bottom:707.842400pt;}
.y1a_c00375{bottom:707.853067pt;}
.y5_c00375{bottom:734.514400pt;}
.y19_c00375{bottom:734.519733pt;}
.y4_c00375{bottom:761.186400pt;}
.y18_c00375{bottom:761.223200pt;}
.y3_c00375{bottom:814.519733pt;}
.y2_c00375{bottom:894.519733pt;}
.h6_c00375{height:44.704000pt;}
.h2_c00375{height:48.000000pt;}
.h5_c00375{height:57.600000pt;}
.h4_c00375{height:69.813333pt;}
.h3_c00375{height:89.760000pt;}
.h0_c00375{height:1122.520000pt;}
.h1_c00375{height:1122.666667pt;}
.w0_c00375{width:793.701333pt;}
.w1_c00375{width:794.000000pt;}
.x0_c00375{left:0.000000pt;}
.x2_c00375{left:73.333333pt;}
.x3_c00375{left:80.000000pt;}
.x4_c00375{left:94.666667pt;}
.x5_c00375{left:600.543200pt;}
.x1_c00375{left:700.167733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.161000;font-style: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);}
.m1_c00376{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls1_c00376{letter-spacing:0.000000px;}
.ls0_c00376{letter-spacing:0.720000px;}
.ls2_c00376{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsb_c00376{word-spacing:-1.800000px;}
.ws2_c00376{word-spacing:-0.840000px;}
.ws1_c00376{word-spacing:0.000000px;}
.wsa_c00376{word-spacing:2.088000px;}
.ws6_c00376{word-spacing:2.232000px;}
.ws3_c00376{word-spacing:2.808000px;}
.ws5_c00376{word-spacing:3.024000px;}
.ws7_c00376{word-spacing:3.240000px;}
.ws8_c00376{word-spacing:5.040000px;}
.ws4_c00376{word-spacing:6.336000px;}
.ws9_c00376{word-spacing:14.184000px;}
._0_c00376{margin-left:-480.336600px;}
._1_c00376{margin-left:-4.200000px;}
._2_c00376{margin-left:-2.160000px;}
._3_c00376{width:2.563200px;}
._4_c00376{width:3.996000px;}
.fc2_c00376{color:rgb(32,32,32);}
.fc1_c00376{color:rgb(232,86,17);}
.fc0_c00376{color:rgb(60,60,59);}
.fs1_c00376{font-size:42.000000px;}
.fs0_c00376{font-size:60.000000px;}
.fs3_c00376{font-size:72.000000px;}
.fs2_c00376{font-size:84.000000px;}
.y0_c00376{bottom:0.000000px;}
.y1_c00376{bottom:41.250000px;}
.ye_c00376{bottom:526.298700px;}
.yd_c00376{bottom:556.304700px;}
.yc_c00376{bottom:586.310700px;}
.yb_c00376{bottom:616.316700px;}
.ya_c00376{bottom:646.322700px;}
.y9_c00376{bottom:676.328700px;}
.y8_c00376{bottom:706.334700px;}
.y7_c00376{bottom:766.334700px;}
.y6_c00376{bottom:856.316700px;}
.y5_c00376{bottom:886.322700px;}
.y4_c00376{bottom:916.328700px;}
.y3_c00376{bottom:946.334700px;}
.y2_c00376{bottom:1006.334700px;}
.h2_c00376{height:54.000000px;}
.h4_c00376{height:64.800000px;}
.h3_c00376{height:78.540000px;}
.h0_c00376{height:1262.835000px;}
.h1_c00376{height:1263.000000px;}
.w0_c00376{width:892.914000px;}
.w1_c00376{width:893.250000px;}
.x0_c00376{left:0.000000px;}
.x2_c00376{left:90.000000px;}
.x3_c00376{left:106.500000px;}
.x1_c00376{left:789.788700px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls1_c00376{letter-spacing:0.000000pt;}
.ls0_c00376{letter-spacing:0.640000pt;}
.ls2_c00376{letter-spacing:0.746667pt;}
.ws0_c00376{word-spacing:-9.066667pt;}
.wsb_c00376{word-spacing:-1.600000pt;}
.ws2_c00376{word-spacing:-0.746667pt;}
.ws1_c00376{word-spacing:0.000000pt;}
.wsa_c00376{word-spacing:1.856000pt;}
.ws6_c00376{word-spacing:1.984000pt;}
.ws3_c00376{word-spacing:2.496000pt;}
.ws5_c00376{word-spacing:2.688000pt;}
.ws7_c00376{word-spacing:2.880000pt;}
.ws8_c00376{word-spacing:4.480000pt;}
.ws4_c00376{word-spacing:5.632000pt;}
.ws9_c00376{word-spacing:12.608000pt;}
._0_c00376{margin-left:-426.965867pt;}
._1_c00376{margin-left:-3.733333pt;}
._2_c00376{margin-left:-1.920000pt;}
._3_c00376{width:2.278400pt;}
._4_c00376{width:3.552000pt;}
.fs1_c00376{font-size:37.333333pt;}
.fs0_c00376{font-size:53.333333pt;}
.fs3_c00376{font-size:64.000000pt;}
.fs2_c00376{font-size:74.666667pt;}
.y0_c00376{bottom:0.000000pt;}
.y1_c00376{bottom:36.666667pt;}
.ye_c00376{bottom:467.821067pt;}
.yd_c00376{bottom:494.493067pt;}
.yc_c00376{bottom:521.165067pt;}
.yb_c00376{bottom:547.837067pt;}
.ya_c00376{bottom:574.509067pt;}
.y9_c00376{bottom:601.181067pt;}
.y8_c00376{bottom:627.853067pt;}
.y7_c00376{bottom:681.186400pt;}
.y6_c00376{bottom:761.170400pt;}
.y5_c00376{bottom:787.842400pt;}
.y4_c00376{bottom:814.514400pt;}
.y3_c00376{bottom:841.186400pt;}
.y2_c00376{bottom:894.519733pt;}
.h2_c00376{height:48.000000pt;}
.h4_c00376{height:57.600000pt;}
.h3_c00376{height:69.813333pt;}
.h0_c00376{height:1122.520000pt;}
.h1_c00376{height:1122.666667pt;}
.w0_c00376{width:793.701333pt;}
.w1_c00376{width:794.000000pt;}
.x0_c00376{left:0.000000pt;}
.x2_c00376{left:80.000000pt;}
.x3_c00376{left:94.666667pt;}
.x1_c00376{left:702.034400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00377;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00377;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.155000;font-style: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);}
.m1_c00377{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls2_c00377{letter-spacing:0.000000px;}
.ls0_c00377{letter-spacing:0.864000px;}
.ls1_c00377{letter-spacing:1.200000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00377{word-spacing:-13.104000px;}
.ws0_c00377{word-spacing:-10.200000px;}
.ws4_c00377{word-spacing:-2.400000px;}
.ws3_c00377{word-spacing:-0.864000px;}
.ws2_c00377{word-spacing:0.000000px;}
._0_c00377{margin-left:-480.336600px;}
._4_c00377{margin-left:-10.560000px;}
._3_c00377{margin-left:-6.480000px;}
._1_c00377{margin-left:-4.200000px;}
._5_c00377{margin-left:-2.640000px;}
._2_c00377{margin-left:-1.440000px;}
.fc3_c00377{color:rgb(255,255,255);}
.fc2_c00377{color:rgb(233,83,14);}
.fc1_c00377{color:rgb(232,86,17);}
.fc0_c00377{color:rgb(60,60,59);}
.fs1_c00377{font-size:42.000000px;}
.fs0_c00377{font-size:60.000000px;}
.fs3_c00377{font-size:72.000000px;}
.fs4_c00377{font-size:120.000000px;}
.fs2_c00377{font-size:360.000000px;}
.y0_c00377{bottom:0.000000px;}
.y1_c00377{bottom:41.250000px;}
.y15_c00377{bottom:223.238700px;}
.y14_c00377{bottom:244.244700px;}
.y13_c00377{bottom:265.250700px;}
.y12_c00377{bottom:286.256700px;}
.y11_c00377{bottom:334.262700px;}
.y10_c00377{bottom:355.268700px;}
.yf_c00377{bottom:376.274700px;}
.ye_c00377{bottom:424.280700px;}
.yd_c00377{bottom:445.286700px;}
.yc_c00377{bottom:466.292700px;}
.yb_c00377{bottom:523.298700px;}
.ya_c00377{bottom:544.304700px;}
.y9_c00377{bottom:565.310700px;}
.y8_c00377{bottom:586.316700px;}
.y7_c00377{bottom:643.322700px;}
.y6_c00377{bottom:664.328700px;}
.y5_c00377{bottom:685.334700px;}
.y4_c00377{bottom:706.340700px;}
.y3_c00377{bottom:752.834700px;}
.y19_c00377{bottom:916.334700px;}
.y18_c00377{bottom:946.334700px;}
.y17_c00377{bottom:976.334700px;}
.y16_c00377{bottom:1006.334700px;}
.y2_c00377{bottom:1093.526700px;}
.h2_c00377{height:54.000000px;}
.h5_c00377{height:64.800000px;}
.h4_c00377{height:66.456000px;}
.h6_c00377{height:112.200000px;}
.h3_c00377{height:324.000000px;}
.h0_c00377{height:1262.835000px;}
.h1_c00377{height:1263.000000px;}
.w0_c00377{width:892.914000px;}
.w1_c00377{width:893.250000px;}
.x0_c00377{left:0.000000px;}
.x2_c00377{left:81.290250px;}
.x3_c00377{left:82.393650px;}
.x5_c00377{left:112.287450px;}
.x4_c00377{left:127.393650px;}
.x1_c00377{left:787.763700px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls2_c00377{letter-spacing:0.000000pt;}
.ls0_c00377{letter-spacing:0.768000pt;}
.ls1_c00377{letter-spacing:1.066667pt;}
.ws1_c00377{word-spacing:-11.648000pt;}
.ws0_c00377{word-spacing:-9.066667pt;}
.ws4_c00377{word-spacing:-2.133333pt;}
.ws3_c00377{word-spacing:-0.768000pt;}
.ws2_c00377{word-spacing:0.000000pt;}
._0_c00377{margin-left:-426.965867pt;}
._4_c00377{margin-left:-9.386667pt;}
._3_c00377{margin-left:-5.760000pt;}
._1_c00377{margin-left:-3.733333pt;}
._5_c00377{margin-left:-2.346667pt;}
._2_c00377{margin-left:-1.280000pt;}
.fs1_c00377{font-size:37.333333pt;}
.fs0_c00377{font-size:53.333333pt;}
.fs3_c00377{font-size:64.000000pt;}
.fs4_c00377{font-size:106.666667pt;}
.fs2_c00377{font-size:320.000000pt;}
.y0_c00377{bottom:0.000000pt;}
.y1_c00377{bottom:36.666667pt;}
.y15_c00377{bottom:198.434400pt;}
.y14_c00377{bottom:217.106400pt;}
.y13_c00377{bottom:235.778400pt;}
.y12_c00377{bottom:254.450400pt;}
.y11_c00377{bottom:297.122400pt;}
.y10_c00377{bottom:315.794400pt;}
.yf_c00377{bottom:334.466400pt;}
.ye_c00377{bottom:377.138400pt;}
.yd_c00377{bottom:395.810400pt;}
.yc_c00377{bottom:414.482400pt;}
.yb_c00377{bottom:465.154400pt;}
.ya_c00377{bottom:483.826400pt;}
.y9_c00377{bottom:502.498400pt;}
.y8_c00377{bottom:521.170400pt;}
.y7_c00377{bottom:571.842400pt;}
.y6_c00377{bottom:590.514400pt;}
.y5_c00377{bottom:609.186400pt;}
.y4_c00377{bottom:627.858400pt;}
.y3_c00377{bottom:669.186400pt;}
.y19_c00377{bottom:814.519733pt;}
.y18_c00377{bottom:841.186400pt;}
.y17_c00377{bottom:867.853067pt;}
.y16_c00377{bottom:894.519733pt;}
.y2_c00377{bottom:972.023733pt;}
.h2_c00377{height:48.000000pt;}
.h5_c00377{height:57.600000pt;}
.h4_c00377{height:59.072000pt;}
.h6_c00377{height:99.733333pt;}
.h3_c00377{height:288.000000pt;}
.h0_c00377{height:1122.520000pt;}
.h1_c00377{height:1122.666667pt;}
.w0_c00377{width:793.701333pt;}
.w1_c00377{width:794.000000pt;}
.x0_c00377{left:0.000000pt;}
.x2_c00377{left:72.258000pt;}
.x3_c00377{left:73.238800pt;}
.x5_c00377{left:99.811067pt;}
.x4_c00377{left:113.238800pt;}
.x1_c00377{left:700.234400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.160000;font-style:normal;font-weight:normal;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_66e26a8742fe6fb4b4348ad3.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.199000;font-style:normal;font-weight:normal;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_ad675bc1451e3c319d92cfc3.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.161000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.024000;font-style: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);}
.m1_c00378{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls5_c00378{letter-spacing:-0.540000px;}
.ls4_c00378{letter-spacing:0.000000px;}
.ls1_c00378{letter-spacing:0.720000px;}
.ls0_c00378{letter-spacing:0.840000px;}
.ls3_c00378{letter-spacing:1.500000px;}
.ls2_c00378{letter-spacing:1.650000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00378{word-spacing:-21.060000px;}
.ws2_c00378{word-spacing:-17.640000px;}
.ws0_c00378{word-spacing:-10.200000px;}
.ws10_c00378{word-spacing:-2.736000px;}
.ws14_c00378{word-spacing:-1.500000px;}
.ws6_c00378{word-spacing:-1.152000px;}
.wse_c00378{word-spacing:-1.080000px;}
.ws4_c00378{word-spacing:-0.840000px;}
.ws3_c00378{word-spacing:0.000000px;}
.ws9_c00378{word-spacing:1.296000px;}
.ws7_c00378{word-spacing:1.800000px;}
.ws8_c00378{word-spacing:2.952000px;}
.ws11_c00378{word-spacing:3.384000px;}
.wsf_c00378{word-spacing:3.672000px;}
.wsa_c00378{word-spacing:3.960000px;}
.ws12_c00378{word-spacing:4.176000px;}
.wsb_c00378{word-spacing:6.264000px;}
.ws13_c00378{word-spacing:6.480000px;}
.wsd_c00378{word-spacing:9.144000px;}
.ws5_c00378{word-spacing:10.584000px;}
.wsc_c00378{word-spacing:11.232000px;}
._0_c00378{margin-left:-480.336600px;}
._4_c00378{margin-left:-5.688000px;}
._1_c00378{margin-left:-4.200000px;}
._2_c00378{margin-left:-1.440000px;}
._3_c00378{width:1.785600px;}
.fc3_c00378{color:rgb(32,32,32);}
.fc2_c00378{color:rgb(233,83,14);}
.fc1_c00378{color:rgb(232,86,17);}
.fc4_c00378{color:rgb(157,157,156);}
.fc0_c00378{color:rgb(60,60,59);}
.fs1_c00378{font-size:42.000000px;}
.fs0_c00378{font-size:60.000000px;}
.fs5_c00378{font-size:66.000000px;}
.fs4_c00378{font-size:72.000000px;}
.fs3_c00378{font-size:84.000000px;}
.fs2_c00378{font-size:108.000000px;}
.y0_c00378{bottom:0.000000px;}
.y1_c00378{bottom:41.250000px;}
.y16_c00378{bottom:136.280700px;}
.y15_c00378{bottom:166.286700px;}
.y14_c00378{bottom:196.292700px;}
.y13_c00378{bottom:226.298700px;}
.y12_c00378{bottom:256.304700px;}
.y11_c00378{bottom:286.310700px;}
.y10_c00378{bottom:316.316700px;}
.yf_c00378{bottom:346.322700px;}
.ye_c00378{bottom:376.328700px;}
.yd_c00378{bottom:406.334700px;}
.yc_c00378{bottom:466.334700px;}
.yb_c00378{bottom:556.322700px;}
.ya_c00378{bottom:586.328700px;}
.y9_c00378{bottom:616.334700px;}
.y8_c00378{bottom:676.334700px;}
.y1c_c00378{bottom:706.334700px;}
.y1b_c00378{bottom:736.334700px;}
.y7_c00378{bottom:766.316700px;}
.y1a_c00378{bottom:766.334700px;}
.y6_c00378{bottom:796.322700px;}
.y19_c00378{bottom:796.334700px;}
.y5_c00378{bottom:826.328700px;}
.y18_c00378{bottom:826.334700px;}
.y4_c00378{bottom:856.334700px;}
.y17_c00378{bottom:856.376100px;}
.y3_c00378{bottom:916.334700px;}
.y2_c00378{bottom:1006.334700px;}
.h6_c00378{height:50.292000px;}
.h2_c00378{height:54.000000px;}
.h5_c00378{height:64.800000px;}
.h4_c00378{height:78.540000px;}
.h3_c00378{height:100.980000px;}
.h0_c00378{height:1262.835000px;}
.h1_c00378{height:1263.000000px;}
.w0_c00378{width:892.914000px;}
.w1_c00378{width:893.250000px;}
.x0_c00378{left:0.000000px;}
.x2_c00378{left:82.500000px;}
.x3_c00378{left:90.000000px;}
.x4_c00378{left:106.500000px;}
.x5_c00378{left:675.611100px;}
.x1_c00378{left:787.688700px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls5_c00378{letter-spacing:-0.480000pt;}
.ls4_c00378{letter-spacing:0.000000pt;}
.ls1_c00378{letter-spacing:0.640000pt;}
.ls0_c00378{letter-spacing:0.746667pt;}
.ls3_c00378{letter-spacing:1.333333pt;}
.ls2_c00378{letter-spacing:1.466667pt;}
.ws1_c00378{word-spacing:-18.720000pt;}
.ws2_c00378{word-spacing:-15.680000pt;}
.ws0_c00378{word-spacing:-9.066667pt;}
.ws10_c00378{word-spacing:-2.432000pt;}
.ws14_c00378{word-spacing:-1.333333pt;}
.ws6_c00378{word-spacing:-1.024000pt;}
.wse_c00378{word-spacing:-0.960000pt;}
.ws4_c00378{word-spacing:-0.746667pt;}
.ws3_c00378{word-spacing:0.000000pt;}
.ws9_c00378{word-spacing:1.152000pt;}
.ws7_c00378{word-spacing:1.600000pt;}
.ws8_c00378{word-spacing:2.624000pt;}
.ws11_c00378{word-spacing:3.008000pt;}
.wsf_c00378{word-spacing:3.264000pt;}
.wsa_c00378{word-spacing:3.520000pt;}
.ws12_c00378{word-spacing:3.712000pt;}
.wsb_c00378{word-spacing:5.568000pt;}
.ws13_c00378{word-spacing:5.760000pt;}
.wsd_c00378{word-spacing:8.128000pt;}
.ws5_c00378{word-spacing:9.408000pt;}
.wsc_c00378{word-spacing:9.984000pt;}
._0_c00378{margin-left:-426.965867pt;}
._4_c00378{margin-left:-5.056000pt;}
._1_c00378{margin-left:-3.733333pt;}
._2_c00378{margin-left:-1.280000pt;}
._3_c00378{width:1.587200pt;}
.fs1_c00378{font-size:37.333333pt;}
.fs0_c00378{font-size:53.333333pt;}
.fs5_c00378{font-size:58.666667pt;}
.fs4_c00378{font-size:64.000000pt;}
.fs3_c00378{font-size:74.666667pt;}
.fs2_c00378{font-size:96.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y1_c00378{bottom:36.666667pt;}
.y16_c00378{bottom:121.138400pt;}
.y15_c00378{bottom:147.810400pt;}
.y14_c00378{bottom:174.482400pt;}
.y13_c00378{bottom:201.154400pt;}
.y12_c00378{bottom:227.826400pt;}
.y11_c00378{bottom:254.498400pt;}
.y10_c00378{bottom:281.170400pt;}
.yf_c00378{bottom:307.842400pt;}
.ye_c00378{bottom:334.514400pt;}
.yd_c00378{bottom:361.186400pt;}
.yc_c00378{bottom:414.519733pt;}
.yb_c00378{bottom:494.509067pt;}
.ya_c00378{bottom:521.181067pt;}
.y9_c00378{bottom:547.853067pt;}
.y8_c00378{bottom:601.186400pt;}
.y1c_c00378{bottom:627.853067pt;}
.y1b_c00378{bottom:654.519733pt;}
.y7_c00378{bottom:681.170400pt;}
.y1a_c00378{bottom:681.186400pt;}
.y6_c00378{bottom:707.842400pt;}
.y19_c00378{bottom:707.853067pt;}
.y5_c00378{bottom:734.514400pt;}
.y18_c00378{bottom:734.519733pt;}
.y4_c00378{bottom:761.186400pt;}
.y17_c00378{bottom:761.223200pt;}
.y3_c00378{bottom:814.519733pt;}
.y2_c00378{bottom:894.519733pt;}
.h6_c00378{height:44.704000pt;}
.h2_c00378{height:48.000000pt;}
.h5_c00378{height:57.600000pt;}
.h4_c00378{height:69.813333pt;}
.h3_c00378{height:89.760000pt;}
.h0_c00378{height:1122.520000pt;}
.h1_c00378{height:1122.666667pt;}
.w0_c00378{width:793.701333pt;}
.w1_c00378{width:794.000000pt;}
.x0_c00378{left:0.000000pt;}
.x2_c00378{left:73.333333pt;}
.x3_c00378{left:80.000000pt;}
.x4_c00378{left:94.666667pt;}
.x5_c00378{left:600.543200pt;}
.x1_c00378{left:700.167733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.199000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.161000;font-style: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);}
.m1_c00379{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls1_c00379{letter-spacing:0.000000px;}
.ls0_c00379{letter-spacing:0.720000px;}
.ls2_c00379{letter-spacing:0.840000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00379{word-spacing:-12.960000px;}
.ws0_c00379{word-spacing:-10.200000px;}
.wsf_c00379{word-spacing:-4.752000px;}
.wsb_c00379{word-spacing:-3.168000px;}
.wsd_c00379{word-spacing:-2.016000px;}
.ws3_c00379{word-spacing:-0.840000px;}
.ws6_c00379{word-spacing:-0.720000px;}
.wsc_c00379{word-spacing:-0.576000px;}
.ws8_c00379{word-spacing:-0.288000px;}
.ws7_c00379{word-spacing:-0.144000px;}
.ws2_c00379{word-spacing:0.000000px;}
.ws9_c00379{word-spacing:1.656000px;}
.ws5_c00379{word-spacing:5.688000px;}
.ws4_c00379{word-spacing:7.272000px;}
.wse_c00379{word-spacing:8.784000px;}
.wsa_c00379{word-spacing:12.672000px;}
._0_c00379{margin-left:-480.337200px;}
._5_c00379{margin-left:-13.845600px;}
._6_c00379{margin-left:-7.466400px;}
._2_c00379{margin-left:-5.760000px;}
._1_c00379{margin-left:-4.200000px;}
._8_c00379{margin-left:-2.822400px;}
._3_c00379{margin-left:-1.440000px;}
._9_c00379{width:1.180800px;}
._4_c00379{width:6.408000px;}
._7_c00379{width:13.392000px;}
.fc2_c00379{color:rgb(32,32,32);}
.fc1_c00379{color:rgb(232,86,17);}
.fc0_c00379{color:rgb(60,60,59);}
.fs1_c00379{font-size:42.000000px;}
.fs0_c00379{font-size:60.000000px;}
.fs3_c00379{font-size:72.000000px;}
.fs2_c00379{font-size:84.000000px;}
.y0_c00379{bottom:0.000000px;}
.y1_c00379{bottom:41.250000px;}
.y10_c00379{bottom:466.304700px;}
.yf_c00379{bottom:496.310700px;}
.ye_c00379{bottom:526.316700px;}
.yd_c00379{bottom:556.322700px;}
.yc_c00379{bottom:586.328700px;}
.yb_c00379{bottom:616.334700px;}
.ya_c00379{bottom:676.334700px;}
.y9_c00379{bottom:766.298700px;}
.y8_c00379{bottom:796.304700px;}
.y7_c00379{bottom:826.310700px;}
.y6_c00379{bottom:856.316700px;}
.y5_c00379{bottom:886.322700px;}
.y4_c00379{bottom:916.328700px;}
.y3_c00379{bottom:946.334700px;}
.y2_c00379{bottom:1006.334700px;}
.h2_c00379{height:54.000000px;}
.h4_c00379{height:64.800000px;}
.h3_c00379{height:78.540000px;}
.h0_c00379{height:1262.835000px;}
.h1_c00379{height:1263.000000px;}
.w0_c00379{width:892.914000px;}
.w1_c00379{width:893.250000px;}
.x0_c00379{left:0.000000px;}
.x2_c00379{left:90.000000px;}
.x3_c00379{left:106.500000px;}
.x1_c00379{left:785.678850px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls1_c00379{letter-spacing:0.000000pt;}
.ls0_c00379{letter-spacing:0.640000pt;}
.ls2_c00379{letter-spacing:0.746667pt;}
.ws1_c00379{word-spacing:-11.520000pt;}
.ws0_c00379{word-spacing:-9.066667pt;}
.wsf_c00379{word-spacing:-4.224000pt;}
.wsb_c00379{word-spacing:-2.816000pt;}
.wsd_c00379{word-spacing:-1.792000pt;}
.ws3_c00379{word-spacing:-0.746667pt;}
.ws6_c00379{word-spacing:-0.640000pt;}
.wsc_c00379{word-spacing:-0.512000pt;}
.ws8_c00379{word-spacing:-0.256000pt;}
.ws7_c00379{word-spacing:-0.128000pt;}
.ws2_c00379{word-spacing:0.000000pt;}
.ws9_c00379{word-spacing:1.472000pt;}
.ws5_c00379{word-spacing:5.056000pt;}
.ws4_c00379{word-spacing:6.464000pt;}
.wse_c00379{word-spacing:7.808000pt;}
.wsa_c00379{word-spacing:11.264000pt;}
._0_c00379{margin-left:-426.966400pt;}
._5_c00379{margin-left:-12.307200pt;}
._6_c00379{margin-left:-6.636800pt;}
._2_c00379{margin-left:-5.120000pt;}
._1_c00379{margin-left:-3.733333pt;}
._8_c00379{margin-left:-2.508800pt;}
._3_c00379{margin-left:-1.280000pt;}
._9_c00379{width:1.049600pt;}
._4_c00379{width:5.696000pt;}
._7_c00379{width:11.904000pt;}
.fs1_c00379{font-size:37.333333pt;}
.fs0_c00379{font-size:53.333333pt;}
.fs3_c00379{font-size:64.000000pt;}
.fs2_c00379{font-size:74.666667pt;}
.y0_c00379{bottom:0.000000pt;}
.y1_c00379{bottom:36.666667pt;}
.y10_c00379{bottom:414.493067pt;}
.yf_c00379{bottom:441.165067pt;}
.ye_c00379{bottom:467.837067pt;}
.yd_c00379{bottom:494.509067pt;}
.yc_c00379{bottom:521.181067pt;}
.yb_c00379{bottom:547.853067pt;}
.ya_c00379{bottom:601.186400pt;}
.y9_c00379{bottom:681.154400pt;}
.y8_c00379{bottom:707.826400pt;}
.y7_c00379{bottom:734.498400pt;}
.y6_c00379{bottom:761.170400pt;}
.y5_c00379{bottom:787.842400pt;}
.y4_c00379{bottom:814.514400pt;}
.y3_c00379{bottom:841.186400pt;}
.y2_c00379{bottom:894.519733pt;}
.h2_c00379{height:48.000000pt;}
.h4_c00379{height:57.600000pt;}
.h3_c00379{height:69.813333pt;}
.h0_c00379{height:1122.520000pt;}
.h1_c00379{height:1122.666667pt;}
.w0_c00379{width:793.701333pt;}
.w1_c00379{width:794.000000pt;}
.x0_c00379{left:0.000000pt;}
.x2_c00379{left:80.000000pt;}
.x3_c00379{left:94.666667pt;}
.x1_c00379{left:698.381200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_311dd56d08d3cad216b12910.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.160000;font-style:normal;font-weight:normal;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_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.199000;font-style:normal;font-weight:normal;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_ad675bc1451e3c319d92cfc3.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:1.024000;font-style: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);}
.m1_c00380{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls5_c00380{letter-spacing:-0.324000px;}
.ls4_c00380{letter-spacing:0.000000px;}
.ls1_c00380{letter-spacing:0.720000px;}
.ls0_c00380{letter-spacing:0.840000px;}
.ls3_c00380{letter-spacing:1.500000px;}
.ls2_c00380{letter-spacing:1.650000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00380{word-spacing:-21.276000px;}
.ws2_c00380{word-spacing:-14.850000px;}
.ws0_c00380{word-spacing:-10.200000px;}
.wsb_c00380{word-spacing:-9.216000px;}
.wsa_c00380{word-spacing:-8.208000px;}
.ws9_c00380{word-spacing:-2.952000px;}
.ws8_c00380{word-spacing:-1.800000px;}
.ws12_c00380{word-spacing:-1.500000px;}
.ws4_c00380{word-spacing:-0.840000px;}
.ws13_c00380{word-spacing:-0.480000px;}
.ws3_c00380{word-spacing:0.000000px;}
.ws6_c00380{word-spacing:1.440000px;}
.wse_c00380{word-spacing:2.304000px;}
.wsf_c00380{word-spacing:3.888000px;}
.ws10_c00380{word-spacing:4.608000px;}
.ws11_c00380{word-spacing:5.184000px;}
.wsc_c00380{word-spacing:5.904000px;}
.wsd_c00380{word-spacing:5.976000px;}
.ws5_c00380{word-spacing:6.048000px;}
.ws7_c00380{word-spacing:12.096000px;}
._0_c00380{margin-left:-480.337800px;}
._6_c00380{margin-left:-7.881600px;}
._5_c00380{margin-left:-5.904000px;}
._1_c00380{margin-left:-4.200000px;}
._4_c00380{margin-left:-2.212800px;}
._2_c00380{margin-left:-1.134000px;}
._3_c00380{width:1.699200px;}
._8_c00380{width:3.296400px;}
._7_c00380{width:6.014400px;}
.fc3_c00380{color:rgb(32,32,32);}
.fc2_c00380{color:rgb(233,83,14);}
.fc1_c00380{color:rgb(232,86,17);}
.fc4_c00380{color:rgb(157,157,156);}
.fc0_c00380{color:rgb(60,60,59);}
.fs1_c00380{font-size:42.000000px;}
.fs0_c00380{font-size:60.000000px;}
.fs5_c00380{font-size:66.000000px;}
.fs4_c00380{font-size:72.000000px;}
.fs3_c00380{font-size:84.000000px;}
.fs2_c00380{font-size:108.000000px;}
.y0_c00380{bottom:0.000000px;}
.y1_c00380{bottom:41.250000px;}
.y14_c00380{bottom:196.280700px;}
.y13_c00380{bottom:226.286700px;}
.y12_c00380{bottom:256.292700px;}
.y11_c00380{bottom:286.298700px;}
.y10_c00380{bottom:316.304700px;}
.yf_c00380{bottom:346.310700px;}
.ye_c00380{bottom:376.316700px;}
.yd_c00380{bottom:406.322700px;}
.yc_c00380{bottom:436.328700px;}
.yb_c00380{bottom:466.334700px;}
.ya_c00380{bottom:526.334700px;}
.y9_c00380{bottom:616.322700px;}
.y8_c00380{bottom:646.328700px;}
.y7_c00380{bottom:676.334700px;}
.y19_c00380{bottom:706.334700px;}
.y6_c00380{bottom:736.334700px;}
.y18_c00380{bottom:766.334700px;}
.y17_c00380{bottom:796.334700px;}
.y5_c00380{bottom:826.328700px;}
.y16_c00380{bottom:826.334700px;}
.y4_c00380{bottom:856.334700px;}
.y15_c00380{bottom:856.376100px;}
.y3_c00380{bottom:916.334700px;}
.y2_c00380{bottom:1006.334700px;}
.h6_c00380{height:50.292000px;}
.h2_c00380{height:54.000000px;}
.h5_c00380{height:64.800000px;}
.h4_c00380{height:78.540000px;}
.h3_c00380{height:100.980000px;}
.h0_c00380{height:1262.835000px;}
.h1_c00380{height:1263.000000px;}
.w0_c00380{width:892.914000px;}
.w1_c00380{width:893.250000px;}
.x0_c00380{left:0.000000px;}
.x2_c00380{left:82.500000px;}
.x3_c00380{left:90.000000px;}
.x4_c00380{left:106.500000px;}
.x5_c00380{left:675.611100px;}
.x1_c00380{left:789.339000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls5_c00380{letter-spacing:-0.288000pt;}
.ls4_c00380{letter-spacing:0.000000pt;}
.ls1_c00380{letter-spacing:0.640000pt;}
.ls0_c00380{letter-spacing:0.746667pt;}
.ls3_c00380{letter-spacing:1.333333pt;}
.ls2_c00380{letter-spacing:1.466667pt;}
.ws1_c00380{word-spacing:-18.912000pt;}
.ws2_c00380{word-spacing:-13.200000pt;}
.ws0_c00380{word-spacing:-9.066667pt;}
.wsb_c00380{word-spacing:-8.192000pt;}
.wsa_c00380{word-spacing:-7.296000pt;}
.ws9_c00380{word-spacing:-2.624000pt;}
.ws8_c00380{word-spacing:-1.600000pt;}
.ws12_c00380{word-spacing:-1.333333pt;}
.ws4_c00380{word-spacing:-0.746667pt;}
.ws13_c00380{word-spacing:-0.426667pt;}
.ws3_c00380{word-spacing:0.000000pt;}
.ws6_c00380{word-spacing:1.280000pt;}
.wse_c00380{word-spacing:2.048000pt;}
.wsf_c00380{word-spacing:3.456000pt;}
.ws10_c00380{word-spacing:4.096000pt;}
.ws11_c00380{word-spacing:4.608000pt;}
.wsc_c00380{word-spacing:5.248000pt;}
.wsd_c00380{word-spacing:5.312000pt;}
.ws5_c00380{word-spacing:5.376000pt;}
.ws7_c00380{word-spacing:10.752000pt;}
._0_c00380{margin-left:-426.966933pt;}
._6_c00380{margin-left:-7.005867pt;}
._5_c00380{margin-left:-5.248000pt;}
._1_c00380{margin-left:-3.733333pt;}
._4_c00380{margin-left:-1.966933pt;}
._2_c00380{margin-left:-1.008000pt;}
._3_c00380{width:1.510400pt;}
._8_c00380{width:2.930133pt;}
._7_c00380{width:5.346133pt;}
.fs1_c00380{font-size:37.333333pt;}
.fs0_c00380{font-size:53.333333pt;}
.fs5_c00380{font-size:58.666667pt;}
.fs4_c00380{font-size:64.000000pt;}
.fs3_c00380{font-size:74.666667pt;}
.fs2_c00380{font-size:96.000000pt;}
.y0_c00380{bottom:0.000000pt;}
.y1_c00380{bottom:36.666667pt;}
.y14_c00380{bottom:174.471733pt;}
.y13_c00380{bottom:201.143733pt;}
.y12_c00380{bottom:227.815733pt;}
.y11_c00380{bottom:254.487733pt;}
.y10_c00380{bottom:281.159733pt;}
.yf_c00380{bottom:307.831733pt;}
.ye_c00380{bottom:334.503733pt;}
.yd_c00380{bottom:361.175733pt;}
.yc_c00380{bottom:387.847733pt;}
.yb_c00380{bottom:414.519733pt;}
.ya_c00380{bottom:467.853067pt;}
.y9_c00380{bottom:547.842400pt;}
.y8_c00380{bottom:574.514400pt;}
.y7_c00380{bottom:601.186400pt;}
.y19_c00380{bottom:627.853067pt;}
.y6_c00380{bottom:654.519733pt;}
.y18_c00380{bottom:681.186400pt;}
.y17_c00380{bottom:707.853067pt;}
.y5_c00380{bottom:734.514400pt;}
.y16_c00380{bottom:734.519733pt;}
.y4_c00380{bottom:761.186400pt;}
.y15_c00380{bottom:761.223200pt;}
.y3_c00380{bottom:814.519733pt;}
.y2_c00380{bottom:894.519733pt;}
.h6_c00380{height:44.704000pt;}
.h2_c00380{height:48.000000pt;}
.h5_c00380{height:57.600000pt;}
.h4_c00380{height:69.813333pt;}
.h3_c00380{height:89.760000pt;}
.h0_c00380{height:1122.520000pt;}
.h1_c00380{height:1122.666667pt;}
.w0_c00380{width:793.701333pt;}
.w1_c00380{width:794.000000pt;}
.x0_c00380{left:0.000000pt;}
.x2_c00380{left:73.333333pt;}
.x3_c00380{left:80.000000pt;}
.x4_c00380{left:94.666667pt;}
.x5_c00380{left:600.543200pt;}
.x1_c00380{left:701.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_795c1aff8c99ee916373da00.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.199000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.161000;font-style: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);}
.m1_c00381{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls1_c00381{letter-spacing:0.000000px;}
.ls0_c00381{letter-spacing:0.720000px;}
.ls2_c00381{letter-spacing:0.840000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00381{word-spacing:-12.960000px;}
.ws0_c00381{word-spacing:-10.200000px;}
.wsd_c00381{word-spacing:-0.864000px;}
.ws3_c00381{word-spacing:-0.840000px;}
.wsb_c00381{word-spacing:-0.792000px;}
.ws6_c00381{word-spacing:-0.720000px;}
.ws2_c00381{word-spacing:0.000000px;}
.wsc_c00381{word-spacing:5.688000px;}
.ws5_c00381{word-spacing:6.264000px;}
.ws4_c00381{word-spacing:7.488000px;}
.ws7_c00381{word-spacing:8.352000px;}
.ws8_c00381{word-spacing:9.720000px;}
.wsa_c00381{word-spacing:10.728000px;}
.ws9_c00381{word-spacing:13.680000px;}
._0_c00381{margin-left:-480.337200px;}
._7_c00381{margin-left:-5.400000px;}
._1_c00381{margin-left:-4.200000px;}
._6_c00381{margin-left:-2.584800px;}
._2_c00381{margin-left:-1.440000px;}
._3_c00381{width:1.368000px;}
._4_c00381{width:6.144000px;}
._5_c00381{width:8.784000px;}
.fc2_c00381{color:rgb(32,32,32);}
.fc1_c00381{color:rgb(232,86,17);}
.fc0_c00381{color:rgb(60,60,59);}
.fs1_c00381{font-size:42.000000px;}
.fs0_c00381{font-size:60.000000px;}
.fs3_c00381{font-size:72.000000px;}
.fs2_c00381{font-size:84.000000px;}
.y0_c00381{bottom:0.000000px;}
.y1_c00381{bottom:41.250000px;}
.yd_c00381{bottom:556.304700px;}
.yc_c00381{bottom:586.310700px;}
.yb_c00381{bottom:616.316700px;}
.ya_c00381{bottom:646.322700px;}
.y9_c00381{bottom:676.328700px;}
.y8_c00381{bottom:706.334700px;}
.y7_c00381{bottom:766.334700px;}
.y6_c00381{bottom:856.316700px;}
.y5_c00381{bottom:886.322700px;}
.y4_c00381{bottom:916.328700px;}
.y3_c00381{bottom:946.334700px;}
.y2_c00381{bottom:1006.334700px;}
.h2_c00381{height:54.000000px;}
.h4_c00381{height:64.800000px;}
.h3_c00381{height:78.540000px;}
.h0_c00381{height:1262.835000px;}
.h1_c00381{height:1263.000000px;}
.w0_c00381{width:892.914000px;}
.w1_c00381{width:893.250000px;}
.x0_c00381{left:0.000000px;}
.x2_c00381{left:90.000000px;}
.x3_c00381{left:106.500000px;}
.x1_c00381{left:786.863850px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls1_c00381{letter-spacing:0.000000pt;}
.ls0_c00381{letter-spacing:0.640000pt;}
.ls2_c00381{letter-spacing:0.746667pt;}
.ws1_c00381{word-spacing:-11.520000pt;}
.ws0_c00381{word-spacing:-9.066667pt;}
.wsd_c00381{word-spacing:-0.768000pt;}
.ws3_c00381{word-spacing:-0.746667pt;}
.wsb_c00381{word-spacing:-0.704000pt;}
.ws6_c00381{word-spacing:-0.640000pt;}
.ws2_c00381{word-spacing:0.000000pt;}
.wsc_c00381{word-spacing:5.056000pt;}
.ws5_c00381{word-spacing:5.568000pt;}
.ws4_c00381{word-spacing:6.656000pt;}
.ws7_c00381{word-spacing:7.424000pt;}
.ws8_c00381{word-spacing:8.640000pt;}
.wsa_c00381{word-spacing:9.536000pt;}
.ws9_c00381{word-spacing:12.160000pt;}
._0_c00381{margin-left:-426.966400pt;}
._7_c00381{margin-left:-4.800000pt;}
._1_c00381{margin-left:-3.733333pt;}
._6_c00381{margin-left:-2.297600pt;}
._2_c00381{margin-left:-1.280000pt;}
._3_c00381{width:1.216000pt;}
._4_c00381{width:5.461333pt;}
._5_c00381{width:7.808000pt;}
.fs1_c00381{font-size:37.333333pt;}
.fs0_c00381{font-size:53.333333pt;}
.fs3_c00381{font-size:64.000000pt;}
.fs2_c00381{font-size:74.666667pt;}
.y0_c00381{bottom:0.000000pt;}
.y1_c00381{bottom:36.666667pt;}
.yd_c00381{bottom:494.493067pt;}
.yc_c00381{bottom:521.165067pt;}
.yb_c00381{bottom:547.837067pt;}
.ya_c00381{bottom:574.509067pt;}
.y9_c00381{bottom:601.181067pt;}
.y8_c00381{bottom:627.853067pt;}
.y7_c00381{bottom:681.186400pt;}
.y6_c00381{bottom:761.170400pt;}
.y5_c00381{bottom:787.842400pt;}
.y4_c00381{bottom:814.514400pt;}
.y3_c00381{bottom:841.186400pt;}
.y2_c00381{bottom:894.519733pt;}
.h2_c00381{height:48.000000pt;}
.h4_c00381{height:57.600000pt;}
.h3_c00381{height:69.813333pt;}
.h0_c00381{height:1122.520000pt;}
.h1_c00381{height:1122.666667pt;}
.w0_c00381{width:793.701333pt;}
.w1_c00381{width:794.000000pt;}
.x0_c00381{left:0.000000pt;}
.x2_c00381{left:80.000000pt;}
.x3_c00381{left:94.666667pt;}
.x1_c00381{left:699.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00382;src:url('chunks/assets/font_33c67a7a21b3428d95d6a908.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00382{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls2_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:0.864000px;}
.ls1_c00382{letter-spacing:1.200000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00382{word-spacing:-13.104000px;}
.ws0_c00382{word-spacing:-10.200000px;}
.ws4_c00382{word-spacing:-1.440000px;}
.ws3_c00382{word-spacing:-0.864000px;}
.ws2_c00382{word-spacing:0.000000px;}
._0_c00382{margin-left:-480.337800px;}
._7_c00382{margin-left:-16.560000px;}
._6_c00382{margin-left:-8.160000px;}
._3_c00382{margin-left:-6.480000px;}
._5_c00382{margin-left:-5.400000px;}
._1_c00382{margin-left:-4.200000px;}
._2_c00382{margin-left:-1.440000px;}
._4_c00382{width:1.440000px;}
.fc3_c00382{color:rgb(255,255,255);}
.fc2_c00382{color:rgb(233,83,14);}
.fc1_c00382{color:rgb(232,86,17);}
.fc0_c00382{color:rgb(60,60,59);}
.fs1_c00382{font-size:42.000000px;}
.fs0_c00382{font-size:60.000000px;}
.fs3_c00382{font-size:72.000000px;}
.fs4_c00382{font-size:120.000000px;}
.fs2_c00382{font-size:360.000000px;}
.y0_c00382{bottom:0.000000px;}
.y1_c00382{bottom:41.250000px;}
.yf_c00382{bottom:394.274700px;}
.ye_c00382{bottom:415.280700px;}
.yd_c00382{bottom:436.286700px;}
.yc_c00382{bottom:484.292700px;}
.yb_c00382{bottom:505.298700px;}
.ya_c00382{bottom:526.304700px;}
.y9_c00382{bottom:574.310700px;}
.y8_c00382{bottom:595.316700px;}
.y7_c00382{bottom:616.322700px;}
.y6_c00382{bottom:664.328700px;}
.y5_c00382{bottom:685.334700px;}
.y4_c00382{bottom:706.340700px;}
.y3_c00382{bottom:752.834700px;}
.y12_c00382{bottom:946.334700px;}
.y11_c00382{bottom:976.334700px;}
.y10_c00382{bottom:1006.334700px;}
.y2_c00382{bottom:1093.526700px;}
.h2_c00382{height:54.000000px;}
.h5_c00382{height:64.800000px;}
.h4_c00382{height:66.456000px;}
.h6_c00382{height:112.200000px;}
.h3_c00382{height:324.000000px;}
.h0_c00382{height:1262.835000px;}
.h1_c00382{height:1263.000000px;}
.w0_c00382{width:892.914000px;}
.w1_c00382{width:893.250000px;}
.x0_c00382{left:0.000000px;}
.x2_c00382{left:81.290250px;}
.x3_c00382{left:82.393650px;}
.x5_c00382{left:112.287450px;}
.x4_c00382{left:127.393650px;}
.x1_c00382{left:786.714000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls2_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:0.768000pt;}
.ls1_c00382{letter-spacing:1.066667pt;}
.ws1_c00382{word-spacing:-11.648000pt;}
.ws0_c00382{word-spacing:-9.066667pt;}
.ws4_c00382{word-spacing:-1.280000pt;}
.ws3_c00382{word-spacing:-0.768000pt;}
.ws2_c00382{word-spacing:0.000000pt;}
._0_c00382{margin-left:-426.966933pt;}
._7_c00382{margin-left:-14.720000pt;}
._6_c00382{margin-left:-7.253333pt;}
._3_c00382{margin-left:-5.760000pt;}
._5_c00382{margin-left:-4.800000pt;}
._1_c00382{margin-left:-3.733333pt;}
._2_c00382{margin-left:-1.280000pt;}
._4_c00382{width:1.280000pt;}
.fs1_c00382{font-size:37.333333pt;}
.fs0_c00382{font-size:53.333333pt;}
.fs3_c00382{font-size:64.000000pt;}
.fs4_c00382{font-size:106.666667pt;}
.fs2_c00382{font-size:320.000000pt;}
.y0_c00382{bottom:0.000000pt;}
.y1_c00382{bottom:36.666667pt;}
.yf_c00382{bottom:350.466400pt;}
.ye_c00382{bottom:369.138400pt;}
.yd_c00382{bottom:387.810400pt;}
.yc_c00382{bottom:430.482400pt;}
.yb_c00382{bottom:449.154400pt;}
.ya_c00382{bottom:467.826400pt;}
.y9_c00382{bottom:510.498400pt;}
.y8_c00382{bottom:529.170400pt;}
.y7_c00382{bottom:547.842400pt;}
.y6_c00382{bottom:590.514400pt;}
.y5_c00382{bottom:609.186400pt;}
.y4_c00382{bottom:627.858400pt;}
.y3_c00382{bottom:669.186400pt;}
.y12_c00382{bottom:841.186400pt;}
.y11_c00382{bottom:867.853067pt;}
.y10_c00382{bottom:894.519733pt;}
.y2_c00382{bottom:972.023733pt;}
.h2_c00382{height:48.000000pt;}
.h5_c00382{height:57.600000pt;}
.h4_c00382{height:59.072000pt;}
.h6_c00382{height:99.733333pt;}
.h3_c00382{height:288.000000pt;}
.h0_c00382{height:1122.520000pt;}
.h1_c00382{height:1122.666667pt;}
.w0_c00382{width:793.701333pt;}
.w1_c00382{width:794.000000pt;}
.x0_c00382{left:0.000000pt;}
.x2_c00382{left:72.258000pt;}
.x3_c00382{left:73.238800pt;}
.x5_c00382{left:99.811067pt;}
.x4_c00382{left:113.238800pt;}
.x1_c00382{left:699.301333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00383;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.161000;font-style: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);}
.m1_c00383{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls5_c00383{letter-spacing:-0.540000px;}
.ls4_c00383{letter-spacing:0.000000px;}
.ls0_c00383{letter-spacing:0.720000px;}
.ls1_c00383{letter-spacing:0.840000px;}
.ls3_c00383{letter-spacing:1.500000px;}
.ls2_c00383{letter-spacing:1.650000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00383{word-spacing:-21.060000px;}
.ws2_c00383{word-spacing:-17.640000px;}
.ws3_c00383{word-spacing:-11.700000px;}
.ws0_c00383{word-spacing:-10.200000px;}
.ws8_c00383{word-spacing:-1.728000px;}
.ws9_c00383{word-spacing:-1.656000px;}
.ws11_c00383{word-spacing:-1.500000px;}
.wsc_c00383{word-spacing:-1.080000px;}
.ws5_c00383{word-spacing:-0.840000px;}
.ws6_c00383{word-spacing:-0.360000px;}
.wsa_c00383{word-spacing:-0.288000px;}
.ws4_c00383{word-spacing:0.000000px;}
.wsd_c00383{word-spacing:3.600000px;}
.wse_c00383{word-spacing:4.680000px;}
.wsb_c00383{word-spacing:6.480000px;}
.ws10_c00383{word-spacing:8.280000px;}
.wsf_c00383{word-spacing:8.928000px;}
.ws7_c00383{word-spacing:9.216000px;}
._0_c00383{margin-left:-480.337200px;}
._7_c00383{margin-left:-7.392000px;}
._1_c00383{margin-left:-4.200000px;}
._3_c00383{margin-left:-2.347200px;}
._2_c00383{margin-left:-1.238400px;}
._4_c00383{width:1.029600px;}
._5_c00383{width:2.916000px;}
._6_c00383{width:5.292000px;}
.fc3_c00383{color:rgb(32,32,32);}
.fc2_c00383{color:rgb(233,83,14);}
.fc1_c00383{color:rgb(232,86,17);}
.fc4_c00383{color:rgb(157,157,156);}
.fc0_c00383{color:rgb(60,60,59);}
.fs1_c00383{font-size:42.000000px;}
.fs0_c00383{font-size:60.000000px;}
.fs5_c00383{font-size:66.000000px;}
.fs4_c00383{font-size:72.000000px;}
.fs3_c00383{font-size:84.000000px;}
.fs2_c00383{font-size:108.000000px;}
.y0_c00383{bottom:0.000000px;}
.y1_c00383{bottom:41.250000px;}
.y14_c00383{bottom:196.316700px;}
.y13_c00383{bottom:226.322700px;}
.y12_c00383{bottom:256.328700px;}
.y11_c00383{bottom:286.334700px;}
.y10_c00383{bottom:346.334700px;}
.yf_c00383{bottom:436.310700px;}
.ye_c00383{bottom:466.316700px;}
.yd_c00383{bottom:496.322700px;}
.yc_c00383{bottom:526.328700px;}
.yb_c00383{bottom:556.334700px;}
.ya_c00383{bottom:616.334700px;}
.y9_c00383{bottom:706.304700px;}
.y1a_c00383{bottom:706.334700px;}
.y8_c00383{bottom:736.310700px;}
.y19_c00383{bottom:736.334700px;}
.y7_c00383{bottom:766.316700px;}
.y18_c00383{bottom:766.334700px;}
.y6_c00383{bottom:796.322700px;}
.y17_c00383{bottom:796.334700px;}
.y5_c00383{bottom:826.328700px;}
.y16_c00383{bottom:826.334700px;}
.y4_c00383{bottom:856.334700px;}
.y15_c00383{bottom:856.376100px;}
.y3_c00383{bottom:916.334700px;}
.y2_c00383{bottom:1006.334700px;}
.h6_c00383{height:50.292000px;}
.h2_c00383{height:54.000000px;}
.h5_c00383{height:64.800000px;}
.h4_c00383{height:78.540000px;}
.h3_c00383{height:100.980000px;}
.h0_c00383{height:1262.835000px;}
.h1_c00383{height:1263.000000px;}
.w0_c00383{width:892.914000px;}
.w1_c00383{width:893.250000px;}
.x0_c00383{left:0.000000px;}
.x2_c00383{left:82.500000px;}
.x3_c00383{left:90.000000px;}
.x4_c00383{left:106.500000px;}
.x5_c00383{left:675.611100px;}
.x1_c00383{left:785.738850px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls5_c00383{letter-spacing:-0.480000pt;}
.ls4_c00383{letter-spacing:0.000000pt;}
.ls0_c00383{letter-spacing:0.640000pt;}
.ls1_c00383{letter-spacing:0.746667pt;}
.ls3_c00383{letter-spacing:1.333333pt;}
.ls2_c00383{letter-spacing:1.466667pt;}
.ws1_c00383{word-spacing:-18.720000pt;}
.ws2_c00383{word-spacing:-15.680000pt;}
.ws3_c00383{word-spacing:-10.400000pt;}
.ws0_c00383{word-spacing:-9.066667pt;}
.ws8_c00383{word-spacing:-1.536000pt;}
.ws9_c00383{word-spacing:-1.472000pt;}
.ws11_c00383{word-spacing:-1.333333pt;}
.wsc_c00383{word-spacing:-0.960000pt;}
.ws5_c00383{word-spacing:-0.746667pt;}
.ws6_c00383{word-spacing:-0.320000pt;}
.wsa_c00383{word-spacing:-0.256000pt;}
.ws4_c00383{word-spacing:0.000000pt;}
.wsd_c00383{word-spacing:3.200000pt;}
.wse_c00383{word-spacing:4.160000pt;}
.wsb_c00383{word-spacing:5.760000pt;}
.ws10_c00383{word-spacing:7.360000pt;}
.wsf_c00383{word-spacing:7.936000pt;}
.ws7_c00383{word-spacing:8.192000pt;}
._0_c00383{margin-left:-426.966400pt;}
._7_c00383{margin-left:-6.570667pt;}
._1_c00383{margin-left:-3.733333pt;}
._3_c00383{margin-left:-2.086400pt;}
._2_c00383{margin-left:-1.100800pt;}
._4_c00383{width:0.915200pt;}
._5_c00383{width:2.592000pt;}
._6_c00383{width:4.704000pt;}
.fs1_c00383{font-size:37.333333pt;}
.fs0_c00383{font-size:53.333333pt;}
.fs5_c00383{font-size:58.666667pt;}
.fs4_c00383{font-size:64.000000pt;}
.fs3_c00383{font-size:74.666667pt;}
.fs2_c00383{font-size:96.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y1_c00383{bottom:36.666667pt;}
.y14_c00383{bottom:174.503733pt;}
.y13_c00383{bottom:201.175733pt;}
.y12_c00383{bottom:227.847733pt;}
.y11_c00383{bottom:254.519733pt;}
.y10_c00383{bottom:307.853067pt;}
.yf_c00383{bottom:387.831733pt;}
.ye_c00383{bottom:414.503733pt;}
.yd_c00383{bottom:441.175733pt;}
.yc_c00383{bottom:467.847733pt;}
.yb_c00383{bottom:494.519733pt;}
.ya_c00383{bottom:547.853067pt;}
.y9_c00383{bottom:627.826400pt;}
.y1a_c00383{bottom:627.853067pt;}
.y8_c00383{bottom:654.498400pt;}
.y19_c00383{bottom:654.519733pt;}
.y7_c00383{bottom:681.170400pt;}
.y18_c00383{bottom:681.186400pt;}
.y6_c00383{bottom:707.842400pt;}
.y17_c00383{bottom:707.853067pt;}
.y5_c00383{bottom:734.514400pt;}
.y16_c00383{bottom:734.519733pt;}
.y4_c00383{bottom:761.186400pt;}
.y15_c00383{bottom:761.223200pt;}
.y3_c00383{bottom:814.519733pt;}
.y2_c00383{bottom:894.519733pt;}
.h6_c00383{height:44.704000pt;}
.h2_c00383{height:48.000000pt;}
.h5_c00383{height:57.600000pt;}
.h4_c00383{height:69.813333pt;}
.h3_c00383{height:89.760000pt;}
.h0_c00383{height:1122.520000pt;}
.h1_c00383{height:1122.666667pt;}
.w0_c00383{width:793.701333pt;}
.w1_c00383{width:794.000000pt;}
.x0_c00383{left:0.000000pt;}
.x2_c00383{left:73.333333pt;}
.x3_c00383{left:80.000000pt;}
.x4_c00383{left:94.666667pt;}
.x5_c00383{left:600.543200pt;}
.x1_c00383{left:698.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.199000;font-style: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);}
.m1_c00384{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls1_c00384{letter-spacing:0.000000px;}
.ls0_c00384{letter-spacing:0.720000px;}
.ls2_c00384{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws9_c00384{word-spacing:-3.600000px;}
.wsb_c00384{word-spacing:-1.080000px;}
.ws2_c00384{word-spacing:-0.840000px;}
.ws1_c00384{word-spacing:0.000000px;}
.wsf_c00384{word-spacing:1.080000px;}
.ws10_c00384{word-spacing:1.152000px;}
.wsa_c00384{word-spacing:2.232000px;}
.wsd_c00384{word-spacing:3.960000px;}
.ws11_c00384{word-spacing:5.544000px;}
.ws6_c00384{word-spacing:7.200000px;}
.ws4_c00384{word-spacing:9.000000px;}
.ws8_c00384{word-spacing:9.720000px;}
.ws3_c00384{word-spacing:15.552000px;}
.ws5_c00384{word-spacing:16.560000px;}
.wse_c00384{word-spacing:19.080000px;}
.ws7_c00384{word-spacing:20.880000px;}
.wsc_c00384{word-spacing:21.024000px;}
._0_c00384{margin-left:-480.336600px;}
._1_c00384{margin-left:-4.200000px;}
._5_c00384{margin-left:-2.952000px;}
._2_c00384{margin-left:-1.440000px;}
._3_c00384{width:1.634400px;}
._4_c00384{width:2.786400px;}
.fc2_c00384{color:rgb(32,32,32);}
.fc1_c00384{color:rgb(232,86,17);}
.fc0_c00384{color:rgb(60,60,59);}
.fs1_c00384{font-size:42.000000px;}
.fs0_c00384{font-size:60.000000px;}
.fs3_c00384{font-size:72.000000px;}
.fs2_c00384{font-size:84.000000px;}
.y0_c00384{bottom:0.000000px;}
.y1_c00384{bottom:41.250000px;}
.y14_c00384{bottom:346.298700px;}
.y13_c00384{bottom:376.304700px;}
.y12_c00384{bottom:406.310700px;}
.y11_c00384{bottom:436.316700px;}
.y10_c00384{bottom:466.322700px;}
.yf_c00384{bottom:496.328700px;}
.ye_c00384{bottom:526.334700px;}
.yd_c00384{bottom:586.334700px;}
.yc_c00384{bottom:676.280700px;}
.yb_c00384{bottom:706.286700px;}
.ya_c00384{bottom:736.292700px;}
.y9_c00384{bottom:766.298700px;}
.y8_c00384{bottom:796.304700px;}
.y7_c00384{bottom:826.310700px;}
.y6_c00384{bottom:856.316700px;}
.y5_c00384{bottom:886.322700px;}
.y4_c00384{bottom:916.328700px;}
.y3_c00384{bottom:946.334700px;}
.y2_c00384{bottom:1006.334700px;}
.h2_c00384{height:54.000000px;}
.h4_c00384{height:64.800000px;}
.h3_c00384{height:78.540000px;}
.h0_c00384{height:1262.835000px;}
.h1_c00384{height:1263.000000px;}
.w0_c00384{width:892.914000px;}
.w1_c00384{width:893.250000px;}
.x0_c00384{left:0.000000px;}
.x2_c00384{left:90.000000px;}
.x3_c00384{left:106.500000px;}
.x1_c00384{left:786.788700px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls1_c00384{letter-spacing:0.000000pt;}
.ls0_c00384{letter-spacing:0.640000pt;}
.ls2_c00384{letter-spacing:0.746667pt;}
.ws0_c00384{word-spacing:-9.066667pt;}
.ws9_c00384{word-spacing:-3.200000pt;}
.wsb_c00384{word-spacing:-0.960000pt;}
.ws2_c00384{word-spacing:-0.746667pt;}
.ws1_c00384{word-spacing:0.000000pt;}
.wsf_c00384{word-spacing:0.960000pt;}
.ws10_c00384{word-spacing:1.024000pt;}
.wsa_c00384{word-spacing:1.984000pt;}
.wsd_c00384{word-spacing:3.520000pt;}
.ws11_c00384{word-spacing:4.928000pt;}
.ws6_c00384{word-spacing:6.400000pt;}
.ws4_c00384{word-spacing:8.000000pt;}
.ws8_c00384{word-spacing:8.640000pt;}
.ws3_c00384{word-spacing:13.824000pt;}
.ws5_c00384{word-spacing:14.720000pt;}
.wse_c00384{word-spacing:16.960000pt;}
.ws7_c00384{word-spacing:18.560000pt;}
.wsc_c00384{word-spacing:18.688000pt;}
._0_c00384{margin-left:-426.965867pt;}
._1_c00384{margin-left:-3.733333pt;}
._5_c00384{margin-left:-2.624000pt;}
._2_c00384{margin-left:-1.280000pt;}
._3_c00384{width:1.452800pt;}
._4_c00384{width:2.476800pt;}
.fs1_c00384{font-size:37.333333pt;}
.fs0_c00384{font-size:53.333333pt;}
.fs3_c00384{font-size:64.000000pt;}
.fs2_c00384{font-size:74.666667pt;}
.y0_c00384{bottom:0.000000pt;}
.y1_c00384{bottom:36.666667pt;}
.y14_c00384{bottom:307.821067pt;}
.y13_c00384{bottom:334.493067pt;}
.y12_c00384{bottom:361.165067pt;}
.y11_c00384{bottom:387.837067pt;}
.y10_c00384{bottom:414.509067pt;}
.yf_c00384{bottom:441.181067pt;}
.ye_c00384{bottom:467.853067pt;}
.yd_c00384{bottom:521.186400pt;}
.yc_c00384{bottom:601.138400pt;}
.yb_c00384{bottom:627.810400pt;}
.ya_c00384{bottom:654.482400pt;}
.y9_c00384{bottom:681.154400pt;}
.y8_c00384{bottom:707.826400pt;}
.y7_c00384{bottom:734.498400pt;}
.y6_c00384{bottom:761.170400pt;}
.y5_c00384{bottom:787.842400pt;}
.y4_c00384{bottom:814.514400pt;}
.y3_c00384{bottom:841.186400pt;}
.y2_c00384{bottom:894.519733pt;}
.h2_c00384{height:48.000000pt;}
.h4_c00384{height:57.600000pt;}
.h3_c00384{height:69.813333pt;}
.h0_c00384{height:1122.520000pt;}
.h1_c00384{height:1122.666667pt;}
.w0_c00384{width:793.701333pt;}
.w1_c00384{width:794.000000pt;}
.x0_c00384{left:0.000000pt;}
.x2_c00384{left:80.000000pt;}
.x3_c00384{left:94.666667pt;}
.x1_c00384{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a378ba6f218df5456748c66d.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.160000;font-style:normal;font-weight:normal;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_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls5_c00385{letter-spacing:-0.324000px;}
.ls4_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:0.720000px;}
.ls1_c00385{letter-spacing:0.840000px;}
.ls3_c00385{letter-spacing:1.500000px;}
.ls2_c00385{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00385{word-spacing:-21.276000px;}
.ws2_c00385{word-spacing:-17.640000px;}
.ws3_c00385{word-spacing:-14.850000px;}
.ws0_c00385{word-spacing:-10.200000px;}
.wsa_c00385{word-spacing:-5.832000px;}
.ws10_c00385{word-spacing:-1.500000px;}
.ws5_c00385{word-spacing:-0.840000px;}
.ws7_c00385{word-spacing:-0.720000px;}
.ws4_c00385{word-spacing:0.000000px;}
.ws6_c00385{word-spacing:2.664000px;}
.wsf_c00385{word-spacing:4.392000px;}
.wsc_c00385{word-spacing:6.696000px;}
.wsd_c00385{word-spacing:7.704000px;}
.wse_c00385{word-spacing:9.720000px;}
.ws9_c00385{word-spacing:10.368000px;}
.wsb_c00385{word-spacing:12.384000px;}
.ws8_c00385{word-spacing:12.600000px;}
._0_c00385{margin-left:-480.337200px;}
._3_c00385{margin-left:-5.760000px;}
._1_c00385{margin-left:-4.200000px;}
._4_c00385{margin-left:-2.152800px;}
._2_c00385{margin-left:-1.134000px;}
._5_c00385{width:1.278000px;}
.fc4_c00385{color:rgb(196,88,17);}
.fc3_c00385{color:rgb(32,32,32);}
.fc2_c00385{color:rgb(233,83,14);}
.fc1_c00385{color:rgb(232,86,17);}
.fc5_c00385{color:rgb(157,157,156);}
.fc0_c00385{color:rgb(60,60,59);}
.fs1_c00385{font-size:42.000000px;}
.fs0_c00385{font-size:60.000000px;}
.fs5_c00385{font-size:66.000000px;}
.fs4_c00385{font-size:72.000000px;}
.fs3_c00385{font-size:84.000000px;}
.fs2_c00385{font-size:108.000000px;}
.y0_c00385{bottom:0.000000px;}
.y1_c00385{bottom:41.250000px;}
.y13_c00385{bottom:226.322700px;}
.y12_c00385{bottom:256.328700px;}
.y11_c00385{bottom:286.334700px;}
.y10_c00385{bottom:346.334700px;}
.yf_c00385{bottom:436.310700px;}
.ye_c00385{bottom:466.316700px;}
.yd_c00385{bottom:496.322700px;}
.yc_c00385{bottom:526.328700px;}
.yb_c00385{bottom:556.334700px;}
.ya_c00385{bottom:616.334700px;}
.y9_c00385{bottom:706.304700px;}
.y19_c00385{bottom:706.334700px;}
.y8_c00385{bottom:736.310700px;}
.y18_c00385{bottom:736.334700px;}
.y7_c00385{bottom:766.316700px;}
.y17_c00385{bottom:766.334700px;}
.y6_c00385{bottom:796.322700px;}
.y16_c00385{bottom:796.334700px;}
.y5_c00385{bottom:826.328700px;}
.y15_c00385{bottom:826.334700px;}
.y4_c00385{bottom:856.334700px;}
.y14_c00385{bottom:856.376100px;}
.y3_c00385{bottom:916.334700px;}
.y2_c00385{bottom:1006.334700px;}
.h6_c00385{height:50.292000px;}
.h2_c00385{height:54.000000px;}
.h5_c00385{height:64.800000px;}
.h4_c00385{height:78.540000px;}
.h3_c00385{height:100.980000px;}
.h0_c00385{height:1262.835000px;}
.h1_c00385{height:1263.000000px;}
.w0_c00385{width:892.914000px;}
.w1_c00385{width:893.250000px;}
.x0_c00385{left:0.000000px;}
.x2_c00385{left:82.500000px;}
.x3_c00385{left:90.000000px;}
.x4_c00385{left:106.500000px;}
.x5_c00385{left:675.611100px;}
.x1_c00385{left:785.663850px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls5_c00385{letter-spacing:-0.288000pt;}
.ls4_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:0.640000pt;}
.ls1_c00385{letter-spacing:0.746667pt;}
.ls3_c00385{letter-spacing:1.333333pt;}
.ls2_c00385{letter-spacing:1.466667pt;}
.ws1_c00385{word-spacing:-18.912000pt;}
.ws2_c00385{word-spacing:-15.680000pt;}
.ws3_c00385{word-spacing:-13.200000pt;}
.ws0_c00385{word-spacing:-9.066667pt;}
.wsa_c00385{word-spacing:-5.184000pt;}
.ws10_c00385{word-spacing:-1.333333pt;}
.ws5_c00385{word-spacing:-0.746667pt;}
.ws7_c00385{word-spacing:-0.640000pt;}
.ws4_c00385{word-spacing:0.000000pt;}
.ws6_c00385{word-spacing:2.368000pt;}
.wsf_c00385{word-spacing:3.904000pt;}
.wsc_c00385{word-spacing:5.952000pt;}
.wsd_c00385{word-spacing:6.848000pt;}
.wse_c00385{word-spacing:8.640000pt;}
.ws9_c00385{word-spacing:9.216000pt;}
.wsb_c00385{word-spacing:11.008000pt;}
.ws8_c00385{word-spacing:11.200000pt;}
._0_c00385{margin-left:-426.966400pt;}
._3_c00385{margin-left:-5.120000pt;}
._1_c00385{margin-left:-3.733333pt;}
._4_c00385{margin-left:-1.913600pt;}
._2_c00385{margin-left:-1.008000pt;}
._5_c00385{width:1.136000pt;}
.fs1_c00385{font-size:37.333333pt;}
.fs0_c00385{font-size:53.333333pt;}
.fs5_c00385{font-size:58.666667pt;}
.fs4_c00385{font-size:64.000000pt;}
.fs3_c00385{font-size:74.666667pt;}
.fs2_c00385{font-size:96.000000pt;}
.y0_c00385{bottom:0.000000pt;}
.y1_c00385{bottom:36.666667pt;}
.y13_c00385{bottom:201.175733pt;}
.y12_c00385{bottom:227.847733pt;}
.y11_c00385{bottom:254.519733pt;}
.y10_c00385{bottom:307.853067pt;}
.yf_c00385{bottom:387.831733pt;}
.ye_c00385{bottom:414.503733pt;}
.yd_c00385{bottom:441.175733pt;}
.yc_c00385{bottom:467.847733pt;}
.yb_c00385{bottom:494.519733pt;}
.ya_c00385{bottom:547.853067pt;}
.y9_c00385{bottom:627.826400pt;}
.y19_c00385{bottom:627.853067pt;}
.y8_c00385{bottom:654.498400pt;}
.y18_c00385{bottom:654.519733pt;}
.y7_c00385{bottom:681.170400pt;}
.y17_c00385{bottom:681.186400pt;}
.y6_c00385{bottom:707.842400pt;}
.y16_c00385{bottom:707.853067pt;}
.y5_c00385{bottom:734.514400pt;}
.y15_c00385{bottom:734.519733pt;}
.y4_c00385{bottom:761.186400pt;}
.y14_c00385{bottom:761.223200pt;}
.y3_c00385{bottom:814.519733pt;}
.y2_c00385{bottom:894.519733pt;}
.h6_c00385{height:44.704000pt;}
.h2_c00385{height:48.000000pt;}
.h5_c00385{height:57.600000pt;}
.h4_c00385{height:69.813333pt;}
.h3_c00385{height:89.760000pt;}
.h0_c00385{height:1122.520000pt;}
.h1_c00385{height:1122.666667pt;}
.w0_c00385{width:793.701333pt;}
.w1_c00385{width:794.000000pt;}
.x0_c00385{left:0.000000pt;}
.x2_c00385{left:73.333333pt;}
.x3_c00385{left:80.000000pt;}
.x4_c00385{left:94.666667pt;}
.x5_c00385{left:600.543200pt;}
.x1_c00385{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.199000;font-style: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);}
.m1_c00386{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls1_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:0.720000px;}
.ls2_c00386{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsb_c00386{word-spacing:-4.248000px;}
.ws7_c00386{word-spacing:-4.176000px;}
.ws9_c00386{word-spacing:-3.528000px;}
.ws6_c00386{word-spacing:-3.096000px;}
.ws8_c00386{word-spacing:-1.368000px;}
.ws2_c00386{word-spacing:-0.840000px;}
.ws1_c00386{word-spacing:0.000000px;}
.ws3_c00386{word-spacing:1.440000px;}
.wse_c00386{word-spacing:3.888000px;}
.wsa_c00386{word-spacing:5.040000px;}
.ws5_c00386{word-spacing:8.208000px;}
.wsd_c00386{word-spacing:8.496000px;}
.ws4_c00386{word-spacing:10.296000px;}
.wsc_c00386{word-spacing:10.368000px;}
._0_c00386{margin-left:-480.336600px;}
._1_c00386{margin-left:-4.200000px;}
._4_c00386{margin-left:-2.980800px;}
._2_c00386{margin-left:-1.440000px;}
._3_c00386{width:2.973600px;}
.fc2_c00386{color:rgb(32,32,32);}
.fc1_c00386{color:rgb(232,86,17);}
.fc0_c00386{color:rgb(60,60,59);}
.fs1_c00386{font-size:42.000000px;}
.fs0_c00386{font-size:60.000000px;}
.fs3_c00386{font-size:72.000000px;}
.fs2_c00386{font-size:84.000000px;}
.y0_c00386{bottom:0.000000px;}
.y1_c00386{bottom:41.250000px;}
.y11_c00386{bottom:436.304700px;}
.y10_c00386{bottom:466.310700px;}
.yf_c00386{bottom:496.316700px;}
.ye_c00386{bottom:526.322700px;}
.yd_c00386{bottom:556.328700px;}
.yc_c00386{bottom:586.334700px;}
.yb_c00386{bottom:646.334700px;}
.ya_c00386{bottom:736.292700px;}
.y9_c00386{bottom:766.298700px;}
.y8_c00386{bottom:796.304700px;}
.y7_c00386{bottom:826.310700px;}
.y6_c00386{bottom:856.316700px;}
.y5_c00386{bottom:886.322700px;}
.y4_c00386{bottom:916.328700px;}
.y3_c00386{bottom:946.334700px;}
.y2_c00386{bottom:1006.334700px;}
.h2_c00386{height:54.000000px;}
.h4_c00386{height:64.800000px;}
.h3_c00386{height:78.540000px;}
.h0_c00386{height:1262.835000px;}
.h1_c00386{height:1263.000000px;}
.w0_c00386{width:892.914000px;}
.w1_c00386{width:893.250000px;}
.x0_c00386{left:0.000000px;}
.x2_c00386{left:90.000000px;}
.x3_c00386{left:106.500000px;}
.x1_c00386{left:787.763700px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls1_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:0.640000pt;}
.ls2_c00386{letter-spacing:0.746667pt;}
.ws0_c00386{word-spacing:-9.066667pt;}
.wsb_c00386{word-spacing:-3.776000pt;}
.ws7_c00386{word-spacing:-3.712000pt;}
.ws9_c00386{word-spacing:-3.136000pt;}
.ws6_c00386{word-spacing:-2.752000pt;}
.ws8_c00386{word-spacing:-1.216000pt;}
.ws2_c00386{word-spacing:-0.746667pt;}
.ws1_c00386{word-spacing:0.000000pt;}
.ws3_c00386{word-spacing:1.280000pt;}
.wse_c00386{word-spacing:3.456000pt;}
.wsa_c00386{word-spacing:4.480000pt;}
.ws5_c00386{word-spacing:7.296000pt;}
.wsd_c00386{word-spacing:7.552000pt;}
.ws4_c00386{word-spacing:9.152000pt;}
.wsc_c00386{word-spacing:9.216000pt;}
._0_c00386{margin-left:-426.965867pt;}
._1_c00386{margin-left:-3.733333pt;}
._4_c00386{margin-left:-2.649600pt;}
._2_c00386{margin-left:-1.280000pt;}
._3_c00386{width:2.643200pt;}
.fs1_c00386{font-size:37.333333pt;}
.fs0_c00386{font-size:53.333333pt;}
.fs3_c00386{font-size:64.000000pt;}
.fs2_c00386{font-size:74.666667pt;}
.y0_c00386{bottom:0.000000pt;}
.y1_c00386{bottom:36.666667pt;}
.y11_c00386{bottom:387.826400pt;}
.y10_c00386{bottom:414.498400pt;}
.yf_c00386{bottom:441.170400pt;}
.ye_c00386{bottom:467.842400pt;}
.yd_c00386{bottom:494.514400pt;}
.yc_c00386{bottom:521.186400pt;}
.yb_c00386{bottom:574.519733pt;}
.ya_c00386{bottom:654.482400pt;}
.y9_c00386{bottom:681.154400pt;}
.y8_c00386{bottom:707.826400pt;}
.y7_c00386{bottom:734.498400pt;}
.y6_c00386{bottom:761.170400pt;}
.y5_c00386{bottom:787.842400pt;}
.y4_c00386{bottom:814.514400pt;}
.y3_c00386{bottom:841.186400pt;}
.y2_c00386{bottom:894.519733pt;}
.h2_c00386{height:48.000000pt;}
.h4_c00386{height:57.600000pt;}
.h3_c00386{height:69.813333pt;}
.h0_c00386{height:1122.520000pt;}
.h1_c00386{height:1122.666667pt;}
.w0_c00386{width:793.701333pt;}
.w1_c00386{width:794.000000pt;}
.x0_c00386{left:0.000000pt;}
.x2_c00386{left:80.000000pt;}
.x3_c00386{left:94.666667pt;}
.x1_c00386{left:700.234400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00387;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00387;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;line-height:1.155000;font-style: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);}
.m1_c00387{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls2_c00387{letter-spacing:0.000000px;}
.ls0_c00387{letter-spacing:0.864000px;}
.ls1_c00387{letter-spacing:1.200000px;}
.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:-10.200000px;}
.ws2_c00387{word-spacing:-2.016000px;}
.ws3_c00387{word-spacing:-0.864000px;}
.ws1_c00387{word-spacing:0.000000px;}
._0_c00387{margin-left:-480.337200px;}
._7_c00387{margin-left:-19.416000px;}
._8_c00387{margin-left:-15.600000px;}
._6_c00387{margin-left:-10.752000px;}
._4_c00387{margin-left:-5.904000px;}
._1_c00387{margin-left:-4.200000px;}
._2_c00387{margin-left:-2.448000px;}
._3_c00387{margin-left:-1.008000px;}
._5_c00387{width:2.328000px;}
.fc3_c00387{color:rgb(255,255,255);}
.fc2_c00387{color:rgb(233,83,14);}
.fc1_c00387{color:rgb(232,86,17);}
.fc0_c00387{color:rgb(60,60,59);}
.fs1_c00387{font-size:42.000000px;}
.fs0_c00387{font-size:60.000000px;}
.fs3_c00387{font-size:72.000000px;}
.fs4_c00387{font-size:120.000000px;}
.fs2_c00387{font-size:360.000000px;}
.y0_c00387{bottom:0.000000px;}
.y1_c00387{bottom:41.250000px;}
.y9_c00387{bottom:574.310700px;}
.y8_c00387{bottom:595.316700px;}
.y7_c00387{bottom:616.322700px;}
.y6_c00387{bottom:664.328700px;}
.y5_c00387{bottom:685.334700px;}
.y4_c00387{bottom:706.340700px;}
.y3_c00387{bottom:752.834700px;}
.yc_c00387{bottom:946.334700px;}
.yb_c00387{bottom:976.334700px;}
.ya_c00387{bottom:1006.334700px;}
.y2_c00387{bottom:1093.526700px;}
.h2_c00387{height:54.000000px;}
.h5_c00387{height:64.800000px;}
.h4_c00387{height:66.456000px;}
.h6_c00387{height:112.200000px;}
.h3_c00387{height:324.000000px;}
.h0_c00387{height:1262.835000px;}
.h1_c00387{height:1263.000000px;}
.w0_c00387{width:892.914000px;}
.w1_c00387{width:893.250000px;}
.x0_c00387{left:0.000000px;}
.x2_c00387{left:81.290250px;}
.x3_c00387{left:82.393650px;}
.x5_c00387{left:112.287450px;}
.x4_c00387{left:127.393650px;}
.x1_c00387{left:785.738850px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls2_c00387{letter-spacing:0.000000pt;}
.ls0_c00387{letter-spacing:0.768000pt;}
.ls1_c00387{letter-spacing:1.066667pt;}
.ws0_c00387{word-spacing:-9.066667pt;}
.ws2_c00387{word-spacing:-1.792000pt;}
.ws3_c00387{word-spacing:-0.768000pt;}
.ws1_c00387{word-spacing:0.000000pt;}
._0_c00387{margin-left:-426.966400pt;}
._7_c00387{margin-left:-17.258667pt;}
._8_c00387{margin-left:-13.866667pt;}
._6_c00387{margin-left:-9.557333pt;}
._4_c00387{margin-left:-5.248000pt;}
._1_c00387{margin-left:-3.733333pt;}
._2_c00387{margin-left:-2.176000pt;}
._3_c00387{margin-left:-0.896000pt;}
._5_c00387{width:2.069333pt;}
.fs1_c00387{font-size:37.333333pt;}
.fs0_c00387{font-size:53.333333pt;}
.fs3_c00387{font-size:64.000000pt;}
.fs4_c00387{font-size:106.666667pt;}
.fs2_c00387{font-size:320.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y1_c00387{bottom:36.666667pt;}
.y9_c00387{bottom:510.498400pt;}
.y8_c00387{bottom:529.170400pt;}
.y7_c00387{bottom:547.842400pt;}
.y6_c00387{bottom:590.514400pt;}
.y5_c00387{bottom:609.186400pt;}
.y4_c00387{bottom:627.858400pt;}
.y3_c00387{bottom:669.186400pt;}
.yc_c00387{bottom:841.186400pt;}
.yb_c00387{bottom:867.853067pt;}
.ya_c00387{bottom:894.519733pt;}
.y2_c00387{bottom:972.023733pt;}
.h2_c00387{height:48.000000pt;}
.h5_c00387{height:57.600000pt;}
.h4_c00387{height:59.072000pt;}
.h6_c00387{height:99.733333pt;}
.h3_c00387{height:288.000000pt;}
.h0_c00387{height:1122.520000pt;}
.h1_c00387{height:1122.666667pt;}
.w0_c00387{width:793.701333pt;}
.w1_c00387{width:794.000000pt;}
.x0_c00387{left:0.000000pt;}
.x2_c00387{left:72.258000pt;}
.x3_c00387{left:73.238800pt;}
.x5_c00387{left:99.811067pt;}
.x4_c00387{left:113.238800pt;}
.x1_c00387{left:698.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:1.161000;font-style: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);}
.m1_c00388{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls4_c00388{letter-spacing:-0.540000px;}
.ls3_c00388{letter-spacing:0.000000px;}
.ls0_c00388{letter-spacing:0.720000px;}
.ls2_c00388{letter-spacing:1.500000px;}
.ls1_c00388{letter-spacing:1.650000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00388{word-spacing:-21.060000px;}
.ws0_c00388{word-spacing:-10.200000px;}
.ws7_c00388{word-spacing:-3.528000px;}
.ws6_c00388{word-spacing:-2.376000px;}
.ws18_c00388{word-spacing:-1.500000px;}
.ws16_c00388{word-spacing:-1.152000px;}
.ws11_c00388{word-spacing:-0.720000px;}
.ws2_c00388{word-spacing:0.000000px;}
.ws8_c00388{word-spacing:0.648000px;}
.ws13_c00388{word-spacing:0.720000px;}
.ws9_c00388{word-spacing:1.080000px;}
.ws5_c00388{word-spacing:1.368000px;}
.wsc_c00388{word-spacing:1.512000px;}
.ws4_c00388{word-spacing:2.016000px;}
.wsd_c00388{word-spacing:2.952000px;}
.ws3_c00388{word-spacing:3.024000px;}
.wsa_c00388{word-spacing:3.600000px;}
.ws17_c00388{word-spacing:3.744000px;}
.ws10_c00388{word-spacing:4.032000px;}
.ws12_c00388{word-spacing:4.824000px;}
.wsb_c00388{word-spacing:6.480000px;}
.ws15_c00388{word-spacing:7.920000px;}
.wse_c00388{word-spacing:9.504000px;}
.ws14_c00388{word-spacing:12.312000px;}
.wsf_c00388{word-spacing:12.600000px;}
._0_c00388{margin-left:-480.337200px;}
._4_c00388{margin-left:-5.644800px;}
._1_c00388{margin-left:-4.200000px;}
._3_c00388{margin-left:-2.505600px;}
._2_c00388{margin-left:-1.440000px;}
._5_c00388{width:1.281600px;}
.fc3_c00388{color:rgb(32,32,32);}
.fc2_c00388{color:rgb(233,83,14);}
.fc1_c00388{color:rgb(232,86,17);}
.fc4_c00388{color:rgb(157,157,156);}
.fc0_c00388{color:rgb(60,60,59);}
.fs1_c00388{font-size:42.000000px;}
.fs0_c00388{font-size:60.000000px;}
.fs4_c00388{font-size:66.000000px;}
.fs3_c00388{font-size:72.000000px;}
.fs2_c00388{font-size:108.000000px;}
.y0_c00388{bottom:0.000000px;}
.y1_c00388{bottom:41.250000px;}
.y1a_c00388{bottom:196.220700px;}
.y19_c00388{bottom:226.226700px;}
.y18_c00388{bottom:256.232700px;}
.y17_c00388{bottom:286.238700px;}
.y16_c00388{bottom:346.232700px;}
.y15_c00388{bottom:376.238700px;}
.y14_c00388{bottom:406.244700px;}
.y13_c00388{bottom:436.250700px;}
.y12_c00388{bottom:466.256700px;}
.y11_c00388{bottom:496.262700px;}
.y10_c00388{bottom:526.268700px;}
.yf_c00388{bottom:556.274700px;}
.ye_c00388{bottom:586.280700px;}
.yd_c00388{bottom:646.274700px;}
.yc_c00388{bottom:676.280700px;}
.yb_c00388{bottom:706.286700px;}
.ya_c00388{bottom:736.292700px;}
.y9_c00388{bottom:766.298700px;}
.y8_c00388{bottom:796.304700px;}
.y7_c00388{bottom:826.310700px;}
.y6_c00388{bottom:856.316700px;}
.y1e_c00388{bottom:856.334700px;}
.y5_c00388{bottom:886.322700px;}
.y1d_c00388{bottom:886.334700px;}
.y4_c00388{bottom:916.328700px;}
.y1c_c00388{bottom:916.334700px;}
.y3_c00388{bottom:946.334700px;}
.y1b_c00388{bottom:946.376100px;}
.y2_c00388{bottom:1006.334700px;}
.h5_c00388{height:50.292000px;}
.h2_c00388{height:54.000000px;}
.h4_c00388{height:64.800000px;}
.h3_c00388{height:100.980000px;}
.h0_c00388{height:1262.835000px;}
.h1_c00388{height:1263.000000px;}
.w0_c00388{width:892.914000px;}
.w1_c00388{width:893.250000px;}
.x0_c00388{left:0.000000px;}
.x2_c00388{left:82.500000px;}
.x3_c00388{left:106.500000px;}
.x4_c00388{left:675.611100px;}
.x1_c00388{left:785.663850px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls4_c00388{letter-spacing:-0.480000pt;}
.ls3_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:0.640000pt;}
.ls2_c00388{letter-spacing:1.333333pt;}
.ls1_c00388{letter-spacing:1.466667pt;}
.ws1_c00388{word-spacing:-18.720000pt;}
.ws0_c00388{word-spacing:-9.066667pt;}
.ws7_c00388{word-spacing:-3.136000pt;}
.ws6_c00388{word-spacing:-2.112000pt;}
.ws18_c00388{word-spacing:-1.333333pt;}
.ws16_c00388{word-spacing:-1.024000pt;}
.ws11_c00388{word-spacing:-0.640000pt;}
.ws2_c00388{word-spacing:0.000000pt;}
.ws8_c00388{word-spacing:0.576000pt;}
.ws13_c00388{word-spacing:0.640000pt;}
.ws9_c00388{word-spacing:0.960000pt;}
.ws5_c00388{word-spacing:1.216000pt;}
.wsc_c00388{word-spacing:1.344000pt;}
.ws4_c00388{word-spacing:1.792000pt;}
.wsd_c00388{word-spacing:2.624000pt;}
.ws3_c00388{word-spacing:2.688000pt;}
.wsa_c00388{word-spacing:3.200000pt;}
.ws17_c00388{word-spacing:3.328000pt;}
.ws10_c00388{word-spacing:3.584000pt;}
.ws12_c00388{word-spacing:4.288000pt;}
.wsb_c00388{word-spacing:5.760000pt;}
.ws15_c00388{word-spacing:7.040000pt;}
.wse_c00388{word-spacing:8.448000pt;}
.ws14_c00388{word-spacing:10.944000pt;}
.wsf_c00388{word-spacing:11.200000pt;}
._0_c00388{margin-left:-426.966400pt;}
._4_c00388{margin-left:-5.017600pt;}
._1_c00388{margin-left:-3.733333pt;}
._3_c00388{margin-left:-2.227200pt;}
._2_c00388{margin-left:-1.280000pt;}
._5_c00388{width:1.139200pt;}
.fs1_c00388{font-size:37.333333pt;}
.fs0_c00388{font-size:53.333333pt;}
.fs4_c00388{font-size:58.666667pt;}
.fs3_c00388{font-size:64.000000pt;}
.fs2_c00388{font-size:96.000000pt;}
.y0_c00388{bottom:0.000000pt;}
.y1_c00388{bottom:36.666667pt;}
.y1a_c00388{bottom:174.418400pt;}
.y19_c00388{bottom:201.090400pt;}
.y18_c00388{bottom:227.762400pt;}
.y17_c00388{bottom:254.434400pt;}
.y16_c00388{bottom:307.762400pt;}
.y15_c00388{bottom:334.434400pt;}
.y14_c00388{bottom:361.106400pt;}
.y13_c00388{bottom:387.778400pt;}
.y12_c00388{bottom:414.450400pt;}
.y11_c00388{bottom:441.122400pt;}
.y10_c00388{bottom:467.794400pt;}
.yf_c00388{bottom:494.466400pt;}
.ye_c00388{bottom:521.138400pt;}
.yd_c00388{bottom:574.466400pt;}
.yc_c00388{bottom:601.138400pt;}
.yb_c00388{bottom:627.810400pt;}
.ya_c00388{bottom:654.482400pt;}
.y9_c00388{bottom:681.154400pt;}
.y8_c00388{bottom:707.826400pt;}
.y7_c00388{bottom:734.498400pt;}
.y6_c00388{bottom:761.170400pt;}
.y1e_c00388{bottom:761.186400pt;}
.y5_c00388{bottom:787.842400pt;}
.y1d_c00388{bottom:787.853067pt;}
.y4_c00388{bottom:814.514400pt;}
.y1c_c00388{bottom:814.519733pt;}
.y3_c00388{bottom:841.186400pt;}
.y1b_c00388{bottom:841.223200pt;}
.y2_c00388{bottom:894.519733pt;}
.h5_c00388{height:44.704000pt;}
.h2_c00388{height:48.000000pt;}
.h4_c00388{height:57.600000pt;}
.h3_c00388{height:89.760000pt;}
.h0_c00388{height:1122.520000pt;}
.h1_c00388{height:1122.666667pt;}
.w0_c00388{width:793.701333pt;}
.w1_c00388{width:794.000000pt;}
.x0_c00388{left:0.000000pt;}
.x2_c00388{left:73.333333pt;}
.x3_c00388{left:94.666667pt;}
.x4_c00388{left:600.543200pt;}
.x1_c00388{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9336a84ddb46a296126c8b8f.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00389;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls4_c00389{letter-spacing:-0.324000px;}
.ls3_c00389{letter-spacing:0.000000px;}
.ls0_c00389{letter-spacing:0.720000px;}
.ls2_c00389{letter-spacing:1.500000px;}
.ls1_c00389{letter-spacing:1.650000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00389{word-spacing:-21.276000px;}
.ws2_c00389{word-spacing:-14.850000px;}
.wsb_c00389{word-spacing:-12.456000px;}
.ws0_c00389{word-spacing:-10.200000px;}
.wsa_c00389{word-spacing:-1.728000px;}
.ws7_c00389{word-spacing:-0.288000px;}
.ws3_c00389{word-spacing:0.000000px;}
.ws13_c00389{word-spacing:0.504000px;}
.ws1a_c00389{word-spacing:0.936000px;}
.wse_c00389{word-spacing:2.664000px;}
.ws16_c00389{word-spacing:3.024000px;}
.ws8_c00389{word-spacing:3.744000px;}
.ws10_c00389{word-spacing:3.816000px;}
.ws11_c00389{word-spacing:4.104000px;}
.ws12_c00389{word-spacing:4.608000px;}
.ws19_c00389{word-spacing:5.256000px;}
.ws18_c00389{word-spacing:5.760000px;}
.ws4_c00389{word-spacing:5.904000px;}
.ws6_c00389{word-spacing:5.976000px;}
.ws14_c00389{word-spacing:6.768000px;}
.wsc_c00389{word-spacing:7.128000px;}
.wsd_c00389{word-spacing:7.560000px;}
.ws9_c00389{word-spacing:7.920000px;}
.ws15_c00389{word-spacing:8.712000px;}
.ws17_c00389{word-spacing:10.224000px;}
.wsf_c00389{word-spacing:10.656000px;}
.ws5_c00389{word-spacing:13.032000px;}
._0_c00389{margin-left:-480.336600px;}
._3_c00389{margin-left:-10.440000px;}
._1_c00389{margin-left:-4.200000px;}
._5_c00389{margin-left:-2.880000px;}
._2_c00389{margin-left:-1.440000px;}
._4_c00389{width:12.456000px;}
.fc3_c00389{color:rgb(233,83,14);}
.fc2_c00389{color:rgb(32,32,32);}
.fc1_c00389{color:rgb(232,86,17);}
.fc4_c00389{color:rgb(157,157,156);}
.fc0_c00389{color:rgb(60,60,59);}
.fs1_c00389{font-size:42.000000px;}
.fs0_c00389{font-size:60.000000px;}
.fs4_c00389{font-size:66.000000px;}
.fs2_c00389{font-size:72.000000px;}
.fs3_c00389{font-size:108.000000px;}
.y0_c00389{bottom:0.000000px;}
.y1_c00389{bottom:41.250000px;}
.y1d_c00389{bottom:106.250700px;}
.y1c_c00389{bottom:136.256700px;}
.y1b_c00389{bottom:166.262700px;}
.y1a_c00389{bottom:196.268700px;}
.y19_c00389{bottom:226.274700px;}
.y18_c00389{bottom:256.280700px;}
.y17_c00389{bottom:286.286700px;}
.y16_c00389{bottom:346.280700px;}
.y15_c00389{bottom:376.286700px;}
.y14_c00389{bottom:406.292700px;}
.y13_c00389{bottom:436.298700px;}
.y12_c00389{bottom:466.304700px;}
.y11_c00389{bottom:496.310700px;}
.y10_c00389{bottom:526.316700px;}
.yf_c00389{bottom:556.322700px;}
.y20_c00389{bottom:556.334700px;}
.ye_c00389{bottom:586.328700px;}
.y1f_c00389{bottom:586.334700px;}
.yd_c00389{bottom:616.334700px;}
.y1e_c00389{bottom:616.375950px;}
.yc_c00389{bottom:676.334700px;}
.yb_c00389{bottom:736.292700px;}
.ya_c00389{bottom:766.298700px;}
.y9_c00389{bottom:796.304700px;}
.y8_c00389{bottom:826.310700px;}
.y7_c00389{bottom:856.316700px;}
.y6_c00389{bottom:886.322700px;}
.y5_c00389{bottom:916.328700px;}
.y4_c00389{bottom:946.334700px;}
.y3_c00389{bottom:992.828700px;}
.y2_c00389{bottom:1022.834700px;}
.h5_c00389{height:50.292000px;}
.h2_c00389{height:54.000000px;}
.h3_c00389{height:64.800000px;}
.h4_c00389{height:100.980000px;}
.h0_c00389{height:1262.835000px;}
.h1_c00389{height:1263.000000px;}
.w0_c00389{width:892.914000px;}
.w1_c00389{width:893.250000px;}
.x0_c00389{left:0.000000px;}
.x3_c00389{left:82.500000px;}
.x2_c00389{left:106.500000px;}
.x4_c00389{left:675.611100px;}
.x1_c00389{left:785.603700px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls4_c00389{letter-spacing:-0.288000pt;}
.ls3_c00389{letter-spacing:0.000000pt;}
.ls0_c00389{letter-spacing:0.640000pt;}
.ls2_c00389{letter-spacing:1.333333pt;}
.ls1_c00389{letter-spacing:1.466667pt;}
.ws1_c00389{word-spacing:-18.912000pt;}
.ws2_c00389{word-spacing:-13.200000pt;}
.wsb_c00389{word-spacing:-11.072000pt;}
.ws0_c00389{word-spacing:-9.066667pt;}
.wsa_c00389{word-spacing:-1.536000pt;}
.ws7_c00389{word-spacing:-0.256000pt;}
.ws3_c00389{word-spacing:0.000000pt;}
.ws13_c00389{word-spacing:0.448000pt;}
.ws1a_c00389{word-spacing:0.832000pt;}
.wse_c00389{word-spacing:2.368000pt;}
.ws16_c00389{word-spacing:2.688000pt;}
.ws8_c00389{word-spacing:3.328000pt;}
.ws10_c00389{word-spacing:3.392000pt;}
.ws11_c00389{word-spacing:3.648000pt;}
.ws12_c00389{word-spacing:4.096000pt;}
.ws19_c00389{word-spacing:4.672000pt;}
.ws18_c00389{word-spacing:5.120000pt;}
.ws4_c00389{word-spacing:5.248000pt;}
.ws6_c00389{word-spacing:5.312000pt;}
.ws14_c00389{word-spacing:6.016000pt;}
.wsc_c00389{word-spacing:6.336000pt;}
.wsd_c00389{word-spacing:6.720000pt;}
.ws9_c00389{word-spacing:7.040000pt;}
.ws15_c00389{word-spacing:7.744000pt;}
.ws17_c00389{word-spacing:9.088000pt;}
.wsf_c00389{word-spacing:9.472000pt;}
.ws5_c00389{word-spacing:11.584000pt;}
._0_c00389{margin-left:-426.965867pt;}
._3_c00389{margin-left:-9.280000pt;}
._1_c00389{margin-left:-3.733333pt;}
._5_c00389{margin-left:-2.560000pt;}
._2_c00389{margin-left:-1.280000pt;}
._4_c00389{width:11.072000pt;}
.fs1_c00389{font-size:37.333333pt;}
.fs0_c00389{font-size:53.333333pt;}
.fs4_c00389{font-size:58.666667pt;}
.fs2_c00389{font-size:64.000000pt;}
.fs3_c00389{font-size:96.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y1_c00389{bottom:36.666667pt;}
.y1d_c00389{bottom:94.445067pt;}
.y1c_c00389{bottom:121.117067pt;}
.y1b_c00389{bottom:147.789067pt;}
.y1a_c00389{bottom:174.461067pt;}
.y19_c00389{bottom:201.133067pt;}
.y18_c00389{bottom:227.805067pt;}
.y17_c00389{bottom:254.477067pt;}
.y16_c00389{bottom:307.805067pt;}
.y15_c00389{bottom:334.477067pt;}
.y14_c00389{bottom:361.149067pt;}
.y13_c00389{bottom:387.821067pt;}
.y12_c00389{bottom:414.493067pt;}
.y11_c00389{bottom:441.165067pt;}
.y10_c00389{bottom:467.837067pt;}
.yf_c00389{bottom:494.509067pt;}
.y20_c00389{bottom:494.519733pt;}
.ye_c00389{bottom:521.181067pt;}
.y1f_c00389{bottom:521.186400pt;}
.yd_c00389{bottom:547.853067pt;}
.y1e_c00389{bottom:547.889733pt;}
.yc_c00389{bottom:601.186400pt;}
.yb_c00389{bottom:654.482400pt;}
.ya_c00389{bottom:681.154400pt;}
.y9_c00389{bottom:707.826400pt;}
.y8_c00389{bottom:734.498400pt;}
.y7_c00389{bottom:761.170400pt;}
.y6_c00389{bottom:787.842400pt;}
.y5_c00389{bottom:814.514400pt;}
.y4_c00389{bottom:841.186400pt;}
.y3_c00389{bottom:882.514400pt;}
.y2_c00389{bottom:909.186400pt;}
.h5_c00389{height:44.704000pt;}
.h2_c00389{height:48.000000pt;}
.h3_c00389{height:57.600000pt;}
.h4_c00389{height:89.760000pt;}
.h0_c00389{height:1122.520000pt;}
.h1_c00389{height:1122.666667pt;}
.w0_c00389{width:793.701333pt;}
.w1_c00389{width:794.000000pt;}
.x0_c00389{left:0.000000pt;}
.x3_c00389{left:73.333333pt;}
.x2_c00389{left:94.666667pt;}
.x4_c00389{left:600.543200pt;}
.x1_c00389{left:698.314400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_69d21ca045ca03b3182acdf3.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls1_c00390{letter-spacing:0.000000px;}
.ls0_c00390{letter-spacing:0.720000px;}
.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:-12.960000px;}
.ws0_c00390{word-spacing:-10.200000px;}
.ws6_c00390{word-spacing:-2.304000px;}
.wsd_c00390{word-spacing:-1.656000px;}
.ws9_c00390{word-spacing:-0.288000px;}
.ws2_c00390{word-spacing:0.000000px;}
.wsc_c00390{word-spacing:0.216000px;}
.ws5_c00390{word-spacing:2.304000px;}
.wsb_c00390{word-spacing:4.608000px;}
.ws3_c00390{word-spacing:4.680000px;}
.ws8_c00390{word-spacing:5.328000px;}
.wsa_c00390{word-spacing:6.552000px;}
.ws7_c00390{word-spacing:12.888000px;}
.ws4_c00390{word-spacing:15.480000px;}
._0_c00390{margin-left:-480.337200px;}
._3_c00390{margin-left:-5.400000px;}
._1_c00390{margin-left:-4.200000px;}
._2_c00390{margin-left:-1.440000px;}
.fc2_c00390{color:rgb(32,32,32);}
.fc1_c00390{color:rgb(232,86,17);}
.fc0_c00390{color:rgb(60,60,59);}
.fs1_c00390{font-size:42.000000px;}
.fs0_c00390{font-size:60.000000px;}
.fs2_c00390{font-size:72.000000px;}
.y0_c00390{bottom:0.000000px;}
.y1_c00390{bottom:41.250000px;}
.yf_c00390{bottom:586.280700px;}
.ye_c00390{bottom:616.286700px;}
.yd_c00390{bottom:646.292700px;}
.yc_c00390{bottom:676.298700px;}
.yb_c00390{bottom:706.304700px;}
.ya_c00390{bottom:736.310700px;}
.y9_c00390{bottom:766.316700px;}
.y8_c00390{bottom:826.310700px;}
.y7_c00390{bottom:856.316700px;}
.y6_c00390{bottom:886.322700px;}
.y5_c00390{bottom:916.328700px;}
.y4_c00390{bottom:946.334700px;}
.y3_c00390{bottom:992.828700px;}
.y2_c00390{bottom:1022.834700px;}
.h2_c00390{height:54.000000px;}
.h3_c00390{height:64.800000px;}
.h0_c00390{height:1262.835000px;}
.h1_c00390{height:1263.000000px;}
.w0_c00390{width:892.914000px;}
.w1_c00390{width:893.250000px;}
.x0_c00390{left:0.000000px;}
.x2_c00390{left:106.500000px;}
.x1_c00390{left:789.263850px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls1_c00390{letter-spacing:0.000000pt;}
.ls0_c00390{letter-spacing:0.640000pt;}
.ws1_c00390{word-spacing:-11.520000pt;}
.ws0_c00390{word-spacing:-9.066667pt;}
.ws6_c00390{word-spacing:-2.048000pt;}
.wsd_c00390{word-spacing:-1.472000pt;}
.ws9_c00390{word-spacing:-0.256000pt;}
.ws2_c00390{word-spacing:0.000000pt;}
.wsc_c00390{word-spacing:0.192000pt;}
.ws5_c00390{word-spacing:2.048000pt;}
.wsb_c00390{word-spacing:4.096000pt;}
.ws3_c00390{word-spacing:4.160000pt;}
.ws8_c00390{word-spacing:4.736000pt;}
.wsa_c00390{word-spacing:5.824000pt;}
.ws7_c00390{word-spacing:11.456000pt;}
.ws4_c00390{word-spacing:13.760000pt;}
._0_c00390{margin-left:-426.966400pt;}
._3_c00390{margin-left:-4.800000pt;}
._1_c00390{margin-left:-3.733333pt;}
._2_c00390{margin-left:-1.280000pt;}
.fs1_c00390{font-size:37.333333pt;}
.fs0_c00390{font-size:53.333333pt;}
.fs2_c00390{font-size:64.000000pt;}
.y0_c00390{bottom:0.000000pt;}
.y1_c00390{bottom:36.666667pt;}
.yf_c00390{bottom:521.138400pt;}
.ye_c00390{bottom:547.810400pt;}
.yd_c00390{bottom:574.482400pt;}
.yc_c00390{bottom:601.154400pt;}
.yb_c00390{bottom:627.826400pt;}
.ya_c00390{bottom:654.498400pt;}
.y9_c00390{bottom:681.170400pt;}
.y8_c00390{bottom:734.498400pt;}
.y7_c00390{bottom:761.170400pt;}
.y6_c00390{bottom:787.842400pt;}
.y5_c00390{bottom:814.514400pt;}
.y4_c00390{bottom:841.186400pt;}
.y3_c00390{bottom:882.514400pt;}
.y2_c00390{bottom:909.186400pt;}
.h2_c00390{height:48.000000pt;}
.h3_c00390{height:57.600000pt;}
.h0_c00390{height:1122.520000pt;}
.h1_c00390{height:1122.666667pt;}
.w0_c00390{width:793.701333pt;}
.w1_c00390{width:794.000000pt;}
.x0_c00390{left:0.000000pt;}
.x2_c00390{left:94.666667pt;}
.x1_c00390{left:701.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00391;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00391{font-family:ff5_c00391;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls2_c00391{letter-spacing:0.000000px;}
.ls0_c00391{letter-spacing:0.864000px;}
.ls1_c00391{letter-spacing:1.200000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00391{word-spacing:-13.104000px;}
.ws0_c00391{word-spacing:-10.200000px;}
.ws3_c00391{word-spacing:-5.904000px;}
.ws5_c00391{word-spacing:-4.752000px;}
.ws4_c00391{word-spacing:-0.864000px;}
.ws2_c00391{word-spacing:0.000000px;}
._0_c00391{margin-left:-480.336600px;}
._4_c00391{margin-left:-9.000000px;}
._1_c00391{margin-left:-4.200000px;}
._2_c00391{margin-left:-2.160000px;}
._3_c00391{width:4.752000px;}
.fc3_c00391{color:rgb(255,255,255);}
.fc2_c00391{color:rgb(233,83,14);}
.fc1_c00391{color:rgb(232,86,17);}
.fc0_c00391{color:rgb(60,60,59);}
.fs1_c00391{font-size:42.000000px;}
.fs0_c00391{font-size:60.000000px;}
.fs3_c00391{font-size:72.000000px;}
.fs4_c00391{font-size:120.000000px;}
.fs2_c00391{font-size:360.000000px;}
.y0_c00391{bottom:0.000000px;}
.y1_c00391{bottom:41.250000px;}
.y9_c00391{bottom:574.310700px;}
.y8_c00391{bottom:595.316700px;}
.y7_c00391{bottom:616.322700px;}
.y6_c00391{bottom:664.328700px;}
.y5_c00391{bottom:685.334700px;}
.y4_c00391{bottom:706.340700px;}
.y3_c00391{bottom:752.834700px;}
.yd_c00391{bottom:916.334700px;}
.yc_c00391{bottom:946.334700px;}
.yb_c00391{bottom:976.334700px;}
.ya_c00391{bottom:1006.334700px;}
.y2_c00391{bottom:1093.526700px;}
.h2_c00391{height:54.000000px;}
.h5_c00391{height:64.800000px;}
.h4_c00391{height:66.456000px;}
.h6_c00391{height:112.200000px;}
.h3_c00391{height:324.000000px;}
.h0_c00391{height:1262.835000px;}
.h1_c00391{height:1263.000000px;}
.w0_c00391{width:892.914000px;}
.w1_c00391{width:893.250000px;}
.x0_c00391{left:0.000000px;}
.x2_c00391{left:81.290250px;}
.x3_c00391{left:82.393650px;}
.x5_c00391{left:112.287450px;}
.x4_c00391{left:127.393650px;}
.x1_c00391{left:786.788700px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls2_c00391{letter-spacing:0.000000pt;}
.ls0_c00391{letter-spacing:0.768000pt;}
.ls1_c00391{letter-spacing:1.066667pt;}
.ws1_c00391{word-spacing:-11.648000pt;}
.ws0_c00391{word-spacing:-9.066667pt;}
.ws3_c00391{word-spacing:-5.248000pt;}
.ws5_c00391{word-spacing:-4.224000pt;}
.ws4_c00391{word-spacing:-0.768000pt;}
.ws2_c00391{word-spacing:0.000000pt;}
._0_c00391{margin-left:-426.965867pt;}
._4_c00391{margin-left:-8.000000pt;}
._1_c00391{margin-left:-3.733333pt;}
._2_c00391{margin-left:-1.920000pt;}
._3_c00391{width:4.224000pt;}
.fs1_c00391{font-size:37.333333pt;}
.fs0_c00391{font-size:53.333333pt;}
.fs3_c00391{font-size:64.000000pt;}
.fs4_c00391{font-size:106.666667pt;}
.fs2_c00391{font-size:320.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.y1_c00391{bottom:36.666667pt;}
.y9_c00391{bottom:510.498400pt;}
.y8_c00391{bottom:529.170400pt;}
.y7_c00391{bottom:547.842400pt;}
.y6_c00391{bottom:590.514400pt;}
.y5_c00391{bottom:609.186400pt;}
.y4_c00391{bottom:627.858400pt;}
.y3_c00391{bottom:669.186400pt;}
.yd_c00391{bottom:814.519733pt;}
.yc_c00391{bottom:841.186400pt;}
.yb_c00391{bottom:867.853067pt;}
.ya_c00391{bottom:894.519733pt;}
.y2_c00391{bottom:972.023733pt;}
.h2_c00391{height:48.000000pt;}
.h5_c00391{height:57.600000pt;}
.h4_c00391{height:59.072000pt;}
.h6_c00391{height:99.733333pt;}
.h3_c00391{height:288.000000pt;}
.h0_c00391{height:1122.520000pt;}
.h1_c00391{height:1122.666667pt;}
.w0_c00391{width:793.701333pt;}
.w1_c00391{width:794.000000pt;}
.x0_c00391{left:0.000000pt;}
.x2_c00391{left:72.258000pt;}
.x3_c00391{left:73.238800pt;}
.x5_c00391{left:99.811067pt;}
.x4_c00391{left:113.238800pt;}
.x1_c00391{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9336a84ddb46a296126c8b8f.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls4_c00392{letter-spacing:-0.540000px;}
.ls3_c00392{letter-spacing:0.000000px;}
.ls0_c00392{letter-spacing:0.720000px;}
.ls2_c00392{letter-spacing:1.500000px;}
.ls1_c00392{letter-spacing:1.650000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00392{word-spacing:-21.060000px;}
.ws0_c00392{word-spacing:-10.200000px;}
.wsc_c00392{word-spacing:-2.520000px;}
.ws18_c00392{word-spacing:-2.304000px;}
.ws1a_c00392{word-spacing:-1.500000px;}
.ws17_c00392{word-spacing:-1.296000px;}
.ws6_c00392{word-spacing:-1.152000px;}
.ws2_c00392{word-spacing:0.000000px;}
.wsa_c00392{word-spacing:0.288000px;}
.ws8_c00392{word-spacing:0.432000px;}
.ws9_c00392{word-spacing:1.008000px;}
.wsd_c00392{word-spacing:2.016000px;}
.wse_c00392{word-spacing:3.456000px;}
.ws7_c00392{word-spacing:3.528000px;}
.ws13_c00392{word-spacing:4.032000px;}
.wsf_c00392{word-spacing:5.472000px;}
.wsb_c00392{word-spacing:5.616000px;}
.ws10_c00392{word-spacing:5.688000px;}
.ws5_c00392{word-spacing:6.192000px;}
.ws11_c00392{word-spacing:6.840000px;}
.ws12_c00392{word-spacing:7.704000px;}
.ws19_c00392{word-spacing:7.848000px;}
.ws4_c00392{word-spacing:8.136000px;}
.ws16_c00392{word-spacing:8.712000px;}
.ws3_c00392{word-spacing:10.224000px;}
.ws15_c00392{word-spacing:14.256000px;}
.ws14_c00392{word-spacing:21.312000px;}
._0_c00392{margin-left:-480.337200px;}
._1_c00392{margin-left:-4.200000px;}
._2_c00392{margin-left:-1.440000px;}
.fc3_c00392{color:rgb(32,32,32);}
.fc2_c00392{color:rgb(233,83,14);}
.fc1_c00392{color:rgb(232,86,17);}
.fc4_c00392{color:rgb(157,157,156);}
.fc0_c00392{color:rgb(60,60,59);}
.fs1_c00392{font-size:42.000000px;}
.fs0_c00392{font-size:60.000000px;}
.fs4_c00392{font-size:66.000000px;}
.fs3_c00392{font-size:72.000000px;}
.fs2_c00392{font-size:108.000000px;}
.y0_c00392{bottom:0.000000px;}
.y1_c00392{bottom:41.250000px;}
.y1d_c00392{bottom:166.178700px;}
.y1c_c00392{bottom:196.184700px;}
.y1b_c00392{bottom:226.190700px;}
.y1a_c00392{bottom:256.196700px;}
.y19_c00392{bottom:286.202700px;}
.y18_c00392{bottom:316.208700px;}
.y17_c00392{bottom:346.214700px;}
.y16_c00392{bottom:376.220700px;}
.y15_c00392{bottom:406.226700px;}
.y14_c00392{bottom:436.232700px;}
.y13_c00392{bottom:466.238700px;}
.y12_c00392{bottom:496.244700px;}
.y11_c00392{bottom:526.250700px;}
.y10_c00392{bottom:556.256700px;}
.yf_c00392{bottom:586.262700px;}
.ye_c00392{bottom:616.268700px;}
.yd_c00392{bottom:646.274700px;}
.yc_c00392{bottom:676.280700px;}
.yb_c00392{bottom:706.286700px;}
.ya_c00392{bottom:736.292700px;}
.y9_c00392{bottom:766.298700px;}
.y8_c00392{bottom:796.304700px;}
.y23_c00392{bottom:796.334700px;}
.y7_c00392{bottom:826.310700px;}
.y22_c00392{bottom:826.334700px;}
.y6_c00392{bottom:856.316700px;}
.y21_c00392{bottom:856.334700px;}
.y5_c00392{bottom:886.322700px;}
.y20_c00392{bottom:886.334700px;}
.y4_c00392{bottom:916.328700px;}
.y1f_c00392{bottom:916.334700px;}
.y3_c00392{bottom:946.334700px;}
.y1e_c00392{bottom:946.376100px;}
.y2_c00392{bottom:1006.334700px;}
.h5_c00392{height:50.292000px;}
.h2_c00392{height:54.000000px;}
.h4_c00392{height:64.800000px;}
.h3_c00392{height:100.980000px;}
.h0_c00392{height:1262.835000px;}
.h1_c00392{height:1263.000000px;}
.w0_c00392{width:892.914000px;}
.w1_c00392{width:893.250000px;}
.x0_c00392{left:0.000000px;}
.x2_c00392{left:82.500000px;}
.x3_c00392{left:106.500000px;}
.x4_c00392{left:675.611100px;}
.x1_c00392{left:786.638850px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls4_c00392{letter-spacing:-0.480000pt;}
.ls3_c00392{letter-spacing:0.000000pt;}
.ls0_c00392{letter-spacing:0.640000pt;}
.ls2_c00392{letter-spacing:1.333333pt;}
.ls1_c00392{letter-spacing:1.466667pt;}
.ws1_c00392{word-spacing:-18.720000pt;}
.ws0_c00392{word-spacing:-9.066667pt;}
.wsc_c00392{word-spacing:-2.240000pt;}
.ws18_c00392{word-spacing:-2.048000pt;}
.ws1a_c00392{word-spacing:-1.333333pt;}
.ws17_c00392{word-spacing:-1.152000pt;}
.ws6_c00392{word-spacing:-1.024000pt;}
.ws2_c00392{word-spacing:0.000000pt;}
.wsa_c00392{word-spacing:0.256000pt;}
.ws8_c00392{word-spacing:0.384000pt;}
.ws9_c00392{word-spacing:0.896000pt;}
.wsd_c00392{word-spacing:1.792000pt;}
.wse_c00392{word-spacing:3.072000pt;}
.ws7_c00392{word-spacing:3.136000pt;}
.ws13_c00392{word-spacing:3.584000pt;}
.wsf_c00392{word-spacing:4.864000pt;}
.wsb_c00392{word-spacing:4.992000pt;}
.ws10_c00392{word-spacing:5.056000pt;}
.ws5_c00392{word-spacing:5.504000pt;}
.ws11_c00392{word-spacing:6.080000pt;}
.ws12_c00392{word-spacing:6.848000pt;}
.ws19_c00392{word-spacing:6.976000pt;}
.ws4_c00392{word-spacing:7.232000pt;}
.ws16_c00392{word-spacing:7.744000pt;}
.ws3_c00392{word-spacing:9.088000pt;}
.ws15_c00392{word-spacing:12.672000pt;}
.ws14_c00392{word-spacing:18.944000pt;}
._0_c00392{margin-left:-426.966400pt;}
._1_c00392{margin-left:-3.733333pt;}
._2_c00392{margin-left:-1.280000pt;}
.fs1_c00392{font-size:37.333333pt;}
.fs0_c00392{font-size:53.333333pt;}
.fs4_c00392{font-size:58.666667pt;}
.fs3_c00392{font-size:64.000000pt;}
.fs2_c00392{font-size:96.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.y1_c00392{bottom:36.666667pt;}
.y1d_c00392{bottom:147.714400pt;}
.y1c_c00392{bottom:174.386400pt;}
.y1b_c00392{bottom:201.058400pt;}
.y1a_c00392{bottom:227.730400pt;}
.y19_c00392{bottom:254.402400pt;}
.y18_c00392{bottom:281.074400pt;}
.y17_c00392{bottom:307.746400pt;}
.y16_c00392{bottom:334.418400pt;}
.y15_c00392{bottom:361.090400pt;}
.y14_c00392{bottom:387.762400pt;}
.y13_c00392{bottom:414.434400pt;}
.y12_c00392{bottom:441.106400pt;}
.y11_c00392{bottom:467.778400pt;}
.y10_c00392{bottom:494.450400pt;}
.yf_c00392{bottom:521.122400pt;}
.ye_c00392{bottom:547.794400pt;}
.yd_c00392{bottom:574.466400pt;}
.yc_c00392{bottom:601.138400pt;}
.yb_c00392{bottom:627.810400pt;}
.ya_c00392{bottom:654.482400pt;}
.y9_c00392{bottom:681.154400pt;}
.y8_c00392{bottom:707.826400pt;}
.y23_c00392{bottom:707.853067pt;}
.y7_c00392{bottom:734.498400pt;}
.y22_c00392{bottom:734.519733pt;}
.y6_c00392{bottom:761.170400pt;}
.y21_c00392{bottom:761.186400pt;}
.y5_c00392{bottom:787.842400pt;}
.y20_c00392{bottom:787.853067pt;}
.y4_c00392{bottom:814.514400pt;}
.y1f_c00392{bottom:814.519733pt;}
.y3_c00392{bottom:841.186400pt;}
.y1e_c00392{bottom:841.223200pt;}
.y2_c00392{bottom:894.519733pt;}
.h5_c00392{height:44.704000pt;}
.h2_c00392{height:48.000000pt;}
.h4_c00392{height:57.600000pt;}
.h3_c00392{height:89.760000pt;}
.h0_c00392{height:1122.520000pt;}
.h1_c00392{height:1122.666667pt;}
.w0_c00392{width:793.701333pt;}
.w1_c00392{width:794.000000pt;}
.x0_c00392{left:0.000000pt;}
.x2_c00392{left:73.333333pt;}
.x3_c00392{left:94.666667pt;}
.x4_c00392{left:600.543200pt;}
.x1_c00392{left:699.234533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73c7dea85163a337c1490c92.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls4_c00393{letter-spacing:-0.324000px;}
.ls3_c00393{letter-spacing:0.000000px;}
.ls0_c00393{letter-spacing:0.720000px;}
.ls2_c00393{letter-spacing:1.500000px;}
.ls1_c00393{letter-spacing:1.650000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00393{word-spacing:-21.276000px;}
.ws2_c00393{word-spacing:-14.850000px;}
.ws0_c00393{word-spacing:-10.200000px;}
.wsa_c00393{word-spacing:-2.520000px;}
.ws10_c00393{word-spacing:-1.728000px;}
.ws4_c00393{word-spacing:-1.656000px;}
.ws1a_c00393{word-spacing:-1.512000px;}
.ws1d_c00393{word-spacing:-1.500000px;}
.wsb_c00393{word-spacing:-1.224000px;}
.ws18_c00393{word-spacing:-1.008000px;}
.ws17_c00393{word-spacing:-0.792000px;}
.ws1c_c00393{word-spacing:-0.720000px;}
.ws3_c00393{word-spacing:0.000000px;}
.wsd_c00393{word-spacing:0.072000px;}
.ws12_c00393{word-spacing:0.288000px;}
.ws11_c00393{word-spacing:0.360000px;}
.ws1b_c00393{word-spacing:1.224000px;}
.ws13_c00393{word-spacing:1.584000px;}
.ws15_c00393{word-spacing:2.088000px;}
.ws8_c00393{word-spacing:4.896000px;}
.ws5_c00393{word-spacing:5.184000px;}
.ws9_c00393{word-spacing:5.256000px;}
.wsf_c00393{word-spacing:5.328000px;}
.wse_c00393{word-spacing:7.344000px;}
.ws16_c00393{word-spacing:8.280000px;}
.wsc_c00393{word-spacing:8.424000px;}
.ws7_c00393{word-spacing:9.144000px;}
.ws14_c00393{word-spacing:10.008000px;}
.ws6_c00393{word-spacing:11.448000px;}
.ws19_c00393{word-spacing:18.216000px;}
._0_c00393{margin-left:-480.337200px;}
._4_c00393{margin-left:-5.760000px;}
._1_c00393{margin-left:-4.200000px;}
._3_c00393{margin-left:-2.160000px;}
._2_c00393{margin-left:-1.134000px;}
.fc3_c00393{color:rgb(32,32,32);}
.fc2_c00393{color:rgb(233,83,14);}
.fc1_c00393{color:rgb(232,86,17);}
.fc4_c00393{color:rgb(157,157,156);}
.fc0_c00393{color:rgb(60,60,59);}
.fs1_c00393{font-size:42.000000px;}
.fs0_c00393{font-size:60.000000px;}
.fs4_c00393{font-size:66.000000px;}
.fs3_c00393{font-size:72.000000px;}
.fs2_c00393{font-size:108.000000px;}
.y0_c00393{bottom:0.000000px;}
.y1_c00393{bottom:41.250000px;}
.y1c_c00393{bottom:196.184700px;}
.y1b_c00393{bottom:226.190700px;}
.y1a_c00393{bottom:256.196700px;}
.y19_c00393{bottom:286.202700px;}
.y18_c00393{bottom:316.208700px;}
.y17_c00393{bottom:346.214700px;}
.y16_c00393{bottom:376.220700px;}
.y15_c00393{bottom:406.226700px;}
.y14_c00393{bottom:436.232700px;}
.y13_c00393{bottom:466.238700px;}
.y12_c00393{bottom:496.244700px;}
.y11_c00393{bottom:526.250700px;}
.y10_c00393{bottom:556.256700px;}
.yf_c00393{bottom:586.262700px;}
.ye_c00393{bottom:616.268700px;}
.yd_c00393{bottom:646.274700px;}
.yc_c00393{bottom:676.280700px;}
.yb_c00393{bottom:706.286700px;}
.ya_c00393{bottom:736.292700px;}
.y9_c00393{bottom:766.298700px;}
.y8_c00393{bottom:796.304700px;}
.y21_c00393{bottom:796.334700px;}
.y7_c00393{bottom:826.310700px;}
.y20_c00393{bottom:826.334700px;}
.y6_c00393{bottom:856.316700px;}
.y1f_c00393{bottom:856.334700px;}
.y5_c00393{bottom:886.322700px;}
.y1e_c00393{bottom:886.334700px;}
.y4_c00393{bottom:916.328700px;}
.y1d_c00393{bottom:916.334700px;}
.y3_c00393{bottom:946.334700px;}
.y2_c00393{bottom:1006.334700px;}
.h5_c00393{height:50.292000px;}
.h2_c00393{height:54.000000px;}
.h4_c00393{height:64.800000px;}
.h3_c00393{height:100.980000px;}
.h0_c00393{height:1262.835000px;}
.h1_c00393{height:1263.000000px;}
.w0_c00393{width:892.914000px;}
.w1_c00393{width:893.250000px;}
.x0_c00393{left:0.000000px;}
.x2_c00393{left:82.500000px;}
.x3_c00393{left:106.500000px;}
.x4_c00393{left:675.611100px;}
.x1_c00393{left:785.663850px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls4_c00393{letter-spacing:-0.288000pt;}
.ls3_c00393{letter-spacing:0.000000pt;}
.ls0_c00393{letter-spacing:0.640000pt;}
.ls2_c00393{letter-spacing:1.333333pt;}
.ls1_c00393{letter-spacing:1.466667pt;}
.ws1_c00393{word-spacing:-18.912000pt;}
.ws2_c00393{word-spacing:-13.200000pt;}
.ws0_c00393{word-spacing:-9.066667pt;}
.wsa_c00393{word-spacing:-2.240000pt;}
.ws10_c00393{word-spacing:-1.536000pt;}
.ws4_c00393{word-spacing:-1.472000pt;}
.ws1a_c00393{word-spacing:-1.344000pt;}
.ws1d_c00393{word-spacing:-1.333333pt;}
.wsb_c00393{word-spacing:-1.088000pt;}
.ws18_c00393{word-spacing:-0.896000pt;}
.ws17_c00393{word-spacing:-0.704000pt;}
.ws1c_c00393{word-spacing:-0.640000pt;}
.ws3_c00393{word-spacing:0.000000pt;}
.wsd_c00393{word-spacing:0.064000pt;}
.ws12_c00393{word-spacing:0.256000pt;}
.ws11_c00393{word-spacing:0.320000pt;}
.ws1b_c00393{word-spacing:1.088000pt;}
.ws13_c00393{word-spacing:1.408000pt;}
.ws15_c00393{word-spacing:1.856000pt;}
.ws8_c00393{word-spacing:4.352000pt;}
.ws5_c00393{word-spacing:4.608000pt;}
.ws9_c00393{word-spacing:4.672000pt;}
.wsf_c00393{word-spacing:4.736000pt;}
.wse_c00393{word-spacing:6.528000pt;}
.ws16_c00393{word-spacing:7.360000pt;}
.wsc_c00393{word-spacing:7.488000pt;}
.ws7_c00393{word-spacing:8.128000pt;}
.ws14_c00393{word-spacing:8.896000pt;}
.ws6_c00393{word-spacing:10.176000pt;}
.ws19_c00393{word-spacing:16.192000pt;}
._0_c00393{margin-left:-426.966400pt;}
._4_c00393{margin-left:-5.120000pt;}
._1_c00393{margin-left:-3.733333pt;}
._3_c00393{margin-left:-1.920000pt;}
._2_c00393{margin-left:-1.008000pt;}
.fs1_c00393{font-size:37.333333pt;}
.fs0_c00393{font-size:53.333333pt;}
.fs4_c00393{font-size:58.666667pt;}
.fs3_c00393{font-size:64.000000pt;}
.fs2_c00393{font-size:96.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y1_c00393{bottom:36.666667pt;}
.y1c_c00393{bottom:174.386400pt;}
.y1b_c00393{bottom:201.058400pt;}
.y1a_c00393{bottom:227.730400pt;}
.y19_c00393{bottom:254.402400pt;}
.y18_c00393{bottom:281.074400pt;}
.y17_c00393{bottom:307.746400pt;}
.y16_c00393{bottom:334.418400pt;}
.y15_c00393{bottom:361.090400pt;}
.y14_c00393{bottom:387.762400pt;}
.y13_c00393{bottom:414.434400pt;}
.y12_c00393{bottom:441.106400pt;}
.y11_c00393{bottom:467.778400pt;}
.y10_c00393{bottom:494.450400pt;}
.yf_c00393{bottom:521.122400pt;}
.ye_c00393{bottom:547.794400pt;}
.yd_c00393{bottom:574.466400pt;}
.yc_c00393{bottom:601.138400pt;}
.yb_c00393{bottom:627.810400pt;}
.ya_c00393{bottom:654.482400pt;}
.y9_c00393{bottom:681.154400pt;}
.y8_c00393{bottom:707.826400pt;}
.y21_c00393{bottom:707.853067pt;}
.y7_c00393{bottom:734.498400pt;}
.y20_c00393{bottom:734.519733pt;}
.y6_c00393{bottom:761.170400pt;}
.y1f_c00393{bottom:761.186400pt;}
.y5_c00393{bottom:787.842400pt;}
.y1e_c00393{bottom:787.853067pt;}
.y4_c00393{bottom:814.514400pt;}
.y1d_c00393{bottom:814.519733pt;}
.y3_c00393{bottom:841.186400pt;}
.y2_c00393{bottom:894.519733pt;}
.h5_c00393{height:44.704000pt;}
.h2_c00393{height:48.000000pt;}
.h4_c00393{height:57.600000pt;}
.h3_c00393{height:89.760000pt;}
.h0_c00393{height:1122.520000pt;}
.h1_c00393{height:1122.666667pt;}
.w0_c00393{width:793.701333pt;}
.w1_c00393{width:794.000000pt;}
.x0_c00393{left:0.000000pt;}
.x2_c00393{left:73.333333pt;}
.x3_c00393{left:94.666667pt;}
.x4_c00393{left:600.543200pt;}
.x1_c00393{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00394;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls2_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:0.864000px;}
.ls1_c00394{letter-spacing:1.200000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00394{word-spacing:-13.104000px;}
.ws0_c00394{word-spacing:-10.200000px;}
.ws3_c00394{word-spacing:-5.328000px;}
.ws6_c00394{word-spacing:-4.752000px;}
.ws7_c00394{word-spacing:-2.952000px;}
.ws4_c00394{word-spacing:-1.440000px;}
.ws5_c00394{word-spacing:-0.864000px;}
.ws2_c00394{word-spacing:0.000000px;}
._0_c00394{margin-left:-480.336600px;}
._8_c00394{margin-left:-11.400000px;}
._6_c00394{margin-left:-10.320000px;}
._7_c00394{margin-left:-9.000000px;}
._9_c00394{margin-left:-7.920000px;}
._4_c00394{margin-left:-6.480000px;}
._1_c00394{margin-left:-4.200000px;}
._3_c00394{margin-left:-1.440000px;}
._5_c00394{width:1.440000px;}
._2_c00394{width:5.328000px;}
.fc3_c00394{color:rgb(255,255,255);}
.fc2_c00394{color:rgb(233,83,14);}
.fc1_c00394{color:rgb(232,86,17);}
.fc0_c00394{color:rgb(60,60,59);}
.fs1_c00394{font-size:42.000000px;}
.fs0_c00394{font-size:60.000000px;}
.fs3_c00394{font-size:72.000000px;}
.fs4_c00394{font-size:120.000000px;}
.fs2_c00394{font-size:360.000000px;}
.y0_c00394{bottom:0.000000px;}
.y1_c00394{bottom:41.250000px;}
.yc_c00394{bottom:484.292700px;}
.yb_c00394{bottom:505.298700px;}
.ya_c00394{bottom:526.304700px;}
.y9_c00394{bottom:574.310700px;}
.y8_c00394{bottom:595.316700px;}
.y7_c00394{bottom:616.322700px;}
.y6_c00394{bottom:664.328700px;}
.y5_c00394{bottom:685.334700px;}
.y4_c00394{bottom:706.340700px;}
.y3_c00394{bottom:752.834700px;}
.y10_c00394{bottom:916.334700px;}
.yf_c00394{bottom:946.334700px;}
.ye_c00394{bottom:976.334700px;}
.yd_c00394{bottom:1006.334700px;}
.y2_c00394{bottom:1093.526700px;}
.h2_c00394{height:54.000000px;}
.h5_c00394{height:64.800000px;}
.h4_c00394{height:66.456000px;}
.h6_c00394{height:112.200000px;}
.h3_c00394{height:324.000000px;}
.h0_c00394{height:1262.835000px;}
.h1_c00394{height:1263.000000px;}
.w0_c00394{width:892.914000px;}
.w1_c00394{width:893.250000px;}
.x0_c00394{left:0.000000px;}
.x2_c00394{left:81.290250px;}
.x3_c00394{left:82.393650px;}
.x5_c00394{left:112.287450px;}
.x4_c00394{left:127.393650px;}
.x1_c00394{left:786.713700px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls2_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:0.768000pt;}
.ls1_c00394{letter-spacing:1.066667pt;}
.ws1_c00394{word-spacing:-11.648000pt;}
.ws0_c00394{word-spacing:-9.066667pt;}
.ws3_c00394{word-spacing:-4.736000pt;}
.ws6_c00394{word-spacing:-4.224000pt;}
.ws7_c00394{word-spacing:-2.624000pt;}
.ws4_c00394{word-spacing:-1.280000pt;}
.ws5_c00394{word-spacing:-0.768000pt;}
.ws2_c00394{word-spacing:0.000000pt;}
._0_c00394{margin-left:-426.965867pt;}
._8_c00394{margin-left:-10.133333pt;}
._6_c00394{margin-left:-9.173333pt;}
._7_c00394{margin-left:-8.000000pt;}
._9_c00394{margin-left:-7.040000pt;}
._4_c00394{margin-left:-5.760000pt;}
._1_c00394{margin-left:-3.733333pt;}
._3_c00394{margin-left:-1.280000pt;}
._5_c00394{width:1.280000pt;}
._2_c00394{width:4.736000pt;}
.fs1_c00394{font-size:37.333333pt;}
.fs0_c00394{font-size:53.333333pt;}
.fs3_c00394{font-size:64.000000pt;}
.fs4_c00394{font-size:106.666667pt;}
.fs2_c00394{font-size:320.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.y1_c00394{bottom:36.666667pt;}
.yc_c00394{bottom:430.482400pt;}
.yb_c00394{bottom:449.154400pt;}
.ya_c00394{bottom:467.826400pt;}
.y9_c00394{bottom:510.498400pt;}
.y8_c00394{bottom:529.170400pt;}
.y7_c00394{bottom:547.842400pt;}
.y6_c00394{bottom:590.514400pt;}
.y5_c00394{bottom:609.186400pt;}
.y4_c00394{bottom:627.858400pt;}
.y3_c00394{bottom:669.186400pt;}
.y10_c00394{bottom:814.519733pt;}
.yf_c00394{bottom:841.186400pt;}
.ye_c00394{bottom:867.853067pt;}
.yd_c00394{bottom:894.519733pt;}
.y2_c00394{bottom:972.023733pt;}
.h2_c00394{height:48.000000pt;}
.h5_c00394{height:57.600000pt;}
.h4_c00394{height:59.072000pt;}
.h6_c00394{height:99.733333pt;}
.h3_c00394{height:288.000000pt;}
.h0_c00394{height:1122.520000pt;}
.h1_c00394{height:1122.666667pt;}
.w0_c00394{width:793.701333pt;}
.w1_c00394{width:794.000000pt;}
.x0_c00394{left:0.000000pt;}
.x2_c00394{left:72.258000pt;}
.x3_c00394{left:73.238800pt;}
.x5_c00394{left:99.811067pt;}
.x4_c00394{left:113.238800pt;}
.x1_c00394{left:699.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.161000;font-style: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);}
.m1_c00395{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls5_c00395{letter-spacing:-0.540000px;}
.ls4_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:0.720000px;}
.ls1_c00395{letter-spacing:0.840000px;}
.ls3_c00395{letter-spacing:1.500000px;}
.ls2_c00395{letter-spacing:1.650000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00395{word-spacing:-21.060000px;}
.ws2_c00395{word-spacing:-17.640000px;}
.ws0_c00395{word-spacing:-10.200000px;}
.wsd_c00395{word-spacing:-4.752000px;}
.ws6_c00395{word-spacing:-3.888000px;}
.wsa_c00395{word-spacing:-3.312000px;}
.ws10_c00395{word-spacing:-1.560000px;}
.wsf_c00395{word-spacing:-1.500000px;}
.ws4_c00395{word-spacing:-0.840000px;}
.ws3_c00395{word-spacing:0.000000px;}
.ws9_c00395{word-spacing:0.072000px;}
.ws5_c00395{word-spacing:0.720000px;}
.ws7_c00395{word-spacing:3.024000px;}
.wse_c00395{word-spacing:3.096000px;}
.wsb_c00395{word-spacing:5.328000px;}
.wsc_c00395{word-spacing:5.760000px;}
.ws8_c00395{word-spacing:17.064000px;}
._0_c00395{margin-left:-480.336600px;}
._1_c00395{margin-left:-4.200000px;}
._5_c00395{margin-left:-2.736000px;}
._2_c00395{margin-left:-1.440000px;}
._4_c00395{width:1.274400px;}
._3_c00395{width:2.318400px;}
.fc4_c00395{color:rgb(26,23,23);}
.fc3_c00395{color:rgb(32,32,32);}
.fc2_c00395{color:rgb(233,83,14);}
.fc1_c00395{color:rgb(232,86,17);}
.fc5_c00395{color:rgb(157,157,156);}
.fc0_c00395{color:rgb(60,60,59);}
.fs1_c00395{font-size:42.000000px;}
.fs0_c00395{font-size:60.000000px;}
.fs5_c00395{font-size:66.000000px;}
.fs4_c00395{font-size:72.000000px;}
.fs3_c00395{font-size:84.000000px;}
.fs2_c00395{font-size:108.000000px;}
.y0_c00395{bottom:0.000000px;}
.y1_c00395{bottom:41.250000px;}
.y12_c00395{bottom:256.322700px;}
.y11_c00395{bottom:286.328700px;}
.y10_c00395{bottom:316.334700px;}
.yf_c00395{bottom:376.334700px;}
.ye_c00395{bottom:466.304700px;}
.yd_c00395{bottom:496.310700px;}
.yc_c00395{bottom:526.316700px;}
.yb_c00395{bottom:556.322700px;}
.ya_c00395{bottom:586.328700px;}
.y9_c00395{bottom:616.334700px;}
.y8_c00395{bottom:676.334700px;}
.y17_c00395{bottom:736.334700px;}
.y7_c00395{bottom:766.316700px;}
.y16_c00395{bottom:766.334700px;}
.y6_c00395{bottom:796.322700px;}
.y15_c00395{bottom:796.334700px;}
.y5_c00395{bottom:826.328700px;}
.y14_c00395{bottom:826.334700px;}
.y4_c00395{bottom:856.334700px;}
.y13_c00395{bottom:856.376100px;}
.y3_c00395{bottom:916.334700px;}
.y2_c00395{bottom:1006.334700px;}
.h6_c00395{height:50.292000px;}
.h2_c00395{height:54.000000px;}
.h5_c00395{height:64.800000px;}
.h4_c00395{height:78.540000px;}
.h3_c00395{height:100.980000px;}
.h0_c00395{height:1262.835000px;}
.h1_c00395{height:1263.000000px;}
.w0_c00395{width:892.914000px;}
.w1_c00395{width:893.250000px;}
.x0_c00395{left:0.000000px;}
.x2_c00395{left:82.500000px;}
.x3_c00395{left:90.000000px;}
.x4_c00395{left:106.500000px;}
.x5_c00395{left:675.611100px;}
.x1_c00395{left:785.588700px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls5_c00395{letter-spacing:-0.480000pt;}
.ls4_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:0.640000pt;}
.ls1_c00395{letter-spacing:0.746667pt;}
.ls3_c00395{letter-spacing:1.333333pt;}
.ls2_c00395{letter-spacing:1.466667pt;}
.ws1_c00395{word-spacing:-18.720000pt;}
.ws2_c00395{word-spacing:-15.680000pt;}
.ws0_c00395{word-spacing:-9.066667pt;}
.wsd_c00395{word-spacing:-4.224000pt;}
.ws6_c00395{word-spacing:-3.456000pt;}
.wsa_c00395{word-spacing:-2.944000pt;}
.ws10_c00395{word-spacing:-1.386667pt;}
.wsf_c00395{word-spacing:-1.333333pt;}
.ws4_c00395{word-spacing:-0.746667pt;}
.ws3_c00395{word-spacing:0.000000pt;}
.ws9_c00395{word-spacing:0.064000pt;}
.ws5_c00395{word-spacing:0.640000pt;}
.ws7_c00395{word-spacing:2.688000pt;}
.wse_c00395{word-spacing:2.752000pt;}
.wsb_c00395{word-spacing:4.736000pt;}
.wsc_c00395{word-spacing:5.120000pt;}
.ws8_c00395{word-spacing:15.168000pt;}
._0_c00395{margin-left:-426.965867pt;}
._1_c00395{margin-left:-3.733333pt;}
._5_c00395{margin-left:-2.432000pt;}
._2_c00395{margin-left:-1.280000pt;}
._4_c00395{width:1.132800pt;}
._3_c00395{width:2.060800pt;}
.fs1_c00395{font-size:37.333333pt;}
.fs0_c00395{font-size:53.333333pt;}
.fs5_c00395{font-size:58.666667pt;}
.fs4_c00395{font-size:64.000000pt;}
.fs3_c00395{font-size:74.666667pt;}
.fs2_c00395{font-size:96.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y1_c00395{bottom:36.666667pt;}
.y12_c00395{bottom:227.842400pt;}
.y11_c00395{bottom:254.514400pt;}
.y10_c00395{bottom:281.186400pt;}
.yf_c00395{bottom:334.519733pt;}
.ye_c00395{bottom:414.493067pt;}
.yd_c00395{bottom:441.165067pt;}
.yc_c00395{bottom:467.837067pt;}
.yb_c00395{bottom:494.509067pt;}
.ya_c00395{bottom:521.181067pt;}
.y9_c00395{bottom:547.853067pt;}
.y8_c00395{bottom:601.186400pt;}
.y17_c00395{bottom:654.519733pt;}
.y7_c00395{bottom:681.170400pt;}
.y16_c00395{bottom:681.186400pt;}
.y6_c00395{bottom:707.842400pt;}
.y15_c00395{bottom:707.853067pt;}
.y5_c00395{bottom:734.514400pt;}
.y14_c00395{bottom:734.519733pt;}
.y4_c00395{bottom:761.186400pt;}
.y13_c00395{bottom:761.223200pt;}
.y3_c00395{bottom:814.519733pt;}
.y2_c00395{bottom:894.519733pt;}
.h6_c00395{height:44.704000pt;}
.h2_c00395{height:48.000000pt;}
.h5_c00395{height:57.600000pt;}
.h4_c00395{height:69.813333pt;}
.h3_c00395{height:89.760000pt;}
.h0_c00395{height:1122.520000pt;}
.h1_c00395{height:1122.666667pt;}
.w0_c00395{width:793.701333pt;}
.w1_c00395{width:794.000000pt;}
.x0_c00395{left:0.000000pt;}
.x2_c00395{left:73.333333pt;}
.x3_c00395{left:80.000000pt;}
.x4_c00395{left:94.666667pt;}
.x5_c00395{left:600.543200pt;}
.x1_c00395{left:698.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.161000;font-style: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);}
.m1_c00396{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls1_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:0.720000px;}
.ls2_c00396{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws8_c00396{word-spacing:-1.728000px;}
.ws2_c00396{word-spacing:-0.840000px;}
.ws10_c00396{word-spacing:-0.072000px;}
.ws1_c00396{word-spacing:0.000000px;}
.ws12_c00396{word-spacing:0.216000px;}
.ws3_c00396{word-spacing:1.440000px;}
.ws4_c00396{word-spacing:1.800000px;}
.ws9_c00396{word-spacing:2.016000px;}
.wsc_c00396{word-spacing:3.816000px;}
.wsa_c00396{word-spacing:5.184000px;}
.ws11_c00396{word-spacing:5.544000px;}
.wse_c00396{word-spacing:7.344000px;}
.wsd_c00396{word-spacing:7.920000px;}
.ws7_c00396{word-spacing:8.928000px;}
.wsf_c00396{word-spacing:9.936000px;}
.wsb_c00396{word-spacing:10.872000px;}
.ws6_c00396{word-spacing:12.168000px;}
.ws5_c00396{word-spacing:15.048000px;}
._0_c00396{margin-left:-480.336600px;}
._5_c00396{margin-left:-6.480000px;}
._1_c00396{margin-left:-4.200000px;}
._4_c00396{margin-left:-2.700000px;}
._2_c00396{margin-left:-1.440000px;}
._3_c00396{width:1.382400px;}
.fc2_c00396{color:rgb(32,32,32);}
.fc1_c00396{color:rgb(232,86,17);}
.fc0_c00396{color:rgb(60,60,59);}
.fs1_c00396{font-size:42.000000px;}
.fs0_c00396{font-size:60.000000px;}
.fs3_c00396{font-size:72.000000px;}
.fs2_c00396{font-size:84.000000px;}
.y0_c00396{bottom:0.000000px;}
.y1_c00396{bottom:41.250000px;}
.y15_c00396{bottom:316.292700px;}
.y14_c00396{bottom:346.298700px;}
.y13_c00396{bottom:376.304700px;}
.y12_c00396{bottom:406.310700px;}
.y11_c00396{bottom:436.316700px;}
.y10_c00396{bottom:466.322700px;}
.yf_c00396{bottom:496.328700px;}
.ye_c00396{bottom:526.334700px;}
.yd_c00396{bottom:586.334700px;}
.yc_c00396{bottom:676.280700px;}
.yb_c00396{bottom:706.286700px;}
.ya_c00396{bottom:736.292700px;}
.y9_c00396{bottom:766.298700px;}
.y8_c00396{bottom:796.304700px;}
.y7_c00396{bottom:826.310700px;}
.y6_c00396{bottom:856.316700px;}
.y5_c00396{bottom:886.322700px;}
.y4_c00396{bottom:916.328700px;}
.y3_c00396{bottom:946.334700px;}
.y2_c00396{bottom:1006.334700px;}
.h2_c00396{height:54.000000px;}
.h4_c00396{height:64.800000px;}
.h3_c00396{height:78.540000px;}
.h0_c00396{height:1262.835000px;}
.h1_c00396{height:1263.000000px;}
.w0_c00396{width:892.914000px;}
.w1_c00396{width:893.250000px;}
.x0_c00396{left:0.000000px;}
.x2_c00396{left:90.000000px;}
.x3_c00396{left:106.500000px;}
.x1_c00396{left:787.688700px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls1_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:0.640000pt;}
.ls2_c00396{letter-spacing:0.746667pt;}
.ws0_c00396{word-spacing:-9.066667pt;}
.ws8_c00396{word-spacing:-1.536000pt;}
.ws2_c00396{word-spacing:-0.746667pt;}
.ws10_c00396{word-spacing:-0.064000pt;}
.ws1_c00396{word-spacing:0.000000pt;}
.ws12_c00396{word-spacing:0.192000pt;}
.ws3_c00396{word-spacing:1.280000pt;}
.ws4_c00396{word-spacing:1.600000pt;}
.ws9_c00396{word-spacing:1.792000pt;}
.wsc_c00396{word-spacing:3.392000pt;}
.wsa_c00396{word-spacing:4.608000pt;}
.ws11_c00396{word-spacing:4.928000pt;}
.wse_c00396{word-spacing:6.528000pt;}
.wsd_c00396{word-spacing:7.040000pt;}
.ws7_c00396{word-spacing:7.936000pt;}
.wsf_c00396{word-spacing:8.832000pt;}
.wsb_c00396{word-spacing:9.664000pt;}
.ws6_c00396{word-spacing:10.816000pt;}
.ws5_c00396{word-spacing:13.376000pt;}
._0_c00396{margin-left:-426.965867pt;}
._5_c00396{margin-left:-5.760000pt;}
._1_c00396{margin-left:-3.733333pt;}
._4_c00396{margin-left:-2.400000pt;}
._2_c00396{margin-left:-1.280000pt;}
._3_c00396{width:1.228800pt;}
.fs1_c00396{font-size:37.333333pt;}
.fs0_c00396{font-size:53.333333pt;}
.fs3_c00396{font-size:64.000000pt;}
.fs2_c00396{font-size:74.666667pt;}
.y0_c00396{bottom:0.000000pt;}
.y1_c00396{bottom:36.666667pt;}
.y15_c00396{bottom:281.149067pt;}
.y14_c00396{bottom:307.821067pt;}
.y13_c00396{bottom:334.493067pt;}
.y12_c00396{bottom:361.165067pt;}
.y11_c00396{bottom:387.837067pt;}
.y10_c00396{bottom:414.509067pt;}
.yf_c00396{bottom:441.181067pt;}
.ye_c00396{bottom:467.853067pt;}
.yd_c00396{bottom:521.186400pt;}
.yc_c00396{bottom:601.138400pt;}
.yb_c00396{bottom:627.810400pt;}
.ya_c00396{bottom:654.482400pt;}
.y9_c00396{bottom:681.154400pt;}
.y8_c00396{bottom:707.826400pt;}
.y7_c00396{bottom:734.498400pt;}
.y6_c00396{bottom:761.170400pt;}
.y5_c00396{bottom:787.842400pt;}
.y4_c00396{bottom:814.514400pt;}
.y3_c00396{bottom:841.186400pt;}
.y2_c00396{bottom:894.519733pt;}
.h2_c00396{height:48.000000pt;}
.h4_c00396{height:57.600000pt;}
.h3_c00396{height:69.813333pt;}
.h0_c00396{height:1122.520000pt;}
.h1_c00396{height:1122.666667pt;}
.w0_c00396{width:793.701333pt;}
.w1_c00396{width:794.000000pt;}
.x0_c00396{left:0.000000pt;}
.x2_c00396{left:80.000000pt;}
.x3_c00396{left:94.666667pt;}
.x1_c00396{left:700.167733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls5_c00397{letter-spacing:-0.324000px;}
.ls4_c00397{letter-spacing:0.000000px;}
.ls0_c00397{letter-spacing:0.720000px;}
.ls1_c00397{letter-spacing:0.840000px;}
.ls3_c00397{letter-spacing:1.500000px;}
.ls2_c00397{letter-spacing:1.650000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00397{word-spacing:-21.276000px;}
.ws2_c00397{word-spacing:-17.640000px;}
.ws3_c00397{word-spacing:-14.850000px;}
.ws0_c00397{word-spacing:-10.200000px;}
.ws10_c00397{word-spacing:-1.500000px;}
.ws5_c00397{word-spacing:-0.840000px;}
.ws4_c00397{word-spacing:0.000000px;}
.wse_c00397{word-spacing:0.360000px;}
.wsa_c00397{word-spacing:1.080000px;}
.ws9_c00397{word-spacing:2.088000px;}
.ws7_c00397{word-spacing:6.984000px;}
.wsf_c00397{word-spacing:7.128000px;}
.wsb_c00397{word-spacing:7.344000px;}
.wsd_c00397{word-spacing:12.816000px;}
.wsc_c00397{word-spacing:14.328000px;}
.ws8_c00397{word-spacing:16.560000px;}
.ws6_c00397{word-spacing:29.376000px;}
._0_c00397{margin-left:-480.337200px;}
._3_c00397{margin-left:-6.372000px;}
._1_c00397{margin-left:-4.200000px;}
._4_c00397{margin-left:-2.235600px;}
._2_c00397{margin-left:-1.134000px;}
.fc3_c00397{color:rgb(32,32,32);}
.fc2_c00397{color:rgb(233,83,14);}
.fc1_c00397{color:rgb(232,86,17);}
.fc4_c00397{color:rgb(157,157,156);}
.fc0_c00397{color:rgb(60,60,59);}
.fs1_c00397{font-size:42.000000px;}
.fs0_c00397{font-size:60.000000px;}
.fs5_c00397{font-size:66.000000px;}
.fs4_c00397{font-size:72.000000px;}
.fs3_c00397{font-size:84.000000px;}
.fs2_c00397{font-size:108.000000px;}
.y0_c00397{bottom:0.000000px;}
.y1_c00397{bottom:41.250000px;}
.y12_c00397{bottom:256.322700px;}
.y11_c00397{bottom:286.328700px;}
.y10_c00397{bottom:316.334700px;}
.yf_c00397{bottom:376.334700px;}
.ye_c00397{bottom:466.304700px;}
.yd_c00397{bottom:496.310700px;}
.yc_c00397{bottom:526.316700px;}
.yb_c00397{bottom:556.322700px;}
.ya_c00397{bottom:586.328700px;}
.y9_c00397{bottom:616.334700px;}
.y8_c00397{bottom:676.334700px;}
.y18_c00397{bottom:706.334700px;}
.y17_c00397{bottom:736.334700px;}
.y7_c00397{bottom:766.316700px;}
.y16_c00397{bottom:766.334700px;}
.y6_c00397{bottom:796.322700px;}
.y15_c00397{bottom:796.334700px;}
.y5_c00397{bottom:826.328700px;}
.y14_c00397{bottom:826.334700px;}
.y4_c00397{bottom:856.334700px;}
.y13_c00397{bottom:856.376100px;}
.y3_c00397{bottom:916.334700px;}
.y2_c00397{bottom:1006.334700px;}
.h6_c00397{height:50.292000px;}
.h2_c00397{height:54.000000px;}
.h5_c00397{height:64.800000px;}
.h4_c00397{height:78.540000px;}
.h3_c00397{height:100.980000px;}
.h0_c00397{height:1262.835000px;}
.h1_c00397{height:1263.000000px;}
.w0_c00397{width:892.914000px;}
.w1_c00397{width:893.250000px;}
.x0_c00397{left:0.000000px;}
.x2_c00397{left:82.500000px;}
.x3_c00397{left:90.000000px;}
.x4_c00397{left:106.500000px;}
.x5_c00397{left:675.611100px;}
.x1_c00397{left:785.663850px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls5_c00397{letter-spacing:-0.288000pt;}
.ls4_c00397{letter-spacing:0.000000pt;}
.ls0_c00397{letter-spacing:0.640000pt;}
.ls1_c00397{letter-spacing:0.746667pt;}
.ls3_c00397{letter-spacing:1.333333pt;}
.ls2_c00397{letter-spacing:1.466667pt;}
.ws1_c00397{word-spacing:-18.912000pt;}
.ws2_c00397{word-spacing:-15.680000pt;}
.ws3_c00397{word-spacing:-13.200000pt;}
.ws0_c00397{word-spacing:-9.066667pt;}
.ws10_c00397{word-spacing:-1.333333pt;}
.ws5_c00397{word-spacing:-0.746667pt;}
.ws4_c00397{word-spacing:0.000000pt;}
.wse_c00397{word-spacing:0.320000pt;}
.wsa_c00397{word-spacing:0.960000pt;}
.ws9_c00397{word-spacing:1.856000pt;}
.ws7_c00397{word-spacing:6.208000pt;}
.wsf_c00397{word-spacing:6.336000pt;}
.wsb_c00397{word-spacing:6.528000pt;}
.wsd_c00397{word-spacing:11.392000pt;}
.wsc_c00397{word-spacing:12.736000pt;}
.ws8_c00397{word-spacing:14.720000pt;}
.ws6_c00397{word-spacing:26.112000pt;}
._0_c00397{margin-left:-426.966400pt;}
._3_c00397{margin-left:-5.664000pt;}
._1_c00397{margin-left:-3.733333pt;}
._4_c00397{margin-left:-1.987200pt;}
._2_c00397{margin-left:-1.008000pt;}
.fs1_c00397{font-size:37.333333pt;}
.fs0_c00397{font-size:53.333333pt;}
.fs5_c00397{font-size:58.666667pt;}
.fs4_c00397{font-size:64.000000pt;}
.fs3_c00397{font-size:74.666667pt;}
.fs2_c00397{font-size:96.000000pt;}
.y0_c00397{bottom:0.000000pt;}
.y1_c00397{bottom:36.666667pt;}
.y12_c00397{bottom:227.842400pt;}
.y11_c00397{bottom:254.514400pt;}
.y10_c00397{bottom:281.186400pt;}
.yf_c00397{bottom:334.519733pt;}
.ye_c00397{bottom:414.493067pt;}
.yd_c00397{bottom:441.165067pt;}
.yc_c00397{bottom:467.837067pt;}
.yb_c00397{bottom:494.509067pt;}
.ya_c00397{bottom:521.181067pt;}
.y9_c00397{bottom:547.853067pt;}
.y8_c00397{bottom:601.186400pt;}
.y18_c00397{bottom:627.853067pt;}
.y17_c00397{bottom:654.519733pt;}
.y7_c00397{bottom:681.170400pt;}
.y16_c00397{bottom:681.186400pt;}
.y6_c00397{bottom:707.842400pt;}
.y15_c00397{bottom:707.853067pt;}
.y5_c00397{bottom:734.514400pt;}
.y14_c00397{bottom:734.519733pt;}
.y4_c00397{bottom:761.186400pt;}
.y13_c00397{bottom:761.223200pt;}
.y3_c00397{bottom:814.519733pt;}
.y2_c00397{bottom:894.519733pt;}
.h6_c00397{height:44.704000pt;}
.h2_c00397{height:48.000000pt;}
.h5_c00397{height:57.600000pt;}
.h4_c00397{height:69.813333pt;}
.h3_c00397{height:89.760000pt;}
.h0_c00397{height:1122.520000pt;}
.h1_c00397{height:1122.666667pt;}
.w0_c00397{width:793.701333pt;}
.w1_c00397{width:794.000000pt;}
.x0_c00397{left:0.000000pt;}
.x2_c00397{left:73.333333pt;}
.x3_c00397{left:80.000000pt;}
.x4_c00397{left:94.666667pt;}
.x5_c00397{left:600.543200pt;}
.x1_c00397{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f0146705d46c3af5096eb9.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.199000;font-style: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);}
.m1_c00398{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls1_c00398{letter-spacing:0.000000px;}
.ls0_c00398{letter-spacing:0.720000px;}
.ls2_c00398{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws6_c00398{word-spacing:-5.184000px;}
.ws7_c00398{word-spacing:-1.368000px;}
.ws2_c00398{word-spacing:-0.840000px;}
.wsa_c00398{word-spacing:-0.432000px;}
.ws1_c00398{word-spacing:0.000000px;}
.ws10_c00398{word-spacing:0.072000px;}
.ws5_c00398{word-spacing:0.648000px;}
.ws3_c00398{word-spacing:0.936000px;}
.ws9_c00398{word-spacing:3.168000px;}
.ws12_c00398{word-spacing:3.456000px;}
.ws11_c00398{word-spacing:4.896000px;}
.ws4_c00398{word-spacing:5.616000px;}
.wsd_c00398{word-spacing:6.552000px;}
.ws8_c00398{word-spacing:6.768000px;}
.wsc_c00398{word-spacing:7.200000px;}
.wsb_c00398{word-spacing:8.136000px;}
.wse_c00398{word-spacing:9.000000px;}
.wsf_c00398{word-spacing:16.704000px;}
._0_c00398{margin-left:-480.336600px;}
._3_c00398{margin-left:-5.752800px;}
._1_c00398{margin-left:-4.200000px;}
._2_c00398{margin-left:-1.440000px;}
._4_c00398{width:1.879200px;}
._5_c00398{width:4.996800px;}
.fc2_c00398{color:rgb(32,32,32);}
.fc1_c00398{color:rgb(232,86,17);}
.fc0_c00398{color:rgb(60,60,59);}
.fs1_c00398{font-size:42.000000px;}
.fs0_c00398{font-size:60.000000px;}
.fs3_c00398{font-size:72.000000px;}
.fs2_c00398{font-size:84.000000px;}
.y0_c00398{bottom:0.000000px;}
.y1_c00398{bottom:41.250000px;}
.y15_c00398{bottom:316.292700px;}
.y14_c00398{bottom:346.298700px;}
.y13_c00398{bottom:376.304700px;}
.y12_c00398{bottom:406.310700px;}
.y11_c00398{bottom:436.316700px;}
.y10_c00398{bottom:466.322700px;}
.yf_c00398{bottom:496.328700px;}
.ye_c00398{bottom:526.334700px;}
.yd_c00398{bottom:586.334700px;}
.yc_c00398{bottom:676.280700px;}
.yb_c00398{bottom:706.286700px;}
.ya_c00398{bottom:736.292700px;}
.y9_c00398{bottom:766.298700px;}
.y8_c00398{bottom:796.304700px;}
.y7_c00398{bottom:826.310700px;}
.y6_c00398{bottom:856.316700px;}
.y5_c00398{bottom:886.322700px;}
.y4_c00398{bottom:916.328700px;}
.y3_c00398{bottom:946.334700px;}
.y2_c00398{bottom:1006.334700px;}
.h2_c00398{height:54.000000px;}
.h4_c00398{height:64.800000px;}
.h3_c00398{height:78.540000px;}
.h0_c00398{height:1262.835000px;}
.h1_c00398{height:1263.000000px;}
.w0_c00398{width:892.914000px;}
.w1_c00398{width:893.250000px;}
.x0_c00398{left:0.000000px;}
.x2_c00398{left:90.000000px;}
.x3_c00398{left:106.500000px;}
.x1_c00398{left:785.588700px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls1_c00398{letter-spacing:0.000000pt;}
.ls0_c00398{letter-spacing:0.640000pt;}
.ls2_c00398{letter-spacing:0.746667pt;}
.ws0_c00398{word-spacing:-9.066667pt;}
.ws6_c00398{word-spacing:-4.608000pt;}
.ws7_c00398{word-spacing:-1.216000pt;}
.ws2_c00398{word-spacing:-0.746667pt;}
.wsa_c00398{word-spacing:-0.384000pt;}
.ws1_c00398{word-spacing:0.000000pt;}
.ws10_c00398{word-spacing:0.064000pt;}
.ws5_c00398{word-spacing:0.576000pt;}
.ws3_c00398{word-spacing:0.832000pt;}
.ws9_c00398{word-spacing:2.816000pt;}
.ws12_c00398{word-spacing:3.072000pt;}
.ws11_c00398{word-spacing:4.352000pt;}
.ws4_c00398{word-spacing:4.992000pt;}
.wsd_c00398{word-spacing:5.824000pt;}
.ws8_c00398{word-spacing:6.016000pt;}
.wsc_c00398{word-spacing:6.400000pt;}
.wsb_c00398{word-spacing:7.232000pt;}
.wse_c00398{word-spacing:8.000000pt;}
.wsf_c00398{word-spacing:14.848000pt;}
._0_c00398{margin-left:-426.965867pt;}
._3_c00398{margin-left:-5.113600pt;}
._1_c00398{margin-left:-3.733333pt;}
._2_c00398{margin-left:-1.280000pt;}
._4_c00398{width:1.670400pt;}
._5_c00398{width:4.441600pt;}
.fs1_c00398{font-size:37.333333pt;}
.fs0_c00398{font-size:53.333333pt;}
.fs3_c00398{font-size:64.000000pt;}
.fs2_c00398{font-size:74.666667pt;}
.y0_c00398{bottom:0.000000pt;}
.y1_c00398{bottom:36.666667pt;}
.y15_c00398{bottom:281.149067pt;}
.y14_c00398{bottom:307.821067pt;}
.y13_c00398{bottom:334.493067pt;}
.y12_c00398{bottom:361.165067pt;}
.y11_c00398{bottom:387.837067pt;}
.y10_c00398{bottom:414.509067pt;}
.yf_c00398{bottom:441.181067pt;}
.ye_c00398{bottom:467.853067pt;}
.yd_c00398{bottom:521.186400pt;}
.yc_c00398{bottom:601.138400pt;}
.yb_c00398{bottom:627.810400pt;}
.ya_c00398{bottom:654.482400pt;}
.y9_c00398{bottom:681.154400pt;}
.y8_c00398{bottom:707.826400pt;}
.y7_c00398{bottom:734.498400pt;}
.y6_c00398{bottom:761.170400pt;}
.y5_c00398{bottom:787.842400pt;}
.y4_c00398{bottom:814.514400pt;}
.y3_c00398{bottom:841.186400pt;}
.y2_c00398{bottom:894.519733pt;}
.h2_c00398{height:48.000000pt;}
.h4_c00398{height:57.600000pt;}
.h3_c00398{height:69.813333pt;}
.h0_c00398{height:1122.520000pt;}
.h1_c00398{height:1122.666667pt;}
.w0_c00398{width:793.701333pt;}
.w1_c00398{width:794.000000pt;}
.x0_c00398{left:0.000000pt;}
.x2_c00398{left:80.000000pt;}
.x3_c00398{left:94.666667pt;}
.x1_c00398{left:698.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls2_c00399{letter-spacing:0.000000px;}
.ls0_c00399{letter-spacing:0.864000px;}
.ls1_c00399{letter-spacing:1.200000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00399{word-spacing:-13.104000px;}
.ws0_c00399{word-spacing:-10.200000px;}
.ws4_c00399{word-spacing:-1.440000px;}
.ws3_c00399{word-spacing:-0.864000px;}
.ws2_c00399{word-spacing:0.000000px;}
._0_c00399{margin-left:-480.337200px;}
._7_c00399{margin-left:-8.400000px;}
._4_c00399{margin-left:-6.480000px;}
._5_c00399{margin-left:-5.280000px;}
._1_c00399{margin-left:-4.200000px;}
._6_c00399{margin-left:-2.760000px;}
._2_c00399{margin-left:-1.440000px;}
._3_c00399{width:1.440000px;}
.fc3_c00399{color:rgb(255,255,255);}
.fc2_c00399{color:rgb(233,83,14);}
.fc1_c00399{color:rgb(232,86,17);}
.fc0_c00399{color:rgb(60,60,59);}
.fs1_c00399{font-size:42.000000px;}
.fs0_c00399{font-size:60.000000px;}
.fs3_c00399{font-size:72.000000px;}
.fs4_c00399{font-size:120.000000px;}
.fs2_c00399{font-size:360.000000px;}
.y0_c00399{bottom:0.000000px;}
.y1_c00399{bottom:41.250000px;}
.yd_c00399{bottom:463.286700px;}
.yc_c00399{bottom:484.292700px;}
.yb_c00399{bottom:505.298700px;}
.ya_c00399{bottom:526.304700px;}
.y9_c00399{bottom:574.310700px;}
.y8_c00399{bottom:595.316700px;}
.y7_c00399{bottom:616.322700px;}
.y6_c00399{bottom:664.328700px;}
.y5_c00399{bottom:685.334700px;}
.y4_c00399{bottom:706.340700px;}
.y3_c00399{bottom:752.834700px;}
.y11_c00399{bottom:916.334700px;}
.y10_c00399{bottom:946.334700px;}
.yf_c00399{bottom:976.334700px;}
.ye_c00399{bottom:1006.334700px;}
.y2_c00399{bottom:1093.526700px;}
.h2_c00399{height:54.000000px;}
.h5_c00399{height:64.800000px;}
.h4_c00399{height:66.456000px;}
.h6_c00399{height:112.200000px;}
.h3_c00399{height:324.000000px;}
.h0_c00399{height:1262.835000px;}
.h1_c00399{height:1263.000000px;}
.w0_c00399{width:892.914000px;}
.w1_c00399{width:893.250000px;}
.x0_c00399{left:0.000000px;}
.x2_c00399{left:81.290250px;}
.x3_c00399{left:82.393650px;}
.x5_c00399{left:112.287450px;}
.x4_c00399{left:127.393650px;}
.x1_c00399{left:784.643850px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls2_c00399{letter-spacing:0.000000pt;}
.ls0_c00399{letter-spacing:0.768000pt;}
.ls1_c00399{letter-spacing:1.066667pt;}
.ws1_c00399{word-spacing:-11.648000pt;}
.ws0_c00399{word-spacing:-9.066667pt;}
.ws4_c00399{word-spacing:-1.280000pt;}
.ws3_c00399{word-spacing:-0.768000pt;}
.ws2_c00399{word-spacing:0.000000pt;}
._0_c00399{margin-left:-426.966400pt;}
._7_c00399{margin-left:-7.466667pt;}
._4_c00399{margin-left:-5.760000pt;}
._5_c00399{margin-left:-4.693333pt;}
._1_c00399{margin-left:-3.733333pt;}
._6_c00399{margin-left:-2.453333pt;}
._2_c00399{margin-left:-1.280000pt;}
._3_c00399{width:1.280000pt;}
.fs1_c00399{font-size:37.333333pt;}
.fs0_c00399{font-size:53.333333pt;}
.fs3_c00399{font-size:64.000000pt;}
.fs4_c00399{font-size:106.666667pt;}
.fs2_c00399{font-size:320.000000pt;}
.y0_c00399{bottom:0.000000pt;}
.y1_c00399{bottom:36.666667pt;}
.yd_c00399{bottom:411.810400pt;}
.yc_c00399{bottom:430.482400pt;}
.yb_c00399{bottom:449.154400pt;}
.ya_c00399{bottom:467.826400pt;}
.y9_c00399{bottom:510.498400pt;}
.y8_c00399{bottom:529.170400pt;}
.y7_c00399{bottom:547.842400pt;}
.y6_c00399{bottom:590.514400pt;}
.y5_c00399{bottom:609.186400pt;}
.y4_c00399{bottom:627.858400pt;}
.y3_c00399{bottom:669.186400pt;}
.y11_c00399{bottom:814.519733pt;}
.y10_c00399{bottom:841.186400pt;}
.yf_c00399{bottom:867.853067pt;}
.ye_c00399{bottom:894.519733pt;}
.y2_c00399{bottom:972.023733pt;}
.h2_c00399{height:48.000000pt;}
.h5_c00399{height:57.600000pt;}
.h4_c00399{height:59.072000pt;}
.h6_c00399{height:99.733333pt;}
.h3_c00399{height:288.000000pt;}
.h0_c00399{height:1122.520000pt;}
.h1_c00399{height:1122.666667pt;}
.w0_c00399{width:793.701333pt;}
.w1_c00399{width:794.000000pt;}
.x0_c00399{left:0.000000pt;}
.x2_c00399{left:72.258000pt;}
.x3_c00399{left:73.238800pt;}
.x5_c00399{left:99.811067pt;}
.x4_c00399{left:113.238800pt;}
.x1_c00399{left:697.461200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls5_c00400{letter-spacing:-0.540000px;}
.ls4_c00400{letter-spacing:0.000000px;}
.ls0_c00400{letter-spacing:0.720000px;}
.ls1_c00400{letter-spacing:0.840000px;}
.ls3_c00400{letter-spacing:1.500000px;}
.ls2_c00400{letter-spacing:1.650000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00400{word-spacing:-21.060000px;}
.ws2_c00400{word-spacing:-17.640000px;}
.ws0_c00400{word-spacing:-10.200000px;}
.wsf_c00400{word-spacing:-2.376000px;}
.wse_c00400{word-spacing:-2.232000px;}
.wsa_c00400{word-spacing:-1.512000px;}
.ws10_c00400{word-spacing:-1.500000px;}
.ws4_c00400{word-spacing:-0.840000px;}
.ws3_c00400{word-spacing:0.000000px;}
.wsc_c00400{word-spacing:4.752000px;}
.ws7_c00400{word-spacing:6.480000px;}
.ws8_c00400{word-spacing:6.984000px;}
.wsd_c00400{word-spacing:7.848000px;}
.ws9_c00400{word-spacing:8.712000px;}
.wsb_c00400{word-spacing:9.936000px;}
.ws6_c00400{word-spacing:12.600000px;}
.ws5_c00400{word-spacing:15.120000px;}
._0_c00400{margin-left:-480.337200px;}
._3_c00400{margin-left:-5.508000px;}
._1_c00400{margin-left:-4.200000px;}
._2_c00400{margin-left:-1.548000px;}
.fc3_c00400{color:rgb(32,32,32);}
.fc2_c00400{color:rgb(233,83,14);}
.fc1_c00400{color:rgb(232,86,17);}
.fc4_c00400{color:rgb(157,157,156);}
.fc0_c00400{color:rgb(60,60,59);}
.fs1_c00400{font-size:42.000000px;}
.fs0_c00400{font-size:60.000000px;}
.fs5_c00400{font-size:66.000000px;}
.fs4_c00400{font-size:72.000000px;}
.fs3_c00400{font-size:84.000000px;}
.fs2_c00400{font-size:108.000000px;}
.y0_c00400{bottom:0.000000px;}
.y1_c00400{bottom:41.250000px;}
.y12_c00400{bottom:346.316700px;}
.y11_c00400{bottom:376.322700px;}
.y10_c00400{bottom:406.328700px;}
.yf_c00400{bottom:436.334700px;}
.ye_c00400{bottom:496.334700px;}
.yd_c00400{bottom:586.280700px;}
.yc_c00400{bottom:616.286700px;}
.yb_c00400{bottom:646.292700px;}
.ya_c00400{bottom:676.298700px;}
.y19_c00400{bottom:676.334700px;}
.y9_c00400{bottom:706.304700px;}
.y18_c00400{bottom:706.334700px;}
.y8_c00400{bottom:736.310700px;}
.y17_c00400{bottom:736.334700px;}
.y7_c00400{bottom:766.316700px;}
.y16_c00400{bottom:766.334700px;}
.y6_c00400{bottom:796.322700px;}
.y15_c00400{bottom:796.334700px;}
.y5_c00400{bottom:826.328700px;}
.y14_c00400{bottom:826.334700px;}
.y4_c00400{bottom:856.334700px;}
.y13_c00400{bottom:856.376100px;}
.y3_c00400{bottom:916.334700px;}
.y2_c00400{bottom:1006.334700px;}
.h6_c00400{height:50.292000px;}
.h2_c00400{height:54.000000px;}
.h5_c00400{height:64.800000px;}
.h4_c00400{height:78.540000px;}
.h3_c00400{height:100.980000px;}
.h0_c00400{height:1262.835000px;}
.h1_c00400{height:1263.000000px;}
.w0_c00400{width:892.914000px;}
.w1_c00400{width:893.250000px;}
.x0_c00400{left:0.000000px;}
.x2_c00400{left:82.500000px;}
.x3_c00400{left:90.000000px;}
.x4_c00400{left:106.500000px;}
.x5_c00400{left:675.611100px;}
.x1_c00400{left:788.303850px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls5_c00400{letter-spacing:-0.480000pt;}
.ls4_c00400{letter-spacing:0.000000pt;}
.ls0_c00400{letter-spacing:0.640000pt;}
.ls1_c00400{letter-spacing:0.746667pt;}
.ls3_c00400{letter-spacing:1.333333pt;}
.ls2_c00400{letter-spacing:1.466667pt;}
.ws1_c00400{word-spacing:-18.720000pt;}
.ws2_c00400{word-spacing:-15.680000pt;}
.ws0_c00400{word-spacing:-9.066667pt;}
.wsf_c00400{word-spacing:-2.112000pt;}
.wse_c00400{word-spacing:-1.984000pt;}
.wsa_c00400{word-spacing:-1.344000pt;}
.ws10_c00400{word-spacing:-1.333333pt;}
.ws4_c00400{word-spacing:-0.746667pt;}
.ws3_c00400{word-spacing:0.000000pt;}
.wsc_c00400{word-spacing:4.224000pt;}
.ws7_c00400{word-spacing:5.760000pt;}
.ws8_c00400{word-spacing:6.208000pt;}
.wsd_c00400{word-spacing:6.976000pt;}
.ws9_c00400{word-spacing:7.744000pt;}
.wsb_c00400{word-spacing:8.832000pt;}
.ws6_c00400{word-spacing:11.200000pt;}
.ws5_c00400{word-spacing:13.440000pt;}
._0_c00400{margin-left:-426.966400pt;}
._3_c00400{margin-left:-4.896000pt;}
._1_c00400{margin-left:-3.733333pt;}
._2_c00400{margin-left:-1.376000pt;}
.fs1_c00400{font-size:37.333333pt;}
.fs0_c00400{font-size:53.333333pt;}
.fs5_c00400{font-size:58.666667pt;}
.fs4_c00400{font-size:64.000000pt;}
.fs3_c00400{font-size:74.666667pt;}
.fs2_c00400{font-size:96.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y1_c00400{bottom:36.666667pt;}
.y12_c00400{bottom:307.837067pt;}
.y11_c00400{bottom:334.509067pt;}
.y10_c00400{bottom:361.181067pt;}
.yf_c00400{bottom:387.853067pt;}
.ye_c00400{bottom:441.186400pt;}
.yd_c00400{bottom:521.138400pt;}
.yc_c00400{bottom:547.810400pt;}
.yb_c00400{bottom:574.482400pt;}
.ya_c00400{bottom:601.154400pt;}
.y19_c00400{bottom:601.186400pt;}
.y9_c00400{bottom:627.826400pt;}
.y18_c00400{bottom:627.853067pt;}
.y8_c00400{bottom:654.498400pt;}
.y17_c00400{bottom:654.519733pt;}
.y7_c00400{bottom:681.170400pt;}
.y16_c00400{bottom:681.186400pt;}
.y6_c00400{bottom:707.842400pt;}
.y15_c00400{bottom:707.853067pt;}
.y5_c00400{bottom:734.514400pt;}
.y14_c00400{bottom:734.519733pt;}
.y4_c00400{bottom:761.186400pt;}
.y13_c00400{bottom:761.223200pt;}
.y3_c00400{bottom:814.519733pt;}
.y2_c00400{bottom:894.519733pt;}
.h6_c00400{height:44.704000pt;}
.h2_c00400{height:48.000000pt;}
.h5_c00400{height:57.600000pt;}
.h4_c00400{height:69.813333pt;}
.h3_c00400{height:89.760000pt;}
.h0_c00400{height:1122.520000pt;}
.h1_c00400{height:1122.666667pt;}
.w0_c00400{width:793.701333pt;}
.w1_c00400{width:794.000000pt;}
.x0_c00400{left:0.000000pt;}
.x2_c00400{left:73.333333pt;}
.x3_c00400{left:80.000000pt;}
.x4_c00400{left:94.666667pt;}
.x5_c00400{left:600.543200pt;}
.x1_c00400{left:700.714533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.160000;font-style:normal;font-weight:normal;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_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls1_c00401{letter-spacing:0.000000px;}
.ls0_c00401{letter-spacing:0.720000px;}
.ls2_c00401{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws8_c00401{word-spacing:-2.592000px;}
.wsd_c00401{word-spacing:-2.304000px;}
.ws9_c00401{word-spacing:-1.800000px;}
.wsc_c00401{word-spacing:-1.728000px;}
.wse_c00401{word-spacing:-1.008000px;}
.ws6_c00401{word-spacing:-0.840000px;}
.ws1_c00401{word-spacing:0.000000px;}
.wsa_c00401{word-spacing:0.216000px;}
.ws7_c00401{word-spacing:1.872000px;}
.ws4_c00401{word-spacing:3.456000px;}
.ws5_c00401{word-spacing:3.528000px;}
.ws2_c00401{word-spacing:6.336000px;}
.wsb_c00401{word-spacing:7.848000px;}
.ws3_c00401{word-spacing:12.024000px;}
._0_c00401{margin-left:-480.337200px;}
._1_c00401{margin-left:-4.200000px;}
._2_c00401{margin-left:-1.440000px;}
.fc2_c00401{color:rgb(32,32,32);}
.fc1_c00401{color:rgb(232,86,17);}
.fc0_c00401{color:rgb(60,60,59);}
.fs1_c00401{font-size:42.000000px;}
.fs0_c00401{font-size:60.000000px;}
.fs3_c00401{font-size:72.000000px;}
.fs2_c00401{font-size:84.000000px;}
.y0_c00401{bottom:0.000000px;}
.y1_c00401{bottom:41.250000px;}
.y13_c00401{bottom:286.310700px;}
.y12_c00401{bottom:316.316700px;}
.y11_c00401{bottom:346.322700px;}
.y10_c00401{bottom:376.328700px;}
.yf_c00401{bottom:406.334700px;}
.ye_c00401{bottom:466.334700px;}
.yd_c00401{bottom:556.310700px;}
.yc_c00401{bottom:586.316700px;}
.yb_c00401{bottom:616.322700px;}
.ya_c00401{bottom:646.328700px;}
.y9_c00401{bottom:676.334700px;}
.y8_c00401{bottom:736.334700px;}
.y7_c00401{bottom:826.310700px;}
.y6_c00401{bottom:856.316700px;}
.y5_c00401{bottom:886.322700px;}
.y4_c00401{bottom:916.328700px;}
.y3_c00401{bottom:946.334700px;}
.y2_c00401{bottom:1006.334700px;}
.h2_c00401{height:54.000000px;}
.h4_c00401{height:64.800000px;}
.h3_c00401{height:78.540000px;}
.h0_c00401{height:1262.835000px;}
.h1_c00401{height:1263.000000px;}
.w0_c00401{width:892.914000px;}
.w1_c00401{width:893.250000px;}
.x0_c00401{left:0.000000px;}
.x2_c00401{left:90.000000px;}
.x3_c00401{left:106.500000px;}
.x1_c00401{left:785.828850px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls1_c00401{letter-spacing:0.000000pt;}
.ls0_c00401{letter-spacing:0.640000pt;}
.ls2_c00401{letter-spacing:0.746667pt;}
.ws0_c00401{word-spacing:-9.066667pt;}
.ws8_c00401{word-spacing:-2.304000pt;}
.wsd_c00401{word-spacing:-2.048000pt;}
.ws9_c00401{word-spacing:-1.600000pt;}
.wsc_c00401{word-spacing:-1.536000pt;}
.wse_c00401{word-spacing:-0.896000pt;}
.ws6_c00401{word-spacing:-0.746667pt;}
.ws1_c00401{word-spacing:0.000000pt;}
.wsa_c00401{word-spacing:0.192000pt;}
.ws7_c00401{word-spacing:1.664000pt;}
.ws4_c00401{word-spacing:3.072000pt;}
.ws5_c00401{word-spacing:3.136000pt;}
.ws2_c00401{word-spacing:5.632000pt;}
.wsb_c00401{word-spacing:6.976000pt;}
.ws3_c00401{word-spacing:10.688000pt;}
._0_c00401{margin-left:-426.966400pt;}
._1_c00401{margin-left:-3.733333pt;}
._2_c00401{margin-left:-1.280000pt;}
.fs1_c00401{font-size:37.333333pt;}
.fs0_c00401{font-size:53.333333pt;}
.fs3_c00401{font-size:64.000000pt;}
.fs2_c00401{font-size:74.666667pt;}
.y0_c00401{bottom:0.000000pt;}
.y1_c00401{bottom:36.666667pt;}
.y13_c00401{bottom:254.498400pt;}
.y12_c00401{bottom:281.170400pt;}
.y11_c00401{bottom:307.842400pt;}
.y10_c00401{bottom:334.514400pt;}
.yf_c00401{bottom:361.186400pt;}
.ye_c00401{bottom:414.519733pt;}
.yd_c00401{bottom:494.498400pt;}
.yc_c00401{bottom:521.170400pt;}
.yb_c00401{bottom:547.842400pt;}
.ya_c00401{bottom:574.514400pt;}
.y9_c00401{bottom:601.186400pt;}
.y8_c00401{bottom:654.519733pt;}
.y7_c00401{bottom:734.498400pt;}
.y6_c00401{bottom:761.170400pt;}
.y5_c00401{bottom:787.842400pt;}
.y4_c00401{bottom:814.514400pt;}
.y3_c00401{bottom:841.186400pt;}
.y2_c00401{bottom:894.519733pt;}
.h2_c00401{height:48.000000pt;}
.h4_c00401{height:57.600000pt;}
.h3_c00401{height:69.813333pt;}
.h0_c00401{height:1122.520000pt;}
.h1_c00401{height:1122.666667pt;}
.w0_c00401{width:793.701333pt;}
.w1_c00401{width:794.000000pt;}
.x0_c00401{left:0.000000pt;}
.x2_c00401{left:80.000000pt;}
.x3_c00401{left:94.666667pt;}
.x1_c00401{left:698.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls5_c00402{letter-spacing:-0.324000px;}
.ls4_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:0.720000px;}
.ls1_c00402{letter-spacing:0.840000px;}
.ls3_c00402{letter-spacing:1.500000px;}
.ls2_c00402{letter-spacing:1.650000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00402{word-spacing:-21.276000px;}
.ws2_c00402{word-spacing:-17.640000px;}
.ws3_c00402{word-spacing:-14.850000px;}
.ws4_c00402{word-spacing:-11.700000px;}
.ws0_c00402{word-spacing:-10.200000px;}
.ws9_c00402{word-spacing:-2.520000px;}
.wsc_c00402{word-spacing:-1.800000px;}
.ws10_c00402{word-spacing:-1.500000px;}
.wsb_c00402{word-spacing:-1.368000px;}
.ws6_c00402{word-spacing:-0.840000px;}
.wsd_c00402{word-spacing:-0.504000px;}
.ws5_c00402{word-spacing:0.000000px;}
.wsa_c00402{word-spacing:3.240000px;}
.wsf_c00402{word-spacing:6.120000px;}
.ws7_c00402{word-spacing:6.408000px;}
.wse_c00402{word-spacing:6.984000px;}
.ws8_c00402{word-spacing:9.720000px;}
._0_c00402{margin-left:-480.337200px;}
._4_c00402{margin-left:-6.480000px;}
._1_c00402{margin-left:-4.200000px;}
._3_c00402{margin-left:-2.160000px;}
._2_c00402{margin-left:-1.134000px;}
.fc3_c00402{color:rgb(32,32,32);}
.fc2_c00402{color:rgb(233,83,14);}
.fc1_c00402{color:rgb(232,86,17);}
.fc4_c00402{color:rgb(157,157,156);}
.fc0_c00402{color:rgb(60,60,59);}
.fs1_c00402{font-size:42.000000px;}
.fs0_c00402{font-size:60.000000px;}
.fs5_c00402{font-size:66.000000px;}
.fs4_c00402{font-size:72.000000px;}
.fs3_c00402{font-size:84.000000px;}
.fs2_c00402{font-size:108.000000px;}
.y0_c00402{bottom:0.000000px;}
.y1_c00402{bottom:41.250000px;}
.y11_c00402{bottom:376.316700px;}
.y10_c00402{bottom:406.322700px;}
.yf_c00402{bottom:436.328700px;}
.ye_c00402{bottom:466.334700px;}
.yd_c00402{bottom:526.334700px;}
.yc_c00402{bottom:616.286700px;}
.yb_c00402{bottom:646.292700px;}
.ya_c00402{bottom:676.298700px;}
.y18_c00402{bottom:676.334700px;}
.y9_c00402{bottom:706.304700px;}
.y17_c00402{bottom:706.334700px;}
.y8_c00402{bottom:736.310700px;}
.y16_c00402{bottom:736.334700px;}
.y7_c00402{bottom:766.316700px;}
.y15_c00402{bottom:766.334700px;}
.y6_c00402{bottom:796.322700px;}
.y14_c00402{bottom:796.334700px;}
.y5_c00402{bottom:826.328700px;}
.y13_c00402{bottom:826.334700px;}
.y4_c00402{bottom:856.334700px;}
.y12_c00402{bottom:856.376100px;}
.y3_c00402{bottom:916.334700px;}
.y2_c00402{bottom:1006.334700px;}
.h6_c00402{height:50.292000px;}
.h2_c00402{height:54.000000px;}
.h5_c00402{height:64.800000px;}
.h4_c00402{height:78.540000px;}
.h3_c00402{height:100.980000px;}
.h0_c00402{height:1262.835000px;}
.h1_c00402{height:1263.000000px;}
.w0_c00402{width:892.914000px;}
.w1_c00402{width:893.250000px;}
.x0_c00402{left:0.000000px;}
.x2_c00402{left:82.500000px;}
.x3_c00402{left:90.000000px;}
.x4_c00402{left:106.500000px;}
.x5_c00402{left:675.611100px;}
.x1_c00402{left:785.678850px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls5_c00402{letter-spacing:-0.288000pt;}
.ls4_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:0.640000pt;}
.ls1_c00402{letter-spacing:0.746667pt;}
.ls3_c00402{letter-spacing:1.333333pt;}
.ls2_c00402{letter-spacing:1.466667pt;}
.ws1_c00402{word-spacing:-18.912000pt;}
.ws2_c00402{word-spacing:-15.680000pt;}
.ws3_c00402{word-spacing:-13.200000pt;}
.ws4_c00402{word-spacing:-10.400000pt;}
.ws0_c00402{word-spacing:-9.066667pt;}
.ws9_c00402{word-spacing:-2.240000pt;}
.wsc_c00402{word-spacing:-1.600000pt;}
.ws10_c00402{word-spacing:-1.333333pt;}
.wsb_c00402{word-spacing:-1.216000pt;}
.ws6_c00402{word-spacing:-0.746667pt;}
.wsd_c00402{word-spacing:-0.448000pt;}
.ws5_c00402{word-spacing:0.000000pt;}
.wsa_c00402{word-spacing:2.880000pt;}
.wsf_c00402{word-spacing:5.440000pt;}
.ws7_c00402{word-spacing:5.696000pt;}
.wse_c00402{word-spacing:6.208000pt;}
.ws8_c00402{word-spacing:8.640000pt;}
._0_c00402{margin-left:-426.966400pt;}
._4_c00402{margin-left:-5.760000pt;}
._1_c00402{margin-left:-3.733333pt;}
._3_c00402{margin-left:-1.920000pt;}
._2_c00402{margin-left:-1.008000pt;}
.fs1_c00402{font-size:37.333333pt;}
.fs0_c00402{font-size:53.333333pt;}
.fs5_c00402{font-size:58.666667pt;}
.fs4_c00402{font-size:64.000000pt;}
.fs3_c00402{font-size:74.666667pt;}
.fs2_c00402{font-size:96.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y1_c00402{bottom:36.666667pt;}
.y11_c00402{bottom:334.503733pt;}
.y10_c00402{bottom:361.175733pt;}
.yf_c00402{bottom:387.847733pt;}
.ye_c00402{bottom:414.519733pt;}
.yd_c00402{bottom:467.853067pt;}
.yc_c00402{bottom:547.810400pt;}
.yb_c00402{bottom:574.482400pt;}
.ya_c00402{bottom:601.154400pt;}
.y18_c00402{bottom:601.186400pt;}
.y9_c00402{bottom:627.826400pt;}
.y17_c00402{bottom:627.853067pt;}
.y8_c00402{bottom:654.498400pt;}
.y16_c00402{bottom:654.519733pt;}
.y7_c00402{bottom:681.170400pt;}
.y15_c00402{bottom:681.186400pt;}
.y6_c00402{bottom:707.842400pt;}
.y14_c00402{bottom:707.853067pt;}
.y5_c00402{bottom:734.514400pt;}
.y13_c00402{bottom:734.519733pt;}
.y4_c00402{bottom:761.186400pt;}
.y12_c00402{bottom:761.223200pt;}
.y3_c00402{bottom:814.519733pt;}
.y2_c00402{bottom:894.519733pt;}
.h6_c00402{height:44.704000pt;}
.h2_c00402{height:48.000000pt;}
.h5_c00402{height:57.600000pt;}
.h4_c00402{height:69.813333pt;}
.h3_c00402{height:89.760000pt;}
.h0_c00402{height:1122.520000pt;}
.h1_c00402{height:1122.666667pt;}
.w0_c00402{width:793.701333pt;}
.w1_c00402{width:794.000000pt;}
.x0_c00402{left:0.000000pt;}
.x2_c00402{left:73.333333pt;}
.x3_c00402{left:80.000000pt;}
.x4_c00402{left:94.666667pt;}
.x5_c00402{left:600.543200pt;}
.x1_c00402{left:698.381200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.160000;font-style:normal;font-weight:normal;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_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.199000;font-style: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);}
.m1_c00403{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls1_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:0.720000px;}
.ls2_c00403{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws9_c00403{word-spacing:-1.440000px;}
.ws7_c00403{word-spacing:-0.840000px;}
.wsf_c00403{word-spacing:-0.720000px;}
.ws1_c00403{word-spacing:0.000000px;}
.wse_c00403{word-spacing:0.576000px;}
.wsa_c00403{word-spacing:0.648000px;}
.ws3_c00403{word-spacing:0.720000px;}
.wsc_c00403{word-spacing:1.368000px;}
.ws4_c00403{word-spacing:2.664000px;}
.ws2_c00403{word-spacing:5.472000px;}
.ws5_c00403{word-spacing:6.696000px;}
.wsb_c00403{word-spacing:7.200000px;}
.wsd_c00403{word-spacing:7.488000px;}
.ws6_c00403{word-spacing:7.632000px;}
.ws8_c00403{word-spacing:10.296000px;}
._0_c00403{margin-left:-480.337200px;}
._4_c00403{margin-left:-5.760000px;}
._1_c00403{margin-left:-4.200000px;}
._2_c00403{margin-left:-2.340000px;}
._3_c00403{margin-left:-1.260000px;}
.fc2_c00403{color:rgb(32,32,32);}
.fc1_c00403{color:rgb(232,86,17);}
.fc0_c00403{color:rgb(60,60,59);}
.fs1_c00403{font-size:42.000000px;}
.fs0_c00403{font-size:60.000000px;}
.fs3_c00403{font-size:72.000000px;}
.fs2_c00403{font-size:84.000000px;}
.y0_c00403{bottom:0.000000px;}
.y1_c00403{bottom:41.250000px;}
.y14_c00403{bottom:256.310700px;}
.y13_c00403{bottom:286.316700px;}
.y12_c00403{bottom:316.322700px;}
.y11_c00403{bottom:346.328700px;}
.y10_c00403{bottom:376.334700px;}
.yf_c00403{bottom:436.334700px;}
.ye_c00403{bottom:526.310700px;}
.yd_c00403{bottom:556.316700px;}
.yc_c00403{bottom:586.322700px;}
.yb_c00403{bottom:616.328700px;}
.ya_c00403{bottom:646.334700px;}
.y9_c00403{bottom:706.334700px;}
.y8_c00403{bottom:796.304700px;}
.y7_c00403{bottom:826.310700px;}
.y6_c00403{bottom:856.316700px;}
.y5_c00403{bottom:886.322700px;}
.y4_c00403{bottom:916.328700px;}
.y3_c00403{bottom:946.334700px;}
.y2_c00403{bottom:1006.334700px;}
.h2_c00403{height:54.000000px;}
.h4_c00403{height:64.800000px;}
.h3_c00403{height:78.540000px;}
.h0_c00403{height:1262.835000px;}
.h1_c00403{height:1263.000000px;}
.w0_c00403{width:892.914000px;}
.w1_c00403{width:893.250000px;}
.x0_c00403{left:0.000000px;}
.x2_c00403{left:90.000000px;}
.x3_c00403{left:106.500000px;}
.x1_c00403{left:784.703850px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls1_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:0.640000pt;}
.ls2_c00403{letter-spacing:0.746667pt;}
.ws0_c00403{word-spacing:-9.066667pt;}
.ws9_c00403{word-spacing:-1.280000pt;}
.ws7_c00403{word-spacing:-0.746667pt;}
.wsf_c00403{word-spacing:-0.640000pt;}
.ws1_c00403{word-spacing:0.000000pt;}
.wse_c00403{word-spacing:0.512000pt;}
.wsa_c00403{word-spacing:0.576000pt;}
.ws3_c00403{word-spacing:0.640000pt;}
.wsc_c00403{word-spacing:1.216000pt;}
.ws4_c00403{word-spacing:2.368000pt;}
.ws2_c00403{word-spacing:4.864000pt;}
.ws5_c00403{word-spacing:5.952000pt;}
.wsb_c00403{word-spacing:6.400000pt;}
.wsd_c00403{word-spacing:6.656000pt;}
.ws6_c00403{word-spacing:6.784000pt;}
.ws8_c00403{word-spacing:9.152000pt;}
._0_c00403{margin-left:-426.966400pt;}
._4_c00403{margin-left:-5.120000pt;}
._1_c00403{margin-left:-3.733333pt;}
._2_c00403{margin-left:-2.080000pt;}
._3_c00403{margin-left:-1.120000pt;}
.fs1_c00403{font-size:37.333333pt;}
.fs0_c00403{font-size:53.333333pt;}
.fs3_c00403{font-size:64.000000pt;}
.fs2_c00403{font-size:74.666667pt;}
.y0_c00403{bottom:0.000000pt;}
.y1_c00403{bottom:36.666667pt;}
.y14_c00403{bottom:227.831733pt;}
.y13_c00403{bottom:254.503733pt;}
.y12_c00403{bottom:281.175733pt;}
.y11_c00403{bottom:307.847733pt;}
.y10_c00403{bottom:334.519733pt;}
.yf_c00403{bottom:387.853067pt;}
.ye_c00403{bottom:467.831733pt;}
.yd_c00403{bottom:494.503733pt;}
.yc_c00403{bottom:521.175733pt;}
.yb_c00403{bottom:547.847733pt;}
.ya_c00403{bottom:574.519733pt;}
.y9_c00403{bottom:627.853067pt;}
.y8_c00403{bottom:707.826400pt;}
.y7_c00403{bottom:734.498400pt;}
.y6_c00403{bottom:761.170400pt;}
.y5_c00403{bottom:787.842400pt;}
.y4_c00403{bottom:814.514400pt;}
.y3_c00403{bottom:841.186400pt;}
.y2_c00403{bottom:894.519733pt;}
.h2_c00403{height:48.000000pt;}
.h4_c00403{height:57.600000pt;}
.h3_c00403{height:69.813333pt;}
.h0_c00403{height:1122.520000pt;}
.h1_c00403{height:1122.666667pt;}
.w0_c00403{width:793.701333pt;}
.w1_c00403{width:794.000000pt;}
.x0_c00403{left:0.000000pt;}
.x2_c00403{left:80.000000pt;}
.x3_c00403{left:94.666667pt;}
.x1_c00403{left:697.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.160000;font-style:normal;font-weight:normal;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_311e13d27dbc456dd012feb7.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00404;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00404{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls2_c00404{letter-spacing:0.000000px;}
.ls0_c00404{letter-spacing:0.864000px;}
.ls1_c00404{letter-spacing:1.200000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:-10.200000px;}
.ws2_c00404{word-spacing:-1.152000px;}
.ws3_c00404{word-spacing:-0.864000px;}
.ws1_c00404{word-spacing:0.000000px;}
._0_c00404{margin-left:-480.336600px;}
._4_c00404{margin-left:-12.000000px;}
._5_c00404{margin-left:-9.600000px;}
._3_c00404{margin-left:-6.480000px;}
._1_c00404{margin-left:-4.200000px;}
._6_c00404{margin-left:-2.520000px;}
._2_c00404{margin-left:-1.440000px;}
.fc3_c00404{color:rgb(255,255,255);}
.fc2_c00404{color:rgb(233,83,14);}
.fc1_c00404{color:rgb(232,86,17);}
.fc0_c00404{color:rgb(60,60,59);}
.fs1_c00404{font-size:42.000000px;}
.fs0_c00404{font-size:60.000000px;}
.fs3_c00404{font-size:72.000000px;}
.fs4_c00404{font-size:120.000000px;}
.fs2_c00404{font-size:360.000000px;}
.y0_c00404{bottom:0.000000px;}
.y1_c00404{bottom:41.250000px;}
.y9_c00404{bottom:574.310700px;}
.y8_c00404{bottom:595.316700px;}
.y7_c00404{bottom:616.322700px;}
.y6_c00404{bottom:664.328700px;}
.y5_c00404{bottom:685.334700px;}
.y4_c00404{bottom:706.340700px;}
.y3_c00404{bottom:752.834700px;}
.yb_c00404{bottom:976.334700px;}
.ya_c00404{bottom:1006.334700px;}
.y2_c00404{bottom:1093.526700px;}
.h2_c00404{height:54.000000px;}
.h5_c00404{height:64.800000px;}
.h4_c00404{height:66.456000px;}
.h6_c00404{height:112.200000px;}
.h3_c00404{height:324.000000px;}
.h0_c00404{height:1262.835000px;}
.h1_c00404{height:1263.000000px;}
.w0_c00404{width:892.914000px;}
.w1_c00404{width:893.250000px;}
.x0_c00404{left:0.000000px;}
.x2_c00404{left:81.290250px;}
.x3_c00404{left:82.393650px;}
.x5_c00404{left:112.287450px;}
.x4_c00404{left:127.393650px;}
.x1_c00404{left:785.753700px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls2_c00404{letter-spacing:0.000000pt;}
.ls0_c00404{letter-spacing:0.768000pt;}
.ls1_c00404{letter-spacing:1.066667pt;}
.ws0_c00404{word-spacing:-9.066667pt;}
.ws2_c00404{word-spacing:-1.024000pt;}
.ws3_c00404{word-spacing:-0.768000pt;}
.ws1_c00404{word-spacing:0.000000pt;}
._0_c00404{margin-left:-426.965867pt;}
._4_c00404{margin-left:-10.666667pt;}
._5_c00404{margin-left:-8.533333pt;}
._3_c00404{margin-left:-5.760000pt;}
._1_c00404{margin-left:-3.733333pt;}
._6_c00404{margin-left:-2.240000pt;}
._2_c00404{margin-left:-1.280000pt;}
.fs1_c00404{font-size:37.333333pt;}
.fs0_c00404{font-size:53.333333pt;}
.fs3_c00404{font-size:64.000000pt;}
.fs4_c00404{font-size:106.666667pt;}
.fs2_c00404{font-size:320.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y1_c00404{bottom:36.666667pt;}
.y9_c00404{bottom:510.498400pt;}
.y8_c00404{bottom:529.170400pt;}
.y7_c00404{bottom:547.842400pt;}
.y6_c00404{bottom:590.514400pt;}
.y5_c00404{bottom:609.186400pt;}
.y4_c00404{bottom:627.858400pt;}
.y3_c00404{bottom:669.186400pt;}
.yb_c00404{bottom:867.853067pt;}
.ya_c00404{bottom:894.519733pt;}
.y2_c00404{bottom:972.023733pt;}
.h2_c00404{height:48.000000pt;}
.h5_c00404{height:57.600000pt;}
.h4_c00404{height:59.072000pt;}
.h6_c00404{height:99.733333pt;}
.h3_c00404{height:288.000000pt;}
.h0_c00404{height:1122.520000pt;}
.h1_c00404{height:1122.666667pt;}
.w0_c00404{width:793.701333pt;}
.w1_c00404{width:794.000000pt;}
.x0_c00404{left:0.000000pt;}
.x2_c00404{left:72.258000pt;}
.x3_c00404{left:73.238800pt;}
.x5_c00404{left:99.811067pt;}
.x4_c00404{left:113.238800pt;}
.x1_c00404{left:698.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls5_c00405{letter-spacing:-0.540000px;}
.ls4_c00405{letter-spacing:0.000000px;}
.ls0_c00405{letter-spacing:0.720000px;}
.ls1_c00405{letter-spacing:0.840000px;}
.ls3_c00405{letter-spacing:1.500000px;}
.ls2_c00405{letter-spacing:1.650000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00405{word-spacing:-21.060000px;}
.ws2_c00405{word-spacing:-17.640000px;}
.ws3_c00405{word-spacing:-12.960000px;}
.ws0_c00405{word-spacing:-10.200000px;}
.ws13_c00405{word-spacing:-1.800000px;}
.ws14_c00405{word-spacing:-1.500000px;}
.ws5_c00405{word-spacing:-0.840000px;}
.wsb_c00405{word-spacing:-0.720000px;}
.ws4_c00405{word-spacing:0.000000px;}
.ws9_c00405{word-spacing:1.296000px;}
.ws12_c00405{word-spacing:1.656000px;}
.ws8_c00405{word-spacing:1.872000px;}
.wsc_c00405{word-spacing:3.456000px;}
.ws7_c00405{word-spacing:3.600000px;}
.wse_c00405{word-spacing:3.960000px;}
.wsf_c00405{word-spacing:4.464000px;}
.ws6_c00405{word-spacing:4.968000px;}
.wsd_c00405{word-spacing:5.688000px;}
.wsa_c00405{word-spacing:5.976000px;}
.ws10_c00405{word-spacing:7.344000px;}
.ws11_c00405{word-spacing:15.480000px;}
._0_c00405{margin-left:-480.336600px;}
._5_c00405{margin-left:-7.200000px;}
._3_c00405{margin-left:-5.767200px;}
._1_c00405{margin-left:-4.200000px;}
._2_c00405{margin-left:-2.160000px;}
._4_c00405{margin-left:-1.000800px;}
.fc3_c00405{color:rgb(32,32,32);}
.fc2_c00405{color:rgb(233,83,14);}
.fc1_c00405{color:rgb(232,86,17);}
.fc4_c00405{color:rgb(157,157,156);}
.fc0_c00405{color:rgb(60,60,59);}
.fs1_c00405{font-size:42.000000px;}
.fs0_c00405{font-size:60.000000px;}
.fs5_c00405{font-size:66.000000px;}
.fs4_c00405{font-size:72.000000px;}
.fs3_c00405{font-size:84.000000px;}
.fs2_c00405{font-size:108.000000px;}
.y0_c00405{bottom:0.000000px;}
.y1_c00405{bottom:41.250000px;}
.y14_c00405{bottom:196.292700px;}
.y13_c00405{bottom:226.298700px;}
.y12_c00405{bottom:256.304700px;}
.y11_c00405{bottom:286.310700px;}
.y10_c00405{bottom:316.316700px;}
.yf_c00405{bottom:346.322700px;}
.ye_c00405{bottom:376.328700px;}
.yd_c00405{bottom:406.334700px;}
.yc_c00405{bottom:466.334700px;}
.yb_c00405{bottom:556.316700px;}
.ya_c00405{bottom:586.322700px;}
.y9_c00405{bottom:616.328700px;}
.y8_c00405{bottom:646.334700px;}
.y7_c00405{bottom:706.334700px;}
.y19_c00405{bottom:736.334700px;}
.y18_c00405{bottom:766.334700px;}
.y6_c00405{bottom:796.322700px;}
.y17_c00405{bottom:796.334700px;}
.y5_c00405{bottom:826.328700px;}
.y16_c00405{bottom:826.334700px;}
.y4_c00405{bottom:856.334700px;}
.y15_c00405{bottom:856.376100px;}
.y3_c00405{bottom:916.334700px;}
.y2_c00405{bottom:1006.334700px;}
.h6_c00405{height:50.292000px;}
.h2_c00405{height:54.000000px;}
.h5_c00405{height:64.800000px;}
.h4_c00405{height:78.540000px;}
.h3_c00405{height:100.980000px;}
.h0_c00405{height:1262.835000px;}
.h1_c00405{height:1263.000000px;}
.w0_c00405{width:892.914000px;}
.w1_c00405{width:893.250000px;}
.x0_c00405{left:0.000000px;}
.x2_c00405{left:82.500000px;}
.x3_c00405{left:90.000000px;}
.x4_c00405{left:106.500000px;}
.x5_c00405{left:675.611100px;}
.x1_c00405{left:784.628700px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls5_c00405{letter-spacing:-0.480000pt;}
.ls4_c00405{letter-spacing:0.000000pt;}
.ls0_c00405{letter-spacing:0.640000pt;}
.ls1_c00405{letter-spacing:0.746667pt;}
.ls3_c00405{letter-spacing:1.333333pt;}
.ls2_c00405{letter-spacing:1.466667pt;}
.ws1_c00405{word-spacing:-18.720000pt;}
.ws2_c00405{word-spacing:-15.680000pt;}
.ws3_c00405{word-spacing:-11.520000pt;}
.ws0_c00405{word-spacing:-9.066667pt;}
.ws13_c00405{word-spacing:-1.600000pt;}
.ws14_c00405{word-spacing:-1.333333pt;}
.ws5_c00405{word-spacing:-0.746667pt;}
.wsb_c00405{word-spacing:-0.640000pt;}
.ws4_c00405{word-spacing:0.000000pt;}
.ws9_c00405{word-spacing:1.152000pt;}
.ws12_c00405{word-spacing:1.472000pt;}
.ws8_c00405{word-spacing:1.664000pt;}
.wsc_c00405{word-spacing:3.072000pt;}
.ws7_c00405{word-spacing:3.200000pt;}
.wse_c00405{word-spacing:3.520000pt;}
.wsf_c00405{word-spacing:3.968000pt;}
.ws6_c00405{word-spacing:4.416000pt;}
.wsd_c00405{word-spacing:5.056000pt;}
.wsa_c00405{word-spacing:5.312000pt;}
.ws10_c00405{word-spacing:6.528000pt;}
.ws11_c00405{word-spacing:13.760000pt;}
._0_c00405{margin-left:-426.965867pt;}
._5_c00405{margin-left:-6.400000pt;}
._3_c00405{margin-left:-5.126400pt;}
._1_c00405{margin-left:-3.733333pt;}
._2_c00405{margin-left:-1.920000pt;}
._4_c00405{margin-left:-0.889600pt;}
.fs1_c00405{font-size:37.333333pt;}
.fs0_c00405{font-size:53.333333pt;}
.fs5_c00405{font-size:58.666667pt;}
.fs4_c00405{font-size:64.000000pt;}
.fs3_c00405{font-size:74.666667pt;}
.fs2_c00405{font-size:96.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y1_c00405{bottom:36.666667pt;}
.y14_c00405{bottom:174.482400pt;}
.y13_c00405{bottom:201.154400pt;}
.y12_c00405{bottom:227.826400pt;}
.y11_c00405{bottom:254.498400pt;}
.y10_c00405{bottom:281.170400pt;}
.yf_c00405{bottom:307.842400pt;}
.ye_c00405{bottom:334.514400pt;}
.yd_c00405{bottom:361.186400pt;}
.yc_c00405{bottom:414.519733pt;}
.yb_c00405{bottom:494.503733pt;}
.ya_c00405{bottom:521.175733pt;}
.y9_c00405{bottom:547.847733pt;}
.y8_c00405{bottom:574.519733pt;}
.y7_c00405{bottom:627.853067pt;}
.y19_c00405{bottom:654.519733pt;}
.y18_c00405{bottom:681.186400pt;}
.y6_c00405{bottom:707.842400pt;}
.y17_c00405{bottom:707.853067pt;}
.y5_c00405{bottom:734.514400pt;}
.y16_c00405{bottom:734.519733pt;}
.y4_c00405{bottom:761.186400pt;}
.y15_c00405{bottom:761.223200pt;}
.y3_c00405{bottom:814.519733pt;}
.y2_c00405{bottom:894.519733pt;}
.h6_c00405{height:44.704000pt;}
.h2_c00405{height:48.000000pt;}
.h5_c00405{height:57.600000pt;}
.h4_c00405{height:69.813333pt;}
.h3_c00405{height:89.760000pt;}
.h0_c00405{height:1122.520000pt;}
.h1_c00405{height:1122.666667pt;}
.w0_c00405{width:793.701333pt;}
.w1_c00405{width:794.000000pt;}
.x0_c00405{left:0.000000pt;}
.x2_c00405{left:73.333333pt;}
.x3_c00405{left:80.000000pt;}
.x4_c00405{left:94.666667pt;}
.x5_c00405{left:600.543200pt;}
.x1_c00405{left:697.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.199000;font-style: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);}
.m1_c00406{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls1_c00406{letter-spacing:0.000000px;}
.ls0_c00406{letter-spacing:0.720000px;}
.ls2_c00406{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws7_c00406{word-spacing:-5.832000px;}
.wsc_c00406{word-spacing:-5.472000px;}
.ws9_c00406{word-spacing:-2.520000px;}
.ws6_c00406{word-spacing:-2.232000px;}
.wsb_c00406{word-spacing:-1.584000px;}
.ws2_c00406{word-spacing:-0.840000px;}
.wsa_c00406{word-spacing:-0.144000px;}
.ws1_c00406{word-spacing:0.000000px;}
.ws5_c00406{word-spacing:0.360000px;}
.ws8_c00406{word-spacing:0.432000px;}
.ws3_c00406{word-spacing:2.808000px;}
.wsd_c00406{word-spacing:6.120000px;}
.ws4_c00406{word-spacing:11.880000px;}
._0_c00406{margin-left:-480.336600px;}
._1_c00406{margin-left:-4.200000px;}
._5_c00406{margin-left:-2.534400px;}
._2_c00406{margin-left:-1.346400px;}
._3_c00406{width:1.274400px;}
._4_c00406{width:2.959200px;}
.fc2_c00406{color:rgb(32,32,32);}
.fc1_c00406{color:rgb(232,86,17);}
.fc0_c00406{color:rgb(60,60,59);}
.fs1_c00406{font-size:42.000000px;}
.fs0_c00406{font-size:60.000000px;}
.fs3_c00406{font-size:72.000000px;}
.fs2_c00406{font-size:84.000000px;}
.y0_c00406{bottom:0.000000px;}
.y1_c00406{bottom:41.250000px;}
.y11_c00406{bottom:436.298700px;}
.y10_c00406{bottom:466.304700px;}
.yf_c00406{bottom:496.310700px;}
.ye_c00406{bottom:526.316700px;}
.yd_c00406{bottom:556.322700px;}
.yc_c00406{bottom:586.328700px;}
.yb_c00406{bottom:616.334700px;}
.ya_c00406{bottom:676.334700px;}
.y9_c00406{bottom:766.298700px;}
.y8_c00406{bottom:796.304700px;}
.y7_c00406{bottom:826.310700px;}
.y6_c00406{bottom:856.316700px;}
.y5_c00406{bottom:886.322700px;}
.y4_c00406{bottom:916.328700px;}
.y3_c00406{bottom:946.334700px;}
.y2_c00406{bottom:1006.334700px;}
.h2_c00406{height:54.000000px;}
.h4_c00406{height:64.800000px;}
.h3_c00406{height:78.540000px;}
.h0_c00406{height:1262.835000px;}
.h1_c00406{height:1263.000000px;}
.w0_c00406{width:892.914000px;}
.w1_c00406{width:893.250000px;}
.x0_c00406{left:0.000000px;}
.x2_c00406{left:90.000000px;}
.x3_c00406{left:106.500000px;}
.x1_c00406{left:786.728700px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls1_c00406{letter-spacing:0.000000pt;}
.ls0_c00406{letter-spacing:0.640000pt;}
.ls2_c00406{letter-spacing:0.746667pt;}
.ws0_c00406{word-spacing:-9.066667pt;}
.ws7_c00406{word-spacing:-5.184000pt;}
.wsc_c00406{word-spacing:-4.864000pt;}
.ws9_c00406{word-spacing:-2.240000pt;}
.ws6_c00406{word-spacing:-1.984000pt;}
.wsb_c00406{word-spacing:-1.408000pt;}
.ws2_c00406{word-spacing:-0.746667pt;}
.wsa_c00406{word-spacing:-0.128000pt;}
.ws1_c00406{word-spacing:0.000000pt;}
.ws5_c00406{word-spacing:0.320000pt;}
.ws8_c00406{word-spacing:0.384000pt;}
.ws3_c00406{word-spacing:2.496000pt;}
.wsd_c00406{word-spacing:5.440000pt;}
.ws4_c00406{word-spacing:10.560000pt;}
._0_c00406{margin-left:-426.965867pt;}
._1_c00406{margin-left:-3.733333pt;}
._5_c00406{margin-left:-2.252800pt;}
._2_c00406{margin-left:-1.196800pt;}
._3_c00406{width:1.132800pt;}
._4_c00406{width:2.630400pt;}
.fs1_c00406{font-size:37.333333pt;}
.fs0_c00406{font-size:53.333333pt;}
.fs3_c00406{font-size:64.000000pt;}
.fs2_c00406{font-size:74.666667pt;}
.y0_c00406{bottom:0.000000pt;}
.y1_c00406{bottom:36.666667pt;}
.y11_c00406{bottom:387.821067pt;}
.y10_c00406{bottom:414.493067pt;}
.yf_c00406{bottom:441.165067pt;}
.ye_c00406{bottom:467.837067pt;}
.yd_c00406{bottom:494.509067pt;}
.yc_c00406{bottom:521.181067pt;}
.yb_c00406{bottom:547.853067pt;}
.ya_c00406{bottom:601.186400pt;}
.y9_c00406{bottom:681.154400pt;}
.y8_c00406{bottom:707.826400pt;}
.y7_c00406{bottom:734.498400pt;}
.y6_c00406{bottom:761.170400pt;}
.y5_c00406{bottom:787.842400pt;}
.y4_c00406{bottom:814.514400pt;}
.y3_c00406{bottom:841.186400pt;}
.y2_c00406{bottom:894.519733pt;}
.h2_c00406{height:48.000000pt;}
.h4_c00406{height:57.600000pt;}
.h3_c00406{height:69.813333pt;}
.h0_c00406{height:1122.520000pt;}
.h1_c00406{height:1122.666667pt;}
.w0_c00406{width:793.701333pt;}
.w1_c00406{width:794.000000pt;}
.x0_c00406{left:0.000000pt;}
.x2_c00406{left:80.000000pt;}
.x3_c00406{left:94.666667pt;}
.x1_c00406{left:699.314400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5cfe859590981b00f11a9f9b.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.160000;font-style:normal;font-weight:normal;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_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00407;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.161000;font-style: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);}
.m1_c00407{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls5_c00407{letter-spacing:-0.324000px;}
.ls4_c00407{letter-spacing:0.000000px;}
.ls0_c00407{letter-spacing:0.720000px;}
.ls1_c00407{letter-spacing:0.840000px;}
.ls3_c00407{letter-spacing:1.500000px;}
.ls2_c00407{letter-spacing:1.650000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00407{word-spacing:-21.276000px;}
.ws2_c00407{word-spacing:-17.640000px;}
.ws3_c00407{word-spacing:-14.850000px;}
.ws0_c00407{word-spacing:-10.200000px;}
.wsc_c00407{word-spacing:-6.048000px;}
.wsa_c00407{word-spacing:-5.256000px;}
.ws11_c00407{word-spacing:-4.176000px;}
.ws8_c00407{word-spacing:-4.032000px;}
.ws9_c00407{word-spacing:-3.672000px;}
.wsb_c00407{word-spacing:-3.096000px;}
.ws13_c00407{word-spacing:-1.800000px;}
.ws12_c00407{word-spacing:-1.500000px;}
.ws5_c00407{word-spacing:-0.840000px;}
.ws4_c00407{word-spacing:0.000000px;}
.wsd_c00407{word-spacing:4.032000px;}
.wse_c00407{word-spacing:8.208000px;}
.ws10_c00407{word-spacing:8.496000px;}
.ws6_c00407{word-spacing:8.568000px;}
.ws7_c00407{word-spacing:9.432000px;}
.wsf_c00407{word-spacing:13.536000px;}
._0_c00407{margin-left:-480.337200px;}
._5_c00407{margin-left:-6.720000px;}
._7_c00407{margin-left:-5.400000px;}
._1_c00407{margin-left:-4.200000px;}
._3_c00407{margin-left:-2.160000px;}
._2_c00407{margin-left:-1.134000px;}
._6_c00407{width:1.404000px;}
._4_c00407{width:5.270400px;}
.fc4_c00407{color:rgb(210,84,0);}
.fc3_c00407{color:rgb(32,32,32);}
.fc2_c00407{color:rgb(233,83,14);}
.fc1_c00407{color:rgb(232,86,17);}
.fc5_c00407{color:rgb(157,157,156);}
.fc0_c00407{color:rgb(60,60,59);}
.fs1_c00407{font-size:42.000000px;}
.fs0_c00407{font-size:60.000000px;}
.fs5_c00407{font-size:66.000000px;}
.fs4_c00407{font-size:72.000000px;}
.fs3_c00407{font-size:84.000000px;}
.fs2_c00407{font-size:108.000000px;}
.y0_c00407{bottom:0.000000px;}
.y1_c00407{bottom:41.250000px;}
.y12_c00407{bottom:256.298700px;}
.y11_c00407{bottom:286.304700px;}
.y10_c00407{bottom:316.310700px;}
.yf_c00407{bottom:346.316700px;}
.ye_c00407{bottom:376.322700px;}
.yd_c00407{bottom:406.328700px;}
.yc_c00407{bottom:436.334700px;}
.yb_c00407{bottom:496.334700px;}
.ya_c00407{bottom:586.322700px;}
.y9_c00407{bottom:616.328700px;}
.y8_c00407{bottom:646.334700px;}
.y7_c00407{bottom:706.334700px;}
.y17_c00407{bottom:736.334700px;}
.y16_c00407{bottom:766.334700px;}
.y6_c00407{bottom:796.322700px;}
.y15_c00407{bottom:796.334700px;}
.y5_c00407{bottom:826.328700px;}
.y14_c00407{bottom:826.334700px;}
.y4_c00407{bottom:856.334700px;}
.y13_c00407{bottom:856.376100px;}
.y3_c00407{bottom:916.334700px;}
.y2_c00407{bottom:1006.334700px;}
.h6_c00407{height:50.292000px;}
.h2_c00407{height:54.000000px;}
.h5_c00407{height:64.800000px;}
.h4_c00407{height:78.540000px;}
.h3_c00407{height:100.980000px;}
.h0_c00407{height:1262.835000px;}
.h1_c00407{height:1263.000000px;}
.w0_c00407{width:892.914000px;}
.w1_c00407{width:893.250000px;}
.x0_c00407{left:0.000000px;}
.x2_c00407{left:82.500000px;}
.x3_c00407{left:90.000000px;}
.x4_c00407{left:106.500000px;}
.x5_c00407{left:675.611100px;}
.x1_c00407{left:784.703850px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls5_c00407{letter-spacing:-0.288000pt;}
.ls4_c00407{letter-spacing:0.000000pt;}
.ls0_c00407{letter-spacing:0.640000pt;}
.ls1_c00407{letter-spacing:0.746667pt;}
.ls3_c00407{letter-spacing:1.333333pt;}
.ls2_c00407{letter-spacing:1.466667pt;}
.ws1_c00407{word-spacing:-18.912000pt;}
.ws2_c00407{word-spacing:-15.680000pt;}
.ws3_c00407{word-spacing:-13.200000pt;}
.ws0_c00407{word-spacing:-9.066667pt;}
.wsc_c00407{word-spacing:-5.376000pt;}
.wsa_c00407{word-spacing:-4.672000pt;}
.ws11_c00407{word-spacing:-3.712000pt;}
.ws8_c00407{word-spacing:-3.584000pt;}
.ws9_c00407{word-spacing:-3.264000pt;}
.wsb_c00407{word-spacing:-2.752000pt;}
.ws13_c00407{word-spacing:-1.600000pt;}
.ws12_c00407{word-spacing:-1.333333pt;}
.ws5_c00407{word-spacing:-0.746667pt;}
.ws4_c00407{word-spacing:0.000000pt;}
.wsd_c00407{word-spacing:3.584000pt;}
.wse_c00407{word-spacing:7.296000pt;}
.ws10_c00407{word-spacing:7.552000pt;}
.ws6_c00407{word-spacing:7.616000pt;}
.ws7_c00407{word-spacing:8.384000pt;}
.wsf_c00407{word-spacing:12.032000pt;}
._0_c00407{margin-left:-426.966400pt;}
._5_c00407{margin-left:-5.973333pt;}
._7_c00407{margin-left:-4.800000pt;}
._1_c00407{margin-left:-3.733333pt;}
._3_c00407{margin-left:-1.920000pt;}
._2_c00407{margin-left:-1.008000pt;}
._6_c00407{width:1.248000pt;}
._4_c00407{width:4.684800pt;}
.fs1_c00407{font-size:37.333333pt;}
.fs0_c00407{font-size:53.333333pt;}
.fs5_c00407{font-size:58.666667pt;}
.fs4_c00407{font-size:64.000000pt;}
.fs3_c00407{font-size:74.666667pt;}
.fs2_c00407{font-size:96.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y1_c00407{bottom:36.666667pt;}
.y12_c00407{bottom:227.821067pt;}
.y11_c00407{bottom:254.493067pt;}
.y10_c00407{bottom:281.165067pt;}
.yf_c00407{bottom:307.837067pt;}
.ye_c00407{bottom:334.509067pt;}
.yd_c00407{bottom:361.181067pt;}
.yc_c00407{bottom:387.853067pt;}
.yb_c00407{bottom:441.186400pt;}
.ya_c00407{bottom:521.175733pt;}
.y9_c00407{bottom:547.847733pt;}
.y8_c00407{bottom:574.519733pt;}
.y7_c00407{bottom:627.853067pt;}
.y17_c00407{bottom:654.519733pt;}
.y16_c00407{bottom:681.186400pt;}
.y6_c00407{bottom:707.842400pt;}
.y15_c00407{bottom:707.853067pt;}
.y5_c00407{bottom:734.514400pt;}
.y14_c00407{bottom:734.519733pt;}
.y4_c00407{bottom:761.186400pt;}
.y13_c00407{bottom:761.223200pt;}
.y3_c00407{bottom:814.519733pt;}
.y2_c00407{bottom:894.519733pt;}
.h6_c00407{height:44.704000pt;}
.h2_c00407{height:48.000000pt;}
.h5_c00407{height:57.600000pt;}
.h4_c00407{height:69.813333pt;}
.h3_c00407{height:89.760000pt;}
.h0_c00407{height:1122.520000pt;}
.h1_c00407{height:1122.666667pt;}
.w0_c00407{width:793.701333pt;}
.w1_c00407{width:794.000000pt;}
.x0_c00407{left:0.000000pt;}
.x2_c00407{left:73.333333pt;}
.x3_c00407{left:80.000000pt;}
.x4_c00407{left:94.666667pt;}
.x5_c00407{left:600.543200pt;}
.x1_c00407{left:697.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54353bf4d35ff176b58704c8.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls1_c00408{letter-spacing:0.000000px;}
.ls0_c00408{letter-spacing:0.720000px;}
.ls2_c00408{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws9_c00408{word-spacing:-2.304000px;}
.wsd_c00408{word-spacing:-1.296000px;}
.ws2_c00408{word-spacing:-0.840000px;}
.ws1_c00408{word-spacing:0.000000px;}
.ws7_c00408{word-spacing:0.432000px;}
.wsa_c00408{word-spacing:1.440000px;}
.wsf_c00408{word-spacing:1.872000px;}
.wsb_c00408{word-spacing:3.960000px;}
.ws8_c00408{word-spacing:7.632000px;}
.wsc_c00408{word-spacing:7.704000px;}
.ws5_c00408{word-spacing:8.208000px;}
.wse_c00408{word-spacing:8.928000px;}
.ws3_c00408{word-spacing:9.072000px;}
.ws6_c00408{word-spacing:16.056000px;}
.ws4_c00408{word-spacing:21.168000px;}
._0_c00408{margin-left:-480.336600px;}
._4_c00408{margin-left:-6.710400px;}
._1_c00408{margin-left:-4.200000px;}
._2_c00408{margin-left:-2.160000px;}
._3_c00408{margin-left:-1.152000px;}
._6_c00408{width:1.576800px;}
._5_c00408{width:2.937600px;}
.fc2_c00408{color:rgb(32,32,32);}
.fc1_c00408{color:rgb(232,86,17);}
.fc0_c00408{color:rgb(60,60,59);}
.fs1_c00408{font-size:42.000000px;}
.fs0_c00408{font-size:60.000000px;}
.fs3_c00408{font-size:72.000000px;}
.fs2_c00408{font-size:84.000000px;}
.y0_c00408{bottom:0.000000px;}
.y1_c00408{bottom:41.250000px;}
.y11_c00408{bottom:436.298700px;}
.y10_c00408{bottom:466.304700px;}
.yf_c00408{bottom:496.310700px;}
.ye_c00408{bottom:526.316700px;}
.yd_c00408{bottom:556.322700px;}
.yc_c00408{bottom:586.328700px;}
.yb_c00408{bottom:616.334700px;}
.ya_c00408{bottom:676.334700px;}
.y9_c00408{bottom:766.298700px;}
.y8_c00408{bottom:796.304700px;}
.y7_c00408{bottom:826.310700px;}
.y6_c00408{bottom:856.316700px;}
.y5_c00408{bottom:886.322700px;}
.y4_c00408{bottom:916.328700px;}
.y3_c00408{bottom:946.334700px;}
.y2_c00408{bottom:1006.334700px;}
.h2_c00408{height:54.000000px;}
.h4_c00408{height:64.800000px;}
.h3_c00408{height:78.540000px;}
.h0_c00408{height:1262.835000px;}
.h1_c00408{height:1263.000000px;}
.w0_c00408{width:892.914000px;}
.w1_c00408{width:893.250000px;}
.x0_c00408{left:0.000000px;}
.x2_c00408{left:90.000000px;}
.x3_c00408{left:106.500000px;}
.x1_c00408{left:784.628700px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls1_c00408{letter-spacing:0.000000pt;}
.ls0_c00408{letter-spacing:0.640000pt;}
.ls2_c00408{letter-spacing:0.746667pt;}
.ws0_c00408{word-spacing:-9.066667pt;}
.ws9_c00408{word-spacing:-2.048000pt;}
.wsd_c00408{word-spacing:-1.152000pt;}
.ws2_c00408{word-spacing:-0.746667pt;}
.ws1_c00408{word-spacing:0.000000pt;}
.ws7_c00408{word-spacing:0.384000pt;}
.wsa_c00408{word-spacing:1.280000pt;}
.wsf_c00408{word-spacing:1.664000pt;}
.wsb_c00408{word-spacing:3.520000pt;}
.ws8_c00408{word-spacing:6.784000pt;}
.wsc_c00408{word-spacing:6.848000pt;}
.ws5_c00408{word-spacing:7.296000pt;}
.wse_c00408{word-spacing:7.936000pt;}
.ws3_c00408{word-spacing:8.064000pt;}
.ws6_c00408{word-spacing:14.272000pt;}
.ws4_c00408{word-spacing:18.816000pt;}
._0_c00408{margin-left:-426.965867pt;}
._4_c00408{margin-left:-5.964800pt;}
._1_c00408{margin-left:-3.733333pt;}
._2_c00408{margin-left:-1.920000pt;}
._3_c00408{margin-left:-1.024000pt;}
._6_c00408{width:1.401600pt;}
._5_c00408{width:2.611200pt;}
.fs1_c00408{font-size:37.333333pt;}
.fs0_c00408{font-size:53.333333pt;}
.fs3_c00408{font-size:64.000000pt;}
.fs2_c00408{font-size:74.666667pt;}
.y0_c00408{bottom:0.000000pt;}
.y1_c00408{bottom:36.666667pt;}
.y11_c00408{bottom:387.821067pt;}
.y10_c00408{bottom:414.493067pt;}
.yf_c00408{bottom:441.165067pt;}
.ye_c00408{bottom:467.837067pt;}
.yd_c00408{bottom:494.509067pt;}
.yc_c00408{bottom:521.181067pt;}
.yb_c00408{bottom:547.853067pt;}
.ya_c00408{bottom:601.186400pt;}
.y9_c00408{bottom:681.154400pt;}
.y8_c00408{bottom:707.826400pt;}
.y7_c00408{bottom:734.498400pt;}
.y6_c00408{bottom:761.170400pt;}
.y5_c00408{bottom:787.842400pt;}
.y4_c00408{bottom:814.514400pt;}
.y3_c00408{bottom:841.186400pt;}
.y2_c00408{bottom:894.519733pt;}
.h2_c00408{height:48.000000pt;}
.h4_c00408{height:57.600000pt;}
.h3_c00408{height:69.813333pt;}
.h0_c00408{height:1122.520000pt;}
.h1_c00408{height:1122.666667pt;}
.w0_c00408{width:793.701333pt;}
.w1_c00408{width:794.000000pt;}
.x0_c00408{left:0.000000pt;}
.x2_c00408{left:80.000000pt;}
.x3_c00408{left:94.666667pt;}
.x1_c00408{left:697.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.160000;font-style:normal;font-weight:normal;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_d071661ec5c75d861a68aa6b.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00409;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00409{font-family:ff5_c00409;line-height:1.155000;font-style: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);}
.m1_c00409{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00409{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls3_c00409{letter-spacing:0.000000px;}
.ls1_c00409{letter-spacing:0.756000px;}
.ls0_c00409{letter-spacing:0.864000px;}
.ls2_c00409{letter-spacing:1.200000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00409{word-spacing:-13.104000px;}
.ws0_c00409{word-spacing:-10.200000px;}
.ws8_c00409{word-spacing:-8.400000px;}
.ws5_c00409{word-spacing:-3.816000px;}
.ws4_c00409{word-spacing:-3.240000px;}
.ws3_c00409{word-spacing:-2.664000px;}
.ws7_c00409{word-spacing:-0.864000px;}
.ws2_c00409{word-spacing:0.000000px;}
.ws6_c00409{word-spacing:9.387000px;}
._0_c00409{margin-left:-480.337200px;}
._5_c00409{margin-left:-9.000000px;}
._1_c00409{margin-left:-4.200000px;}
._3_c00409{margin-left:-1.440000px;}
._4_c00409{width:1.080000px;}
._2_c00409{width:2.664000px;}
.fc3_c00409{color:rgb(255,255,255);}
.fc2_c00409{color:rgb(233,83,14);}
.fc1_c00409{color:rgb(232,86,17);}
.fc0_c00409{color:rgb(60,60,59);}
.fs1_c00409{font-size:42.000000px;}
.fs0_c00409{font-size:60.000000px;}
.fs4_c00409{font-size:63.000000px;}
.fs3_c00409{font-size:72.000000px;}
.fs5_c00409{font-size:120.000000px;}
.fs2_c00409{font-size:360.000000px;}
.y0_c00409{bottom:0.000000px;}
.y1_c00409{bottom:41.250000px;}
.y9_c00409{bottom:574.334700px;}
.y8_c00409{bottom:595.334700px;}
.y7_c00409{bottom:616.328700px;}
.y6_c00409{bottom:664.334700px;}
.y5_c00409{bottom:685.334700px;}
.y4_c00409{bottom:706.340700px;}
.y3_c00409{bottom:752.834700px;}
.yd_c00409{bottom:916.334700px;}
.yc_c00409{bottom:946.334700px;}
.yb_c00409{bottom:976.334700px;}
.ya_c00409{bottom:1006.334700px;}
.y2_c00409{bottom:1093.526700px;}
.h2_c00409{height:54.000000px;}
.h6_c00409{height:56.700000px;}
.h5_c00409{height:64.800000px;}
.h4_c00409{height:66.456000px;}
.h7_c00409{height:112.200000px;}
.h3_c00409{height:324.000000px;}
.h0_c00409{height:1262.835000px;}
.h1_c00409{height:1263.000000px;}
.w0_c00409{width:892.914000px;}
.w1_c00409{width:893.250000px;}
.x0_c00409{left:0.000000px;}
.x2_c00409{left:81.290250px;}
.x3_c00409{left:82.393650px;}
.x5_c00409{left:112.287450px;}
.x4_c00409{left:127.393650px;}
.x1_c00409{left:788.303850px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls3_c00409{letter-spacing:0.000000pt;}
.ls1_c00409{letter-spacing:0.672000pt;}
.ls0_c00409{letter-spacing:0.768000pt;}
.ls2_c00409{letter-spacing:1.066667pt;}
.ws1_c00409{word-spacing:-11.648000pt;}
.ws0_c00409{word-spacing:-9.066667pt;}
.ws8_c00409{word-spacing:-7.466667pt;}
.ws5_c00409{word-spacing:-3.392000pt;}
.ws4_c00409{word-spacing:-2.880000pt;}
.ws3_c00409{word-spacing:-2.368000pt;}
.ws7_c00409{word-spacing:-0.768000pt;}
.ws2_c00409{word-spacing:0.000000pt;}
.ws6_c00409{word-spacing:8.344000pt;}
._0_c00409{margin-left:-426.966400pt;}
._5_c00409{margin-left:-8.000000pt;}
._1_c00409{margin-left:-3.733333pt;}
._3_c00409{margin-left:-1.280000pt;}
._4_c00409{width:0.960000pt;}
._2_c00409{width:2.368000pt;}
.fs1_c00409{font-size:37.333333pt;}
.fs0_c00409{font-size:53.333333pt;}
.fs4_c00409{font-size:56.000000pt;}
.fs3_c00409{font-size:64.000000pt;}
.fs5_c00409{font-size:106.666667pt;}
.fs2_c00409{font-size:320.000000pt;}
.y0_c00409{bottom:0.000000pt;}
.y1_c00409{bottom:36.666667pt;}
.y9_c00409{bottom:510.519733pt;}
.y8_c00409{bottom:529.186400pt;}
.y7_c00409{bottom:547.847733pt;}
.y6_c00409{bottom:590.519733pt;}
.y5_c00409{bottom:609.186400pt;}
.y4_c00409{bottom:627.858400pt;}
.y3_c00409{bottom:669.186400pt;}
.yd_c00409{bottom:814.519733pt;}
.yc_c00409{bottom:841.186400pt;}
.yb_c00409{bottom:867.853067pt;}
.ya_c00409{bottom:894.519733pt;}
.y2_c00409{bottom:972.023733pt;}
.h2_c00409{height:48.000000pt;}
.h6_c00409{height:50.400000pt;}
.h5_c00409{height:57.600000pt;}
.h4_c00409{height:59.072000pt;}
.h7_c00409{height:99.733333pt;}
.h3_c00409{height:288.000000pt;}
.h0_c00409{height:1122.520000pt;}
.h1_c00409{height:1122.666667pt;}
.w0_c00409{width:793.701333pt;}
.w1_c00409{width:794.000000pt;}
.x0_c00409{left:0.000000pt;}
.x2_c00409{left:72.258000pt;}
.x3_c00409{left:73.238800pt;}
.x5_c00409{left:99.811067pt;}
.x4_c00409{left:113.238800pt;}
.x1_c00409{left:700.714533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.161000;font-style: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);}
.m1_c00410{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00410{vertical-align:-23.520000px;}
.v3_c00410{vertical-align:-5.976000px;}
.v0_c00410{vertical-align:0.000000px;}
.v1_c00410{vertical-align:5.976000px;}
.ls5_c00410{letter-spacing:-0.540000px;}
.ls4_c00410{letter-spacing:0.000000px;}
.ls1_c00410{letter-spacing:0.419760px;}
.ls0_c00410{letter-spacing:0.720000px;}
.ls3_c00410{letter-spacing:1.500000px;}
.ls2_c00410{letter-spacing:1.650000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00410{word-spacing:-21.060000px;}
.ws0_c00410{word-spacing:-10.200000px;}
.ws2_c00410{word-spacing:-7.555680px;}
.wsd_c00410{word-spacing:-2.016000px;}
.wsc_c00410{word-spacing:-1.512000px;}
.ws1e_c00410{word-spacing:-1.500000px;}
.ws16_c00410{word-spacing:-1.368000px;}
.ws13_c00410{word-spacing:-1.224000px;}
.ws12_c00410{word-spacing:-0.432000px;}
.ws10_c00410{word-spacing:-0.216000px;}
.ws9_c00410{word-spacing:-0.144000px;}
.ws3_c00410{word-spacing:0.000000px;}
.ws1a_c00410{word-spacing:0.144000px;}
.wsf_c00410{word-spacing:2.232000px;}
.ws6_c00410{word-spacing:2.376000px;}
.ws1d_c00410{word-spacing:2.664000px;}
.ws7_c00410{word-spacing:2.736000px;}
.ws11_c00410{word-spacing:2.808000px;}
.ws19_c00410{word-spacing:2.880000px;}
.ws18_c00410{word-spacing:2.952000px;}
.wsb_c00410{word-spacing:3.384000px;}
.ws17_c00410{word-spacing:4.320000px;}
.ws1b_c00410{word-spacing:5.040000px;}
.ws14_c00410{word-spacing:5.688000px;}
.wse_c00410{word-spacing:6.048000px;}
.ws15_c00410{word-spacing:6.408000px;}
.ws5_c00410{word-spacing:6.552000px;}
.ws1c_c00410{word-spacing:7.056000px;}
.wsa_c00410{word-spacing:8.208000px;}
.ws8_c00410{word-spacing:12.096000px;}
.ws4_c00410{word-spacing:21.744000px;}
._0_c00410{margin-left:-480.337800px;}
._4_c00410{margin-left:-10.116000px;}
._5_c00410{margin-left:-5.760000px;}
._1_c00410{margin-left:-4.200000px;}
._2_c00410{margin-left:-1.440000px;}
._3_c00410{width:16.596000px;}
.fc3_c00410{color:rgb(32,32,32);}
.fc2_c00410{color:rgb(233,83,14);}
.fc1_c00410{color:rgb(232,86,17);}
.fc4_c00410{color:rgb(157,157,156);}
.fc0_c00410{color:rgb(60,60,59);}
.fs4_c00410{font-size:41.976000px;}
.fs1_c00410{font-size:42.000000px;}
.fs0_c00410{font-size:60.000000px;}
.fs5_c00410{font-size:66.000000px;}
.fs3_c00410{font-size:72.000000px;}
.fs2_c00410{font-size:108.000000px;}
.y0_c00410{bottom:0.000000px;}
.y1_c00410{bottom:41.250000px;}
.y1f_c00410{bottom:106.280700px;}
.y1e_c00410{bottom:136.286700px;}
.y1d_c00410{bottom:166.292700px;}
.y1c_c00410{bottom:196.298700px;}
.y1b_c00410{bottom:226.304700px;}
.y1a_c00410{bottom:256.310700px;}
.y19_c00410{bottom:286.316700px;}
.y18_c00410{bottom:316.322700px;}
.y17_c00410{bottom:346.328700px;}
.y16_c00410{bottom:377.828700px;}
.y15_c00410{bottom:406.226700px;}
.y14_c00410{bottom:436.232700px;}
.y13_c00410{bottom:466.238700px;}
.y12_c00410{bottom:496.244700px;}
.y11_c00410{bottom:526.250700px;}
.y10_c00410{bottom:556.256700px;}
.yf_c00410{bottom:586.262700px;}
.ye_c00410{bottom:616.268700px;}
.yd_c00410{bottom:646.274700px;}
.yc_c00410{bottom:676.280700px;}
.yb_c00410{bottom:706.286700px;}
.ya_c00410{bottom:736.292700px;}
.y9_c00410{bottom:766.298700px;}
.y8_c00410{bottom:796.304700px;}
.y25_c00410{bottom:796.334700px;}
.y7_c00410{bottom:826.310700px;}
.y24_c00410{bottom:826.334700px;}
.y6_c00410{bottom:856.316700px;}
.y23_c00410{bottom:856.334700px;}
.y5_c00410{bottom:886.322700px;}
.y22_c00410{bottom:886.334700px;}
.y4_c00410{bottom:916.328700px;}
.y21_c00410{bottom:916.334700px;}
.y3_c00410{bottom:946.334700px;}
.y20_c00410{bottom:946.376100px;}
.y2_c00410{bottom:1006.334700px;}
.h6_c00410{height:50.292000px;}
.h2_c00410{height:54.000000px;}
.h4_c00410{height:64.800000px;}
.h5_c00410{height:71.232000px;}
.h3_c00410{height:100.980000px;}
.h0_c00410{height:1262.835000px;}
.h1_c00410{height:1263.000000px;}
.w0_c00410{width:892.914000px;}
.w1_c00410{width:893.250000px;}
.x0_c00410{left:0.000000px;}
.x2_c00410{left:82.500000px;}
.x3_c00410{left:106.500000px;}
.x4_c00410{left:675.611100px;}
.x1_c00410{left:791.964000px;}
@media print{
.v2_c00410{vertical-align:-20.906667pt;}
.v3_c00410{vertical-align:-5.312000pt;}
.v0_c00410{vertical-align:0.000000pt;}
.v1_c00410{vertical-align:5.312000pt;}
.ls5_c00410{letter-spacing:-0.480000pt;}
.ls4_c00410{letter-spacing:0.000000pt;}
.ls1_c00410{letter-spacing:0.373120pt;}
.ls0_c00410{letter-spacing:0.640000pt;}
.ls3_c00410{letter-spacing:1.333333pt;}
.ls2_c00410{letter-spacing:1.466667pt;}
.ws1_c00410{word-spacing:-18.720000pt;}
.ws0_c00410{word-spacing:-9.066667pt;}
.ws2_c00410{word-spacing:-6.716160pt;}
.wsd_c00410{word-spacing:-1.792000pt;}
.wsc_c00410{word-spacing:-1.344000pt;}
.ws1e_c00410{word-spacing:-1.333333pt;}
.ws16_c00410{word-spacing:-1.216000pt;}
.ws13_c00410{word-spacing:-1.088000pt;}
.ws12_c00410{word-spacing:-0.384000pt;}
.ws10_c00410{word-spacing:-0.192000pt;}
.ws9_c00410{word-spacing:-0.128000pt;}
.ws3_c00410{word-spacing:0.000000pt;}
.ws1a_c00410{word-spacing:0.128000pt;}
.wsf_c00410{word-spacing:1.984000pt;}
.ws6_c00410{word-spacing:2.112000pt;}
.ws1d_c00410{word-spacing:2.368000pt;}
.ws7_c00410{word-spacing:2.432000pt;}
.ws11_c00410{word-spacing:2.496000pt;}
.ws19_c00410{word-spacing:2.560000pt;}
.ws18_c00410{word-spacing:2.624000pt;}
.wsb_c00410{word-spacing:3.008000pt;}
.ws17_c00410{word-spacing:3.840000pt;}
.ws1b_c00410{word-spacing:4.480000pt;}
.ws14_c00410{word-spacing:5.056000pt;}
.wse_c00410{word-spacing:5.376000pt;}
.ws15_c00410{word-spacing:5.696000pt;}
.ws5_c00410{word-spacing:5.824000pt;}
.ws1c_c00410{word-spacing:6.272000pt;}
.wsa_c00410{word-spacing:7.296000pt;}
.ws8_c00410{word-spacing:10.752000pt;}
.ws4_c00410{word-spacing:19.328000pt;}
._0_c00410{margin-left:-426.966933pt;}
._4_c00410{margin-left:-8.992000pt;}
._5_c00410{margin-left:-5.120000pt;}
._1_c00410{margin-left:-3.733333pt;}
._2_c00410{margin-left:-1.280000pt;}
._3_c00410{width:14.752000pt;}
.fs4_c00410{font-size:37.312000pt;}
.fs1_c00410{font-size:37.333333pt;}
.fs0_c00410{font-size:53.333333pt;}
.fs5_c00410{font-size:58.666667pt;}
.fs3_c00410{font-size:64.000000pt;}
.fs2_c00410{font-size:96.000000pt;}
.y0_c00410{bottom:0.000000pt;}
.y1_c00410{bottom:36.666667pt;}
.y1f_c00410{bottom:94.471733pt;}
.y1e_c00410{bottom:121.143733pt;}
.y1d_c00410{bottom:147.815733pt;}
.y1c_c00410{bottom:174.487733pt;}
.y1b_c00410{bottom:201.159733pt;}
.y1a_c00410{bottom:227.831733pt;}
.y19_c00410{bottom:254.503733pt;}
.y18_c00410{bottom:281.175733pt;}
.y17_c00410{bottom:307.847733pt;}
.y16_c00410{bottom:335.847733pt;}
.y15_c00410{bottom:361.090400pt;}
.y14_c00410{bottom:387.762400pt;}
.y13_c00410{bottom:414.434400pt;}
.y12_c00410{bottom:441.106400pt;}
.y11_c00410{bottom:467.778400pt;}
.y10_c00410{bottom:494.450400pt;}
.yf_c00410{bottom:521.122400pt;}
.ye_c00410{bottom:547.794400pt;}
.yd_c00410{bottom:574.466400pt;}
.yc_c00410{bottom:601.138400pt;}
.yb_c00410{bottom:627.810400pt;}
.ya_c00410{bottom:654.482400pt;}
.y9_c00410{bottom:681.154400pt;}
.y8_c00410{bottom:707.826400pt;}
.y25_c00410{bottom:707.853067pt;}
.y7_c00410{bottom:734.498400pt;}
.y24_c00410{bottom:734.519733pt;}
.y6_c00410{bottom:761.170400pt;}
.y23_c00410{bottom:761.186400pt;}
.y5_c00410{bottom:787.842400pt;}
.y22_c00410{bottom:787.853067pt;}
.y4_c00410{bottom:814.514400pt;}
.y21_c00410{bottom:814.519733pt;}
.y3_c00410{bottom:841.186400pt;}
.y20_c00410{bottom:841.223200pt;}
.y2_c00410{bottom:894.519733pt;}
.h6_c00410{height:44.704000pt;}
.h2_c00410{height:48.000000pt;}
.h4_c00410{height:57.600000pt;}
.h5_c00410{height:63.317333pt;}
.h3_c00410{height:89.760000pt;}
.h0_c00410{height:1122.520000pt;}
.h1_c00410{height:1122.666667pt;}
.w0_c00410{width:793.701333pt;}
.w1_c00410{width:794.000000pt;}
.x0_c00410{left:0.000000pt;}
.x2_c00410{left:73.333333pt;}
.x3_c00410{left:94.666667pt;}
.x4_c00410{left:600.543200pt;}
.x1_c00410{left:703.968000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00411;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.161000;font-style: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);}
.m1_c00411{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00411{vertical-align:-17.568000px;}
.v3_c00411{vertical-align:-5.976000px;}
.v0_c00411{vertical-align:0.000000px;}
.v1_c00411{vertical-align:5.976000px;}
.ls5_c00411{letter-spacing:-0.324000px;}
.ls4_c00411{letter-spacing:0.000000px;}
.ls1_c00411{letter-spacing:0.419760px;}
.ls0_c00411{letter-spacing:0.720000px;}
.ls3_c00411{letter-spacing:1.500000px;}
.ls2_c00411{letter-spacing:1.650000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00411{word-spacing:-21.276000px;}
.ws3_c00411{word-spacing:-14.850000px;}
.ws0_c00411{word-spacing:-10.200000px;}
.ws2_c00411{word-spacing:-7.555680px;}
.ws18_c00411{word-spacing:-5.976000px;}
.wsc_c00411{word-spacing:-3.312000px;}
.ws11_c00411{word-spacing:-2.880000px;}
.ws1d_c00411{word-spacing:-2.520000px;}
.ws10_c00411{word-spacing:-2.016000px;}
.ws20_c00411{word-spacing:-1.500000px;}
.ws13_c00411{word-spacing:-0.936000px;}
.ws12_c00411{word-spacing:-0.720000px;}
.wse_c00411{word-spacing:-0.504000px;}
.ws4_c00411{word-spacing:0.000000px;}
.wsb_c00411{word-spacing:0.576000px;}
.ws15_c00411{word-spacing:0.792000px;}
.ws1e_c00411{word-spacing:0.864000px;}
.ws7_c00411{word-spacing:2.736000px;}
.ws17_c00411{word-spacing:3.816000px;}
.ws1f_c00411{word-spacing:4.608000px;}
.wsf_c00411{word-spacing:4.680000px;}
.ws6_c00411{word-spacing:4.824000px;}
.ws19_c00411{word-spacing:5.400000px;}
.ws14_c00411{word-spacing:5.544000px;}
.ws16_c00411{word-spacing:6.120000px;}
.wsd_c00411{word-spacing:6.264000px;}
.ws1c_c00411{word-spacing:6.840000px;}
.ws8_c00411{word-spacing:6.984000px;}
.wsa_c00411{word-spacing:7.128000px;}
.ws1a_c00411{word-spacing:7.272000px;}
.ws1b_c00411{word-spacing:7.344000px;}
.ws5_c00411{word-spacing:9.792000px;}
.ws9_c00411{word-spacing:10.800000px;}
._0_c00411{margin-left:-480.337200px;}
._4_c00411{margin-left:-5.760000px;}
._1_c00411{margin-left:-4.200000px;}
._3_c00411{margin-left:-2.160000px;}
._2_c00411{margin-left:-1.134000px;}
._5_c00411{width:1.036800px;}
._6_c00411{width:2.649600px;}
.fc3_c00411{color:rgb(32,32,32);}
.fc2_c00411{color:rgb(233,83,14);}
.fc1_c00411{color:rgb(232,86,17);}
.fc4_c00411{color:rgb(157,157,156);}
.fc0_c00411{color:rgb(60,60,59);}
.fs4_c00411{font-size:41.976000px;}
.fs1_c00411{font-size:42.000000px;}
.fs0_c00411{font-size:60.000000px;}
.fs5_c00411{font-size:66.000000px;}
.fs3_c00411{font-size:72.000000px;}
.fs2_c00411{font-size:108.000000px;}
.y0_c00411{bottom:0.000000px;}
.y1_c00411{bottom:41.250000px;}
.y1e_c00411{bottom:136.280700px;}
.y1d_c00411{bottom:166.286700px;}
.y1c_c00411{bottom:196.292700px;}
.y1b_c00411{bottom:226.298700px;}
.y1a_c00411{bottom:256.304700px;}
.y19_c00411{bottom:286.310700px;}
.y18_c00411{bottom:316.316700px;}
.y17_c00411{bottom:346.322700px;}
.y16_c00411{bottom:376.328700px;}
.y15_c00411{bottom:407.828700px;}
.y14_c00411{bottom:436.232700px;}
.y13_c00411{bottom:466.238700px;}
.y12_c00411{bottom:496.244700px;}
.y11_c00411{bottom:526.250700px;}
.y10_c00411{bottom:556.256700px;}
.yf_c00411{bottom:586.262700px;}
.ye_c00411{bottom:616.268700px;}
.yd_c00411{bottom:646.274700px;}
.yc_c00411{bottom:676.280700px;}
.yb_c00411{bottom:706.286700px;}
.ya_c00411{bottom:736.292700px;}
.y9_c00411{bottom:766.298700px;}
.y8_c00411{bottom:796.304700px;}
.y24_c00411{bottom:796.334700px;}
.y7_c00411{bottom:826.310700px;}
.y23_c00411{bottom:826.334700px;}
.y6_c00411{bottom:856.316700px;}
.y22_c00411{bottom:856.334700px;}
.y5_c00411{bottom:886.322700px;}
.y21_c00411{bottom:886.334700px;}
.y4_c00411{bottom:916.328700px;}
.y20_c00411{bottom:916.334700px;}
.y3_c00411{bottom:946.334700px;}
.y1f_c00411{bottom:946.376100px;}
.y2_c00411{bottom:1006.334700px;}
.h6_c00411{height:50.292000px;}
.h2_c00411{height:54.000000px;}
.h4_c00411{height:64.800000px;}
.h5_c00411{height:71.208000px;}
.h3_c00411{height:100.980000px;}
.h0_c00411{height:1262.835000px;}
.h1_c00411{height:1263.000000px;}
.w0_c00411{width:892.914000px;}
.w1_c00411{width:893.250000px;}
.x0_c00411{left:0.000000px;}
.x2_c00411{left:82.500000px;}
.x3_c00411{left:106.500000px;}
.x4_c00411{left:675.611100px;}
.x1_c00411{left:789.488850px;}
@media print{
.v2_c00411{vertical-align:-15.616000pt;}
.v3_c00411{vertical-align:-5.312000pt;}
.v0_c00411{vertical-align:0.000000pt;}
.v1_c00411{vertical-align:5.312000pt;}
.ls5_c00411{letter-spacing:-0.288000pt;}
.ls4_c00411{letter-spacing:0.000000pt;}
.ls1_c00411{letter-spacing:0.373120pt;}
.ls0_c00411{letter-spacing:0.640000pt;}
.ls3_c00411{letter-spacing:1.333333pt;}
.ls2_c00411{letter-spacing:1.466667pt;}
.ws1_c00411{word-spacing:-18.912000pt;}
.ws3_c00411{word-spacing:-13.200000pt;}
.ws0_c00411{word-spacing:-9.066667pt;}
.ws2_c00411{word-spacing:-6.716160pt;}
.ws18_c00411{word-spacing:-5.312000pt;}
.wsc_c00411{word-spacing:-2.944000pt;}
.ws11_c00411{word-spacing:-2.560000pt;}
.ws1d_c00411{word-spacing:-2.240000pt;}
.ws10_c00411{word-spacing:-1.792000pt;}
.ws20_c00411{word-spacing:-1.333333pt;}
.ws13_c00411{word-spacing:-0.832000pt;}
.ws12_c00411{word-spacing:-0.640000pt;}
.wse_c00411{word-spacing:-0.448000pt;}
.ws4_c00411{word-spacing:0.000000pt;}
.wsb_c00411{word-spacing:0.512000pt;}
.ws15_c00411{word-spacing:0.704000pt;}
.ws1e_c00411{word-spacing:0.768000pt;}
.ws7_c00411{word-spacing:2.432000pt;}
.ws17_c00411{word-spacing:3.392000pt;}
.ws1f_c00411{word-spacing:4.096000pt;}
.wsf_c00411{word-spacing:4.160000pt;}
.ws6_c00411{word-spacing:4.288000pt;}
.ws19_c00411{word-spacing:4.800000pt;}
.ws14_c00411{word-spacing:4.928000pt;}
.ws16_c00411{word-spacing:5.440000pt;}
.wsd_c00411{word-spacing:5.568000pt;}
.ws1c_c00411{word-spacing:6.080000pt;}
.ws8_c00411{word-spacing:6.208000pt;}
.wsa_c00411{word-spacing:6.336000pt;}
.ws1a_c00411{word-spacing:6.464000pt;}
.ws1b_c00411{word-spacing:6.528000pt;}
.ws5_c00411{word-spacing:8.704000pt;}
.ws9_c00411{word-spacing:9.600000pt;}
._0_c00411{margin-left:-426.966400pt;}
._4_c00411{margin-left:-5.120000pt;}
._1_c00411{margin-left:-3.733333pt;}
._3_c00411{margin-left:-1.920000pt;}
._2_c00411{margin-left:-1.008000pt;}
._5_c00411{width:0.921600pt;}
._6_c00411{width:2.355200pt;}
.fs4_c00411{font-size:37.312000pt;}
.fs1_c00411{font-size:37.333333pt;}
.fs0_c00411{font-size:53.333333pt;}
.fs5_c00411{font-size:58.666667pt;}
.fs3_c00411{font-size:64.000000pt;}
.fs2_c00411{font-size:96.000000pt;}
.y0_c00411{bottom:0.000000pt;}
.y1_c00411{bottom:36.666667pt;}
.y1e_c00411{bottom:121.138400pt;}
.y1d_c00411{bottom:147.810400pt;}
.y1c_c00411{bottom:174.482400pt;}
.y1b_c00411{bottom:201.154400pt;}
.y1a_c00411{bottom:227.826400pt;}
.y19_c00411{bottom:254.498400pt;}
.y18_c00411{bottom:281.170400pt;}
.y17_c00411{bottom:307.842400pt;}
.y16_c00411{bottom:334.514400pt;}
.y15_c00411{bottom:362.514400pt;}
.y14_c00411{bottom:387.762400pt;}
.y13_c00411{bottom:414.434400pt;}
.y12_c00411{bottom:441.106400pt;}
.y11_c00411{bottom:467.778400pt;}
.y10_c00411{bottom:494.450400pt;}
.yf_c00411{bottom:521.122400pt;}
.ye_c00411{bottom:547.794400pt;}
.yd_c00411{bottom:574.466400pt;}
.yc_c00411{bottom:601.138400pt;}
.yb_c00411{bottom:627.810400pt;}
.ya_c00411{bottom:654.482400pt;}
.y9_c00411{bottom:681.154400pt;}
.y8_c00411{bottom:707.826400pt;}
.y24_c00411{bottom:707.853067pt;}
.y7_c00411{bottom:734.498400pt;}
.y23_c00411{bottom:734.519733pt;}
.y6_c00411{bottom:761.170400pt;}
.y22_c00411{bottom:761.186400pt;}
.y5_c00411{bottom:787.842400pt;}
.y21_c00411{bottom:787.853067pt;}
.y4_c00411{bottom:814.514400pt;}
.y20_c00411{bottom:814.519733pt;}
.y3_c00411{bottom:841.186400pt;}
.y1f_c00411{bottom:841.223200pt;}
.y2_c00411{bottom:894.519733pt;}
.h6_c00411{height:44.704000pt;}
.h2_c00411{height:48.000000pt;}
.h4_c00411{height:57.600000pt;}
.h5_c00411{height:63.296000pt;}
.h3_c00411{height:89.760000pt;}
.h0_c00411{height:1122.520000pt;}
.h1_c00411{height:1122.666667pt;}
.w0_c00411{width:793.701333pt;}
.w1_c00411{width:794.000000pt;}
.x0_c00411{left:0.000000pt;}
.x2_c00411{left:73.333333pt;}
.x3_c00411{left:94.666667pt;}
.x4_c00411{left:600.543200pt;}
.x1_c00411{left:701.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00412;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls3_c00412{letter-spacing:-0.840000px;}
.ls2_c00412{letter-spacing:0.000000px;}
.ls0_c00412{letter-spacing:0.864000px;}
.ls1_c00412{letter-spacing:1.200000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00412{word-spacing:-13.104000px;}
.ws0_c00412{word-spacing:-10.200000px;}
.ws6_c00412{word-spacing:-5.400000px;}
.ws4_c00412{word-spacing:-5.040000px;}
.ws5_c00412{word-spacing:-1.200000px;}
.ws3_c00412{word-spacing:-0.864000px;}
.ws2_c00412{word-spacing:0.000000px;}
.ws7_c00412{word-spacing:2.040000px;}
._0_c00412{margin-left:-480.337800px;}
._4_c00412{margin-left:-9.144000px;}
._3_c00412{margin-left:-7.192800px;}
._1_c00412{margin-left:-4.200000px;}
._5_c00412{margin-left:-2.760000px;}
._2_c00412{margin-left:-1.440000px;}
._8_c00412{width:2.040000px;}
._7_c00412{width:3.864000px;}
._6_c00412{width:6.000000px;}
.fc3_c00412{color:rgb(255,255,255);}
.fc2_c00412{color:rgb(233,83,14);}
.fc1_c00412{color:rgb(232,86,17);}
.fc0_c00412{color:rgb(60,60,59);}
.fs1_c00412{font-size:42.000000px;}
.fs0_c00412{font-size:60.000000px;}
.fs3_c00412{font-size:72.000000px;}
.fs4_c00412{font-size:120.000000px;}
.fs2_c00412{font-size:360.000000px;}
.y0_c00412{bottom:0.000000px;}
.y1_c00412{bottom:41.250000px;}
.y9_c00412{bottom:574.310700px;}
.y8_c00412{bottom:595.316700px;}
.y7_c00412{bottom:616.322700px;}
.y6_c00412{bottom:664.328700px;}
.y5_c00412{bottom:685.334700px;}
.y4_c00412{bottom:706.340700px;}
.y3_c00412{bottom:752.834700px;}
.yd_c00412{bottom:916.334700px;}
.yc_c00412{bottom:946.334700px;}
.yb_c00412{bottom:976.334700px;}
.ya_c00412{bottom:1006.334700px;}
.y2_c00412{bottom:1093.526700px;}
.h2_c00412{height:54.000000px;}
.h5_c00412{height:64.800000px;}
.h4_c00412{height:66.456000px;}
.h6_c00412{height:112.200000px;}
.h3_c00412{height:324.000000px;}
.h0_c00412{height:1262.835000px;}
.h1_c00412{height:1263.000000px;}
.w0_c00412{width:892.914000px;}
.w1_c00412{width:893.250000px;}
.x0_c00412{left:0.000000px;}
.x2_c00412{left:81.290250px;}
.x3_c00412{left:82.393650px;}
.x5_c00412{left:112.287450px;}
.x4_c00412{left:127.393650px;}
.x1_c00412{left:789.339000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls3_c00412{letter-spacing:-0.746667pt;}
.ls2_c00412{letter-spacing:0.000000pt;}
.ls0_c00412{letter-spacing:0.768000pt;}
.ls1_c00412{letter-spacing:1.066667pt;}
.ws1_c00412{word-spacing:-11.648000pt;}
.ws0_c00412{word-spacing:-9.066667pt;}
.ws6_c00412{word-spacing:-4.800000pt;}
.ws4_c00412{word-spacing:-4.480000pt;}
.ws5_c00412{word-spacing:-1.066667pt;}
.ws3_c00412{word-spacing:-0.768000pt;}
.ws2_c00412{word-spacing:0.000000pt;}
.ws7_c00412{word-spacing:1.813333pt;}
._0_c00412{margin-left:-426.966933pt;}
._4_c00412{margin-left:-8.128000pt;}
._3_c00412{margin-left:-6.393600pt;}
._1_c00412{margin-left:-3.733333pt;}
._5_c00412{margin-left:-2.453333pt;}
._2_c00412{margin-left:-1.280000pt;}
._8_c00412{width:1.813333pt;}
._7_c00412{width:3.434667pt;}
._6_c00412{width:5.333333pt;}
.fs1_c00412{font-size:37.333333pt;}
.fs0_c00412{font-size:53.333333pt;}
.fs3_c00412{font-size:64.000000pt;}
.fs4_c00412{font-size:106.666667pt;}
.fs2_c00412{font-size:320.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y1_c00412{bottom:36.666667pt;}
.y9_c00412{bottom:510.498400pt;}
.y8_c00412{bottom:529.170400pt;}
.y7_c00412{bottom:547.842400pt;}
.y6_c00412{bottom:590.514400pt;}
.y5_c00412{bottom:609.186400pt;}
.y4_c00412{bottom:627.858400pt;}
.y3_c00412{bottom:669.186400pt;}
.yd_c00412{bottom:814.519733pt;}
.yc_c00412{bottom:841.186400pt;}
.yb_c00412{bottom:867.853067pt;}
.ya_c00412{bottom:894.519733pt;}
.y2_c00412{bottom:972.023733pt;}
.h2_c00412{height:48.000000pt;}
.h5_c00412{height:57.600000pt;}
.h4_c00412{height:59.072000pt;}
.h6_c00412{height:99.733333pt;}
.h3_c00412{height:288.000000pt;}
.h0_c00412{height:1122.520000pt;}
.h1_c00412{height:1122.666667pt;}
.w0_c00412{width:793.701333pt;}
.w1_c00412{width:794.000000pt;}
.x0_c00412{left:0.000000pt;}
.x2_c00412{left:72.258000pt;}
.x3_c00412{left:73.238800pt;}
.x5_c00412{left:99.811067pt;}
.x4_c00412{left:113.238800pt;}
.x1_c00412{left:701.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls5_c00413{letter-spacing:-0.540000px;}
.ls4_c00413{letter-spacing:0.000000px;}
.ls0_c00413{letter-spacing:0.720000px;}
.ls1_c00413{letter-spacing:0.840000px;}
.ls3_c00413{letter-spacing:1.500000px;}
.ls2_c00413{letter-spacing:1.650000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00413{word-spacing:-21.060000px;}
.ws2_c00413{word-spacing:-17.640000px;}
.ws0_c00413{word-spacing:-10.200000px;}
.ws5_c00413{word-spacing:-3.960000px;}
.ws13_c00413{word-spacing:-3.816000px;}
.ws15_c00413{word-spacing:-1.500000px;}
.ws14_c00413{word-spacing:-1.260000px;}
.ws4_c00413{word-spacing:-0.840000px;}
.wsb_c00413{word-spacing:-0.720000px;}
.wse_c00413{word-spacing:-0.144000px;}
.ws3_c00413{word-spacing:0.000000px;}
.ws10_c00413{word-spacing:0.144000px;}
.ws12_c00413{word-spacing:0.576000px;}
.ws9_c00413{word-spacing:0.648000px;}
.ws6_c00413{word-spacing:1.224000px;}
.ws7_c00413{word-spacing:2.376000px;}
.wsa_c00413{word-spacing:4.824000px;}
.ws11_c00413{word-spacing:5.904000px;}
.ws8_c00413{word-spacing:6.696000px;}
.wsd_c00413{word-spacing:8.136000px;}
.wsf_c00413{word-spacing:9.072000px;}
.wsc_c00413{word-spacing:15.192000px;}
._0_c00413{margin-left:-480.337200px;}
._1_c00413{margin-left:-4.200000px;}
._4_c00413{margin-left:-2.563200px;}
._2_c00413{margin-left:-1.440000px;}
._3_c00413{width:1.123200px;}
._5_c00413{width:3.895200px;}
.fc3_c00413{color:rgb(32,32,32);}
.fc2_c00413{color:rgb(233,83,14);}
.fc1_c00413{color:rgb(232,86,17);}
.fc4_c00413{color:rgb(157,157,156);}
.fc0_c00413{color:rgb(60,60,59);}
.fs1_c00413{font-size:42.000000px;}
.fs0_c00413{font-size:60.000000px;}
.fs5_c00413{font-size:66.000000px;}
.fs4_c00413{font-size:72.000000px;}
.fs3_c00413{font-size:84.000000px;}
.fs2_c00413{font-size:108.000000px;}
.y0_c00413{bottom:0.000000px;}
.y1_c00413{bottom:41.250000px;}
.y16_c00413{bottom:226.310700px;}
.y15_c00413{bottom:256.316700px;}
.y14_c00413{bottom:286.322700px;}
.y13_c00413{bottom:316.328700px;}
.y12_c00413{bottom:346.334700px;}
.y11_c00413{bottom:406.334700px;}
.y10_c00413{bottom:496.262700px;}
.yf_c00413{bottom:526.268700px;}
.ye_c00413{bottom:556.274700px;}
.yd_c00413{bottom:586.280700px;}
.yc_c00413{bottom:616.286700px;}
.yb_c00413{bottom:646.292700px;}
.ya_c00413{bottom:676.298700px;}
.y9_c00413{bottom:706.304700px;}
.y8_c00413{bottom:736.310700px;}
.y1b_c00413{bottom:736.334700px;}
.y7_c00413{bottom:766.316700px;}
.y1a_c00413{bottom:766.334700px;}
.y6_c00413{bottom:796.322700px;}
.y19_c00413{bottom:796.334700px;}
.y5_c00413{bottom:826.328700px;}
.y18_c00413{bottom:826.334700px;}
.y4_c00413{bottom:856.334700px;}
.y17_c00413{bottom:856.376100px;}
.y3_c00413{bottom:916.334700px;}
.y2_c00413{bottom:1006.334700px;}
.h6_c00413{height:50.292000px;}
.h2_c00413{height:54.000000px;}
.h5_c00413{height:64.800000px;}
.h4_c00413{height:78.540000px;}
.h3_c00413{height:100.980000px;}
.h0_c00413{height:1262.835000px;}
.h1_c00413{height:1263.000000px;}
.w0_c00413{width:892.914000px;}
.w1_c00413{width:893.250000px;}
.x0_c00413{left:0.000000px;}
.x2_c00413{left:82.500000px;}
.x3_c00413{left:90.000000px;}
.x4_c00413{left:106.500000px;}
.x5_c00413{left:675.611100px;}
.x1_c00413{left:788.363850px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls5_c00413{letter-spacing:-0.480000pt;}
.ls4_c00413{letter-spacing:0.000000pt;}
.ls0_c00413{letter-spacing:0.640000pt;}
.ls1_c00413{letter-spacing:0.746667pt;}
.ls3_c00413{letter-spacing:1.333333pt;}
.ls2_c00413{letter-spacing:1.466667pt;}
.ws1_c00413{word-spacing:-18.720000pt;}
.ws2_c00413{word-spacing:-15.680000pt;}
.ws0_c00413{word-spacing:-9.066667pt;}
.ws5_c00413{word-spacing:-3.520000pt;}
.ws13_c00413{word-spacing:-3.392000pt;}
.ws15_c00413{word-spacing:-1.333333pt;}
.ws14_c00413{word-spacing:-1.120000pt;}
.ws4_c00413{word-spacing:-0.746667pt;}
.wsb_c00413{word-spacing:-0.640000pt;}
.wse_c00413{word-spacing:-0.128000pt;}
.ws3_c00413{word-spacing:0.000000pt;}
.ws10_c00413{word-spacing:0.128000pt;}
.ws12_c00413{word-spacing:0.512000pt;}
.ws9_c00413{word-spacing:0.576000pt;}
.ws6_c00413{word-spacing:1.088000pt;}
.ws7_c00413{word-spacing:2.112000pt;}
.wsa_c00413{word-spacing:4.288000pt;}
.ws11_c00413{word-spacing:5.248000pt;}
.ws8_c00413{word-spacing:5.952000pt;}
.wsd_c00413{word-spacing:7.232000pt;}
.wsf_c00413{word-spacing:8.064000pt;}
.wsc_c00413{word-spacing:13.504000pt;}
._0_c00413{margin-left:-426.966400pt;}
._1_c00413{margin-left:-3.733333pt;}
._4_c00413{margin-left:-2.278400pt;}
._2_c00413{margin-left:-1.280000pt;}
._3_c00413{width:0.998400pt;}
._5_c00413{width:3.462400pt;}
.fs1_c00413{font-size:37.333333pt;}
.fs0_c00413{font-size:53.333333pt;}
.fs5_c00413{font-size:58.666667pt;}
.fs4_c00413{font-size:64.000000pt;}
.fs3_c00413{font-size:74.666667pt;}
.fs2_c00413{font-size:96.000000pt;}
.y0_c00413{bottom:0.000000pt;}
.y1_c00413{bottom:36.666667pt;}
.y16_c00413{bottom:201.165067pt;}
.y15_c00413{bottom:227.837067pt;}
.y14_c00413{bottom:254.509067pt;}
.y13_c00413{bottom:281.181067pt;}
.y12_c00413{bottom:307.853067pt;}
.y11_c00413{bottom:361.186400pt;}
.y10_c00413{bottom:441.122400pt;}
.yf_c00413{bottom:467.794400pt;}
.ye_c00413{bottom:494.466400pt;}
.yd_c00413{bottom:521.138400pt;}
.yc_c00413{bottom:547.810400pt;}
.yb_c00413{bottom:574.482400pt;}
.ya_c00413{bottom:601.154400pt;}
.y9_c00413{bottom:627.826400pt;}
.y8_c00413{bottom:654.498400pt;}
.y1b_c00413{bottom:654.519733pt;}
.y7_c00413{bottom:681.170400pt;}
.y1a_c00413{bottom:681.186400pt;}
.y6_c00413{bottom:707.842400pt;}
.y19_c00413{bottom:707.853067pt;}
.y5_c00413{bottom:734.514400pt;}
.y18_c00413{bottom:734.519733pt;}
.y4_c00413{bottom:761.186400pt;}
.y17_c00413{bottom:761.223200pt;}
.y3_c00413{bottom:814.519733pt;}
.y2_c00413{bottom:894.519733pt;}
.h6_c00413{height:44.704000pt;}
.h2_c00413{height:48.000000pt;}
.h5_c00413{height:57.600000pt;}
.h4_c00413{height:69.813333pt;}
.h3_c00413{height:89.760000pt;}
.h0_c00413{height:1122.520000pt;}
.h1_c00413{height:1122.666667pt;}
.w0_c00413{width:793.701333pt;}
.w1_c00413{width:794.000000pt;}
.x0_c00413{left:0.000000pt;}
.x2_c00413{left:73.333333pt;}
.x3_c00413{left:80.000000pt;}
.x4_c00413{left:94.666667pt;}
.x5_c00413{left:600.543200pt;}
.x1_c00413{left:700.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls1_c00414{letter-spacing:0.000000px;}
.ls0_c00414{letter-spacing:0.720000px;}
.ls2_c00414{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws8_c00414{word-spacing:-3.384000px;}
.ws5_c00414{word-spacing:-2.520000px;}
.ws7_c00414{word-spacing:-2.232000px;}
.ws2_c00414{word-spacing:-0.840000px;}
.ws1_c00414{word-spacing:0.000000px;}
.ws6_c00414{word-spacing:0.072000px;}
.ws3_c00414{word-spacing:0.648000px;}
.ws4_c00414{word-spacing:3.384000px;}
.ws9_c00414{word-spacing:3.744000px;}
.wsa_c00414{word-spacing:7.488000px;}
._0_c00414{margin-left:-480.337200px;}
._4_c00414{margin-left:-6.655200px;}
._1_c00414{margin-left:-4.200000px;}
._3_c00414{margin-left:-2.755200px;}
._2_c00414{margin-left:-1.389600px;}
._5_c00414{width:2.008800px;}
.fc2_c00414{color:rgb(32,32,32);}
.fc1_c00414{color:rgb(232,86,17);}
.fc0_c00414{color:rgb(60,60,59);}
.fs1_c00414{font-size:42.000000px;}
.fs0_c00414{font-size:60.000000px;}
.fs3_c00414{font-size:72.000000px;}
.fs2_c00414{font-size:84.000000px;}
.y0_c00414{bottom:0.000000px;}
.y1_c00414{bottom:41.250000px;}
.yf_c00414{bottom:406.316700px;}
.ye_c00414{bottom:436.322700px;}
.yd_c00414{bottom:466.328700px;}
.yc_c00414{bottom:496.334700px;}
.yb_c00414{bottom:556.334700px;}
.ya_c00414{bottom:646.316700px;}
.y9_c00414{bottom:676.322700px;}
.y8_c00414{bottom:706.328700px;}
.y7_c00414{bottom:736.334700px;}
.y6_c00414{bottom:796.334700px;}
.y5_c00414{bottom:886.322700px;}
.y4_c00414{bottom:916.328700px;}
.y3_c00414{bottom:946.334700px;}
.y2_c00414{bottom:1006.334700px;}
.h2_c00414{height:54.000000px;}
.h4_c00414{height:64.800000px;}
.h3_c00414{height:78.540000px;}
.h0_c00414{height:1262.835000px;}
.h1_c00414{height:1263.000000px;}
.w0_c00414{width:892.914000px;}
.w1_c00414{width:893.250000px;}
.x0_c00414{left:0.000000px;}
.x2_c00414{left:90.000000px;}
.x3_c00414{left:106.500000px;}
.x1_c00414{left:789.413850px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls1_c00414{letter-spacing:0.000000pt;}
.ls0_c00414{letter-spacing:0.640000pt;}
.ls2_c00414{letter-spacing:0.746667pt;}
.ws0_c00414{word-spacing:-9.066667pt;}
.ws8_c00414{word-spacing:-3.008000pt;}
.ws5_c00414{word-spacing:-2.240000pt;}
.ws7_c00414{word-spacing:-1.984000pt;}
.ws2_c00414{word-spacing:-0.746667pt;}
.ws1_c00414{word-spacing:0.000000pt;}
.ws6_c00414{word-spacing:0.064000pt;}
.ws3_c00414{word-spacing:0.576000pt;}
.ws4_c00414{word-spacing:3.008000pt;}
.ws9_c00414{word-spacing:3.328000pt;}
.wsa_c00414{word-spacing:6.656000pt;}
._0_c00414{margin-left:-426.966400pt;}
._4_c00414{margin-left:-5.915733pt;}
._1_c00414{margin-left:-3.733333pt;}
._3_c00414{margin-left:-2.449067pt;}
._2_c00414{margin-left:-1.235200pt;}
._5_c00414{width:1.785600pt;}
.fs1_c00414{font-size:37.333333pt;}
.fs0_c00414{font-size:53.333333pt;}
.fs3_c00414{font-size:64.000000pt;}
.fs2_c00414{font-size:74.666667pt;}
.y0_c00414{bottom:0.000000pt;}
.y1_c00414{bottom:36.666667pt;}
.yf_c00414{bottom:361.170400pt;}
.ye_c00414{bottom:387.842400pt;}
.yd_c00414{bottom:414.514400pt;}
.yc_c00414{bottom:441.186400pt;}
.yb_c00414{bottom:494.519733pt;}
.ya_c00414{bottom:574.503733pt;}
.y9_c00414{bottom:601.175733pt;}
.y8_c00414{bottom:627.847733pt;}
.y7_c00414{bottom:654.519733pt;}
.y6_c00414{bottom:707.853067pt;}
.y5_c00414{bottom:787.842400pt;}
.y4_c00414{bottom:814.514400pt;}
.y3_c00414{bottom:841.186400pt;}
.y2_c00414{bottom:894.519733pt;}
.h2_c00414{height:48.000000pt;}
.h4_c00414{height:57.600000pt;}
.h3_c00414{height:69.813333pt;}
.h0_c00414{height:1122.520000pt;}
.h1_c00414{height:1122.666667pt;}
.w0_c00414{width:793.701333pt;}
.w1_c00414{width:794.000000pt;}
.x0_c00414{left:0.000000pt;}
.x2_c00414{left:80.000000pt;}
.x3_c00414{left:94.666667pt;}
.x1_c00414{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_687f4f7c0414ae5fc6b8f254.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00415;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls5_c00415{letter-spacing:-0.324000px;}
.ls4_c00415{letter-spacing:0.000000px;}
.ls0_c00415{letter-spacing:0.720000px;}
.ls1_c00415{letter-spacing:0.840000px;}
.ls3_c00415{letter-spacing:1.500000px;}
.ls2_c00415{letter-spacing:1.650000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00415{word-spacing:-21.276000px;}
.ws2_c00415{word-spacing:-17.640000px;}
.ws3_c00415{word-spacing:-14.850000px;}
.ws0_c00415{word-spacing:-10.200000px;}
.wsd_c00415{word-spacing:-6.048000px;}
.ws6_c00415{word-spacing:-2.448000px;}
.ws15_c00415{word-spacing:-1.500000px;}
.ws5_c00415{word-spacing:-0.840000px;}
.wsc_c00415{word-spacing:-0.432000px;}
.ws13_c00415{word-spacing:-0.360000px;}
.ws4_c00415{word-spacing:0.000000px;}
.ws11_c00415{word-spacing:0.576000px;}
.wsb_c00415{word-spacing:1.008000px;}
.ws9_c00415{word-spacing:1.152000px;}
.ws10_c00415{word-spacing:2.160000px;}
.wse_c00415{word-spacing:2.232000px;}
.ws7_c00415{word-spacing:2.448000px;}
.wsa_c00415{word-spacing:3.312000px;}
.ws8_c00415{word-spacing:5.832000px;}
.ws14_c00415{word-spacing:6.336000px;}
.wsf_c00415{word-spacing:6.480000px;}
.ws12_c00415{word-spacing:10.944000px;}
._0_c00415{margin-left:-480.337200px;}
._6_c00415{margin-left:-7.560000px;}
._7_c00415{margin-left:-6.480000px;}
._1_c00415{margin-left:-4.200000px;}
._3_c00415{margin-left:-2.152800px;}
._2_c00415{margin-left:-1.134000px;}
._5_c00415{width:1.605600px;}
._4_c00415{width:2.930400px;}
._8_c00415{width:4.197600px;}
.fc3_c00415{color:rgb(32,32,32);}
.fc2_c00415{color:rgb(233,83,14);}
.fc1_c00415{color:rgb(232,86,17);}
.fc4_c00415{color:rgb(157,157,156);}
.fc0_c00415{color:rgb(60,60,59);}
.fs1_c00415{font-size:42.000000px;}
.fs0_c00415{font-size:60.000000px;}
.fs5_c00415{font-size:66.000000px;}
.fs4_c00415{font-size:72.000000px;}
.fs3_c00415{font-size:84.000000px;}
.fs2_c00415{font-size:108.000000px;}
.y0_c00415{bottom:0.000000px;}
.y1_c00415{bottom:41.250000px;}
.y15_c00415{bottom:256.310700px;}
.y14_c00415{bottom:286.316700px;}
.y13_c00415{bottom:316.322700px;}
.y12_c00415{bottom:346.328700px;}
.y11_c00415{bottom:376.334700px;}
.y10_c00415{bottom:436.334700px;}
.yf_c00415{bottom:526.268700px;}
.ye_c00415{bottom:556.274700px;}
.yd_c00415{bottom:586.280700px;}
.yc_c00415{bottom:616.286700px;}
.yb_c00415{bottom:646.292700px;}
.ya_c00415{bottom:676.298700px;}
.y9_c00415{bottom:706.304700px;}
.y1b_c00415{bottom:706.334700px;}
.y8_c00415{bottom:736.310700px;}
.y1a_c00415{bottom:736.334700px;}
.y7_c00415{bottom:766.316700px;}
.y19_c00415{bottom:766.334700px;}
.y6_c00415{bottom:796.322700px;}
.y18_c00415{bottom:796.334700px;}
.y5_c00415{bottom:826.328700px;}
.y17_c00415{bottom:826.334700px;}
.y4_c00415{bottom:856.334700px;}
.y16_c00415{bottom:856.376100px;}
.y3_c00415{bottom:916.334700px;}
.y2_c00415{bottom:1006.334700px;}
.h6_c00415{height:50.292000px;}
.h2_c00415{height:54.000000px;}
.h5_c00415{height:64.800000px;}
.h4_c00415{height:78.540000px;}
.h3_c00415{height:100.980000px;}
.h0_c00415{height:1262.835000px;}
.h1_c00415{height:1263.000000px;}
.w0_c00415{width:892.914000px;}
.w1_c00415{width:893.250000px;}
.x0_c00415{left:0.000000px;}
.x2_c00415{left:82.500000px;}
.x3_c00415{left:90.000000px;}
.x4_c00415{left:106.500000px;}
.x5_c00415{left:675.611100px;}
.x1_c00415{left:788.288850px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls5_c00415{letter-spacing:-0.288000pt;}
.ls4_c00415{letter-spacing:0.000000pt;}
.ls0_c00415{letter-spacing:0.640000pt;}
.ls1_c00415{letter-spacing:0.746667pt;}
.ls3_c00415{letter-spacing:1.333333pt;}
.ls2_c00415{letter-spacing:1.466667pt;}
.ws1_c00415{word-spacing:-18.912000pt;}
.ws2_c00415{word-spacing:-15.680000pt;}
.ws3_c00415{word-spacing:-13.200000pt;}
.ws0_c00415{word-spacing:-9.066667pt;}
.wsd_c00415{word-spacing:-5.376000pt;}
.ws6_c00415{word-spacing:-2.176000pt;}
.ws15_c00415{word-spacing:-1.333333pt;}
.ws5_c00415{word-spacing:-0.746667pt;}
.wsc_c00415{word-spacing:-0.384000pt;}
.ws13_c00415{word-spacing:-0.320000pt;}
.ws4_c00415{word-spacing:0.000000pt;}
.ws11_c00415{word-spacing:0.512000pt;}
.wsb_c00415{word-spacing:0.896000pt;}
.ws9_c00415{word-spacing:1.024000pt;}
.ws10_c00415{word-spacing:1.920000pt;}
.wse_c00415{word-spacing:1.984000pt;}
.ws7_c00415{word-spacing:2.176000pt;}
.wsa_c00415{word-spacing:2.944000pt;}
.ws8_c00415{word-spacing:5.184000pt;}
.ws14_c00415{word-spacing:5.632000pt;}
.wsf_c00415{word-spacing:5.760000pt;}
.ws12_c00415{word-spacing:9.728000pt;}
._0_c00415{margin-left:-426.966400pt;}
._6_c00415{margin-left:-6.720000pt;}
._7_c00415{margin-left:-5.760000pt;}
._1_c00415{margin-left:-3.733333pt;}
._3_c00415{margin-left:-1.913600pt;}
._2_c00415{margin-left:-1.008000pt;}
._5_c00415{width:1.427200pt;}
._4_c00415{width:2.604800pt;}
._8_c00415{width:3.731200pt;}
.fs1_c00415{font-size:37.333333pt;}
.fs0_c00415{font-size:53.333333pt;}
.fs5_c00415{font-size:58.666667pt;}
.fs4_c00415{font-size:64.000000pt;}
.fs3_c00415{font-size:74.666667pt;}
.fs2_c00415{font-size:96.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y1_c00415{bottom:36.666667pt;}
.y15_c00415{bottom:227.831733pt;}
.y14_c00415{bottom:254.503733pt;}
.y13_c00415{bottom:281.175733pt;}
.y12_c00415{bottom:307.847733pt;}
.y11_c00415{bottom:334.519733pt;}
.y10_c00415{bottom:387.853067pt;}
.yf_c00415{bottom:467.794400pt;}
.ye_c00415{bottom:494.466400pt;}
.yd_c00415{bottom:521.138400pt;}
.yc_c00415{bottom:547.810400pt;}
.yb_c00415{bottom:574.482400pt;}
.ya_c00415{bottom:601.154400pt;}
.y9_c00415{bottom:627.826400pt;}
.y1b_c00415{bottom:627.853067pt;}
.y8_c00415{bottom:654.498400pt;}
.y1a_c00415{bottom:654.519733pt;}
.y7_c00415{bottom:681.170400pt;}
.y19_c00415{bottom:681.186400pt;}
.y6_c00415{bottom:707.842400pt;}
.y18_c00415{bottom:707.853067pt;}
.y5_c00415{bottom:734.514400pt;}
.y17_c00415{bottom:734.519733pt;}
.y4_c00415{bottom:761.186400pt;}
.y16_c00415{bottom:761.223200pt;}
.y3_c00415{bottom:814.519733pt;}
.y2_c00415{bottom:894.519733pt;}
.h6_c00415{height:44.704000pt;}
.h2_c00415{height:48.000000pt;}
.h5_c00415{height:57.600000pt;}
.h4_c00415{height:69.813333pt;}
.h3_c00415{height:89.760000pt;}
.h0_c00415{height:1122.520000pt;}
.h1_c00415{height:1122.666667pt;}
.w0_c00415{width:793.701333pt;}
.w1_c00415{width:794.000000pt;}
.x0_c00415{left:0.000000pt;}
.x2_c00415{left:73.333333pt;}
.x3_c00415{left:80.000000pt;}
.x4_c00415{left:94.666667pt;}
.x5_c00415{left:600.543200pt;}
.x1_c00415{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.199000;font-style: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);}
.m1_c00416{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls1_c00416{letter-spacing:0.000000px;}
.ls0_c00416{letter-spacing:0.720000px;}
.ls2_c00416{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00416{word-spacing:-0.840000px;}
.ws9_c00416{word-spacing:-0.504000px;}
.ws8_c00416{word-spacing:-0.216000px;}
.ws1_c00416{word-spacing:0.000000px;}
.ws7_c00416{word-spacing:1.008000px;}
.ws4_c00416{word-spacing:1.728000px;}
.ws6_c00416{word-spacing:4.032000px;}
.ws3_c00416{word-spacing:6.336000px;}
.ws5_c00416{word-spacing:14.328000px;}
._0_c00416{margin-left:-480.337200px;}
._1_c00416{margin-left:-4.200000px;}
._3_c00416{margin-left:-2.611200px;}
._2_c00416{margin-left:-1.440000px;}
._4_c00416{width:2.428800px;}
.fc2_c00416{color:rgb(32,32,32);}
.fc1_c00416{color:rgb(232,86,17);}
.fc0_c00416{color:rgb(60,60,59);}
.fs1_c00416{font-size:42.000000px;}
.fs0_c00416{font-size:60.000000px;}
.fs3_c00416{font-size:72.000000px;}
.fs2_c00416{font-size:84.000000px;}
.y0_c00416{bottom:0.000000px;}
.y1_c00416{bottom:41.250000px;}
.ye_c00416{bottom:436.322700px;}
.yd_c00416{bottom:466.328700px;}
.yc_c00416{bottom:496.334700px;}
.yb_c00416{bottom:556.334700px;}
.ya_c00416{bottom:646.316700px;}
.y9_c00416{bottom:676.322700px;}
.y8_c00416{bottom:706.328700px;}
.y7_c00416{bottom:736.334700px;}
.y6_c00416{bottom:796.334700px;}
.y5_c00416{bottom:886.322700px;}
.y4_c00416{bottom:916.328700px;}
.y3_c00416{bottom:946.334700px;}
.y2_c00416{bottom:1006.334700px;}
.h2_c00416{height:54.000000px;}
.h4_c00416{height:64.800000px;}
.h3_c00416{height:78.540000px;}
.h0_c00416{height:1262.835000px;}
.h1_c00416{height:1263.000000px;}
.w0_c00416{width:892.914000px;}
.w1_c00416{width:893.250000px;}
.x0_c00416{left:0.000000px;}
.x2_c00416{left:90.000000px;}
.x3_c00416{left:106.500000px;}
.x1_c00416{left:790.388850px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls1_c00416{letter-spacing:0.000000pt;}
.ls0_c00416{letter-spacing:0.640000pt;}
.ls2_c00416{letter-spacing:0.746667pt;}
.ws0_c00416{word-spacing:-9.066667pt;}
.ws2_c00416{word-spacing:-0.746667pt;}
.ws9_c00416{word-spacing:-0.448000pt;}
.ws8_c00416{word-spacing:-0.192000pt;}
.ws1_c00416{word-spacing:0.000000pt;}
.ws7_c00416{word-spacing:0.896000pt;}
.ws4_c00416{word-spacing:1.536000pt;}
.ws6_c00416{word-spacing:3.584000pt;}
.ws3_c00416{word-spacing:5.632000pt;}
.ws5_c00416{word-spacing:12.736000pt;}
._0_c00416{margin-left:-426.966400pt;}
._1_c00416{margin-left:-3.733333pt;}
._3_c00416{margin-left:-2.321067pt;}
._2_c00416{margin-left:-1.280000pt;}
._4_c00416{width:2.158933pt;}
.fs1_c00416{font-size:37.333333pt;}
.fs0_c00416{font-size:53.333333pt;}
.fs3_c00416{font-size:64.000000pt;}
.fs2_c00416{font-size:74.666667pt;}
.y0_c00416{bottom:0.000000pt;}
.y1_c00416{bottom:36.666667pt;}
.ye_c00416{bottom:387.842400pt;}
.yd_c00416{bottom:414.514400pt;}
.yc_c00416{bottom:441.186400pt;}
.yb_c00416{bottom:494.519733pt;}
.ya_c00416{bottom:574.503733pt;}
.y9_c00416{bottom:601.175733pt;}
.y8_c00416{bottom:627.847733pt;}
.y7_c00416{bottom:654.519733pt;}
.y6_c00416{bottom:707.853067pt;}
.y5_c00416{bottom:787.842400pt;}
.y4_c00416{bottom:814.514400pt;}
.y3_c00416{bottom:841.186400pt;}
.y2_c00416{bottom:894.519733pt;}
.h2_c00416{height:48.000000pt;}
.h4_c00416{height:57.600000pt;}
.h3_c00416{height:69.813333pt;}
.h0_c00416{height:1122.520000pt;}
.h1_c00416{height:1122.666667pt;}
.w0_c00416{width:793.701333pt;}
.w1_c00416{width:794.000000pt;}
.x0_c00416{left:0.000000pt;}
.x2_c00416{left:80.000000pt;}
.x3_c00416{left:94.666667pt;}
.x1_c00416{left:702.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00417;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls2_c00417{letter-spacing:0.000000px;}
.ls0_c00417{letter-spacing:0.864000px;}
.ls1_c00417{letter-spacing:1.200000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00417{word-spacing:-13.104000px;}
.ws6_c00417{word-spacing:-11.664000px;}
.ws0_c00417{word-spacing:-10.200000px;}
.wsa_c00417{word-spacing:-8.400000px;}
.ws7_c00417{word-spacing:-8.352000px;}
.ws8_c00417{word-spacing:-6.840000px;}
.ws3_c00417{word-spacing:-5.904000px;}
.ws5_c00417{word-spacing:-2.952000px;}
.ws9_c00417{word-spacing:-2.400000px;}
.ws4_c00417{word-spacing:-0.864000px;}
.ws2_c00417{word-spacing:0.000000px;}
._0_c00417{margin-left:-480.337200px;}
._3_c00417{margin-left:-11.664000px;}
._7_c00417{margin-left:-6.960000px;}
._1_c00417{margin-left:-4.200000px;}
._8_c00417{margin-left:-3.000000px;}
._2_c00417{margin-left:-1.440000px;}
._6_c00417{width:5.328000px;}
._5_c00417{width:8.352000px;}
._4_c00417{width:11.664000px;}
.fc3_c00417{color:rgb(255,255,255);}
.fc2_c00417{color:rgb(233,83,14);}
.fc1_c00417{color:rgb(232,86,17);}
.fc0_c00417{color:rgb(60,60,59);}
.fs1_c00417{font-size:42.000000px;}
.fs0_c00417{font-size:60.000000px;}
.fs3_c00417{font-size:72.000000px;}
.fs4_c00417{font-size:120.000000px;}
.fs2_c00417{font-size:360.000000px;}
.y0_c00417{bottom:0.000000px;}
.y1_c00417{bottom:41.250000px;}
.y13_c00417{bottom:283.250700px;}
.y12_c00417{bottom:304.256700px;}
.y11_c00417{bottom:325.262700px;}
.y10_c00417{bottom:346.268700px;}
.yf_c00417{bottom:403.274700px;}
.ye_c00417{bottom:424.280700px;}
.yd_c00417{bottom:445.286700px;}
.yc_c00417{bottom:466.292700px;}
.yb_c00417{bottom:523.298700px;}
.ya_c00417{bottom:544.304700px;}
.y9_c00417{bottom:565.310700px;}
.y8_c00417{bottom:586.316700px;}
.y7_c00417{bottom:643.322700px;}
.y6_c00417{bottom:664.328700px;}
.y5_c00417{bottom:685.334700px;}
.y4_c00417{bottom:706.340700px;}
.y3_c00417{bottom:752.834700px;}
.y18_c00417{bottom:886.334700px;}
.y17_c00417{bottom:916.334700px;}
.y16_c00417{bottom:946.334700px;}
.y15_c00417{bottom:976.334700px;}
.y14_c00417{bottom:1006.334700px;}
.y2_c00417{bottom:1093.526700px;}
.h2_c00417{height:54.000000px;}
.h5_c00417{height:64.800000px;}
.h4_c00417{height:66.456000px;}
.h6_c00417{height:112.200000px;}
.h3_c00417{height:324.000000px;}
.h0_c00417{height:1262.835000px;}
.h1_c00417{height:1263.000000px;}
.w0_c00417{width:892.914000px;}
.w1_c00417{width:893.250000px;}
.x0_c00417{left:0.000000px;}
.x2_c00417{left:81.290250px;}
.x3_c00417{left:82.393650px;}
.x5_c00417{left:112.287450px;}
.x4_c00417{left:127.393650px;}
.x1_c00417{left:788.363850px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls2_c00417{letter-spacing:0.000000pt;}
.ls0_c00417{letter-spacing:0.768000pt;}
.ls1_c00417{letter-spacing:1.066667pt;}
.ws1_c00417{word-spacing:-11.648000pt;}
.ws6_c00417{word-spacing:-10.368000pt;}
.ws0_c00417{word-spacing:-9.066667pt;}
.wsa_c00417{word-spacing:-7.466667pt;}
.ws7_c00417{word-spacing:-7.424000pt;}
.ws8_c00417{word-spacing:-6.080000pt;}
.ws3_c00417{word-spacing:-5.248000pt;}
.ws5_c00417{word-spacing:-2.624000pt;}
.ws9_c00417{word-spacing:-2.133333pt;}
.ws4_c00417{word-spacing:-0.768000pt;}
.ws2_c00417{word-spacing:0.000000pt;}
._0_c00417{margin-left:-426.966400pt;}
._3_c00417{margin-left:-10.368000pt;}
._7_c00417{margin-left:-6.186667pt;}
._1_c00417{margin-left:-3.733333pt;}
._8_c00417{margin-left:-2.666667pt;}
._2_c00417{margin-left:-1.280000pt;}
._6_c00417{width:4.736000pt;}
._5_c00417{width:7.424000pt;}
._4_c00417{width:10.368000pt;}
.fs1_c00417{font-size:37.333333pt;}
.fs0_c00417{font-size:53.333333pt;}
.fs3_c00417{font-size:64.000000pt;}
.fs4_c00417{font-size:106.666667pt;}
.fs2_c00417{font-size:320.000000pt;}
.y0_c00417{bottom:0.000000pt;}
.y1_c00417{bottom:36.666667pt;}
.y13_c00417{bottom:251.778400pt;}
.y12_c00417{bottom:270.450400pt;}
.y11_c00417{bottom:289.122400pt;}
.y10_c00417{bottom:307.794400pt;}
.yf_c00417{bottom:358.466400pt;}
.ye_c00417{bottom:377.138400pt;}
.yd_c00417{bottom:395.810400pt;}
.yc_c00417{bottom:414.482400pt;}
.yb_c00417{bottom:465.154400pt;}
.ya_c00417{bottom:483.826400pt;}
.y9_c00417{bottom:502.498400pt;}
.y8_c00417{bottom:521.170400pt;}
.y7_c00417{bottom:571.842400pt;}
.y6_c00417{bottom:590.514400pt;}
.y5_c00417{bottom:609.186400pt;}
.y4_c00417{bottom:627.858400pt;}
.y3_c00417{bottom:669.186400pt;}
.y18_c00417{bottom:787.853067pt;}
.y17_c00417{bottom:814.519733pt;}
.y16_c00417{bottom:841.186400pt;}
.y15_c00417{bottom:867.853067pt;}
.y14_c00417{bottom:894.519733pt;}
.y2_c00417{bottom:972.023733pt;}
.h2_c00417{height:48.000000pt;}
.h5_c00417{height:57.600000pt;}
.h4_c00417{height:59.072000pt;}
.h6_c00417{height:99.733333pt;}
.h3_c00417{height:288.000000pt;}
.h0_c00417{height:1122.520000pt;}
.h1_c00417{height:1122.666667pt;}
.w0_c00417{width:793.701333pt;}
.w1_c00417{width:794.000000pt;}
.x0_c00417{left:0.000000pt;}
.x2_c00417{left:72.258000pt;}
.x3_c00417{left:73.238800pt;}
.x5_c00417{left:99.811067pt;}
.x4_c00417{left:113.238800pt;}
.x1_c00417{left:700.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.199000;font-style:normal;font-weight:normal;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_04f83224438dcbc6fdc6b7ff.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00418;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:1.161000;font-style: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);}
.m1_c00418{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5_c00418{vertical-align:-12.000000px;}
.v2_c00418{vertical-align:-5.640000px;}
.v0_c00418{vertical-align:0.000000px;}
.v1_c00418{vertical-align:5.976000px;}
.v4_c00418{vertical-align:12.000000px;}
.v3_c00418{vertical-align:17.994000px;}
.ls8_c00418{letter-spacing:-0.540000px;}
.ls7_c00418{letter-spacing:0.000000px;}
.ls1_c00418{letter-spacing:0.420000px;}
.ls3_c00418{letter-spacing:0.702600px;}
.ls2_c00418{letter-spacing:0.708000px;}
.ls4_c00418{letter-spacing:0.717600px;}
.ls0_c00418{letter-spacing:0.720000px;}
.ls6_c00418{letter-spacing:1.500000px;}
.ls5_c00418{letter-spacing:1.650000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00418{word-spacing:-21.060000px;}
.ws0_c00418{word-spacing:-10.200000px;}
.ws2_c00418{word-spacing:-7.560000px;}
.ws6_c00418{word-spacing:-5.616000px;}
.ws14_c00418{word-spacing:-4.536000px;}
.ws1b_c00418{word-spacing:-4.392000px;}
.ws19_c00418{word-spacing:-4.104000px;}
.wsb_c00418{word-spacing:-3.240000px;}
.ws15_c00418{word-spacing:-2.646000px;}
.ws22_c00418{word-spacing:-2.304000px;}
.ws1a_c00418{word-spacing:-2.226000px;}
.ws18_c00418{word-spacing:-2.088000px;}
.ws12_c00418{word-spacing:-1.512000px;}
.ws26_c00418{word-spacing:-1.500000px;}
.wsa_c00418{word-spacing:-0.936000px;}
.ws8_c00418{word-spacing:-0.864000px;}
.ws16_c00418{word-spacing:-0.720000px;}
.ws13_c00418{word-spacing:-0.420000px;}
.ws3_c00418{word-spacing:0.000000px;}
.ws1d_c00418{word-spacing:0.546000px;}
.ws7_c00418{word-spacing:0.648000px;}
.ws1e_c00418{word-spacing:0.936000px;}
.ws17_c00418{word-spacing:1.008000px;}
.ws23_c00418{word-spacing:1.224000px;}
.ws20_c00418{word-spacing:2.016000px;}
.ws1c_c00418{word-spacing:2.952000px;}
.ws9_c00418{word-spacing:3.024000px;}
.ws1f_c00418{word-spacing:3.456000px;}
.wsd_c00418{word-spacing:3.600000px;}
.wsf_c00418{word-spacing:5.472000px;}
.wse_c00418{word-spacing:6.192000px;}
.wsc_c00418{word-spacing:6.408000px;}
.ws4_c00418{word-spacing:6.840000px;}
.ws11_c00418{word-spacing:7.344000px;}
.ws25_c00418{word-spacing:7.560000px;}
.ws5_c00418{word-spacing:7.704000px;}
.ws24_c00418{word-spacing:7.920000px;}
.ws21_c00418{word-spacing:9.216000px;}
.ws10_c00418{word-spacing:10.584000px;}
._0_c00418{margin-left:-480.337200px;}
._6_c00418{margin-left:-6.955200px;}
._2_c00418{margin-left:-5.760000px;}
._1_c00418{margin-left:-4.200000px;}
._8_c00418{margin-left:-2.887200px;}
._4_c00418{margin-left:-1.735200px;}
._3_c00418{width:1.058400px;}
._7_c00418{width:2.664000px;}
._5_c00418{width:4.557600px;}
.fc4_c00418{color:rgb(33,33,33);}
.fc3_c00418{color:rgb(32,32,32);}
.fc2_c00418{color:rgb(233,83,14);}
.fc1_c00418{color:rgb(232,86,17);}
.fc5_c00418{color:rgb(157,157,156);}
.fc0_c00418{color:rgb(60,60,59);}
.fs1_c00418{font-size:42.000000px;}
.fs0_c00418{font-size:60.000000px;}
.fs4_c00418{font-size:66.000000px;}
.fs3_c00418{font-size:72.000000px;}
.fs2_c00418{font-size:108.000000px;}
.y0_c00418{bottom:0.000000px;}
.y1_c00418{bottom:41.250000px;}
.y1e_c00418{bottom:136.298700px;}
.y1d_c00418{bottom:166.304700px;}
.y1c_c00418{bottom:196.310700px;}
.y1b_c00418{bottom:226.316700px;}
.y1a_c00418{bottom:256.322700px;}
.y19_c00418{bottom:286.328700px;}
.y18_c00418{bottom:317.828700px;}
.y17_c00418{bottom:347.816700px;}
.y16_c00418{bottom:377.822700px;}
.y15_c00418{bottom:407.828700px;}
.y14_c00418{bottom:436.328700px;}
.y13_c00418{bottom:466.334700px;}
.y12_c00418{bottom:496.336200px;}
.y11_c00418{bottom:526.250700px;}
.y10_c00418{bottom:556.256700px;}
.yf_c00418{bottom:586.262700px;}
.ye_c00418{bottom:616.268700px;}
.yd_c00418{bottom:646.274700px;}
.yc_c00418{bottom:676.280700px;}
.yb_c00418{bottom:706.286700px;}
.ya_c00418{bottom:736.292700px;}
.y9_c00418{bottom:766.298700px;}
.y8_c00418{bottom:796.304700px;}
.y24_c00418{bottom:796.334700px;}
.y7_c00418{bottom:826.310700px;}
.y23_c00418{bottom:826.334700px;}
.y6_c00418{bottom:856.316700px;}
.y22_c00418{bottom:856.334700px;}
.y5_c00418{bottom:886.322700px;}
.y21_c00418{bottom:886.334700px;}
.y4_c00418{bottom:916.328700px;}
.y20_c00418{bottom:916.334700px;}
.y3_c00418{bottom:946.334700px;}
.y1f_c00418{bottom:946.376100px;}
.y2_c00418{bottom:1006.334700px;}
.ha_c00418{height:50.292000px;}
.h2_c00418{height:54.000000px;}
.h4_c00418{height:64.800000px;}
.h9_c00418{height:64.824000px;}
.h8_c00418{height:64.872000px;}
.h5_c00418{height:70.776000px;}
.h6_c00418{height:70.794000px;}
.h7_c00418{height:70.824000px;}
.h3_c00418{height:100.980000px;}
.h0_c00418{height:1262.835000px;}
.h1_c00418{height:1263.000000px;}
.w0_c00418{width:892.914000px;}
.w1_c00418{width:893.250000px;}
.x0_c00418{left:0.000000px;}
.x2_c00418{left:82.500000px;}
.x3_c00418{left:106.500000px;}
.x4_c00418{left:675.611100px;}
.x1_c00418{left:788.288850px;}
@media print{
.v5_c00418{vertical-align:-10.666667pt;}
.v2_c00418{vertical-align:-5.013333pt;}
.v0_c00418{vertical-align:0.000000pt;}
.v1_c00418{vertical-align:5.312000pt;}
.v4_c00418{vertical-align:10.666667pt;}
.v3_c00418{vertical-align:15.994667pt;}
.ls8_c00418{letter-spacing:-0.480000pt;}
.ls7_c00418{letter-spacing:0.000000pt;}
.ls1_c00418{letter-spacing:0.373333pt;}
.ls3_c00418{letter-spacing:0.624533pt;}
.ls2_c00418{letter-spacing:0.629333pt;}
.ls4_c00418{letter-spacing:0.637867pt;}
.ls0_c00418{letter-spacing:0.640000pt;}
.ls6_c00418{letter-spacing:1.333333pt;}
.ls5_c00418{letter-spacing:1.466667pt;}
.ws1_c00418{word-spacing:-18.720000pt;}
.ws0_c00418{word-spacing:-9.066667pt;}
.ws2_c00418{word-spacing:-6.720000pt;}
.ws6_c00418{word-spacing:-4.992000pt;}
.ws14_c00418{word-spacing:-4.032000pt;}
.ws1b_c00418{word-spacing:-3.904000pt;}
.ws19_c00418{word-spacing:-3.648000pt;}
.wsb_c00418{word-spacing:-2.880000pt;}
.ws15_c00418{word-spacing:-2.352000pt;}
.ws22_c00418{word-spacing:-2.048000pt;}
.ws1a_c00418{word-spacing:-1.978667pt;}
.ws18_c00418{word-spacing:-1.856000pt;}
.ws12_c00418{word-spacing:-1.344000pt;}
.ws26_c00418{word-spacing:-1.333333pt;}
.wsa_c00418{word-spacing:-0.832000pt;}
.ws8_c00418{word-spacing:-0.768000pt;}
.ws16_c00418{word-spacing:-0.640000pt;}
.ws13_c00418{word-spacing:-0.373333pt;}
.ws3_c00418{word-spacing:0.000000pt;}
.ws1d_c00418{word-spacing:0.485333pt;}
.ws7_c00418{word-spacing:0.576000pt;}
.ws1e_c00418{word-spacing:0.832000pt;}
.ws17_c00418{word-spacing:0.896000pt;}
.ws23_c00418{word-spacing:1.088000pt;}
.ws20_c00418{word-spacing:1.792000pt;}
.ws1c_c00418{word-spacing:2.624000pt;}
.ws9_c00418{word-spacing:2.688000pt;}
.ws1f_c00418{word-spacing:3.072000pt;}
.wsd_c00418{word-spacing:3.200000pt;}
.wsf_c00418{word-spacing:4.864000pt;}
.wse_c00418{word-spacing:5.504000pt;}
.wsc_c00418{word-spacing:5.696000pt;}
.ws4_c00418{word-spacing:6.080000pt;}
.ws11_c00418{word-spacing:6.528000pt;}
.ws25_c00418{word-spacing:6.720000pt;}
.ws5_c00418{word-spacing:6.848000pt;}
.ws24_c00418{word-spacing:7.040000pt;}
.ws21_c00418{word-spacing:8.192000pt;}
.ws10_c00418{word-spacing:9.408000pt;}
._0_c00418{margin-left:-426.966400pt;}
._6_c00418{margin-left:-6.182400pt;}
._2_c00418{margin-left:-5.120000pt;}
._1_c00418{margin-left:-3.733333pt;}
._8_c00418{margin-left:-2.566400pt;}
._4_c00418{margin-left:-1.542400pt;}
._3_c00418{width:0.940800pt;}
._7_c00418{width:2.368000pt;}
._5_c00418{width:4.051200pt;}
.fs1_c00418{font-size:37.333333pt;}
.fs0_c00418{font-size:53.333333pt;}
.fs4_c00418{font-size:58.666667pt;}
.fs3_c00418{font-size:64.000000pt;}
.fs2_c00418{font-size:96.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y1_c00418{bottom:36.666667pt;}
.y1e_c00418{bottom:121.154400pt;}
.y1d_c00418{bottom:147.826400pt;}
.y1c_c00418{bottom:174.498400pt;}
.y1b_c00418{bottom:201.170400pt;}
.y1a_c00418{bottom:227.842400pt;}
.y19_c00418{bottom:254.514400pt;}
.y18_c00418{bottom:282.514400pt;}
.y17_c00418{bottom:309.170400pt;}
.y16_c00418{bottom:335.842400pt;}
.y15_c00418{bottom:362.514400pt;}
.y14_c00418{bottom:387.847733pt;}
.y13_c00418{bottom:414.519733pt;}
.y12_c00418{bottom:441.187733pt;}
.y11_c00418{bottom:467.778400pt;}
.y10_c00418{bottom:494.450400pt;}
.yf_c00418{bottom:521.122400pt;}
.ye_c00418{bottom:547.794400pt;}
.yd_c00418{bottom:574.466400pt;}
.yc_c00418{bottom:601.138400pt;}
.yb_c00418{bottom:627.810400pt;}
.ya_c00418{bottom:654.482400pt;}
.y9_c00418{bottom:681.154400pt;}
.y8_c00418{bottom:707.826400pt;}
.y24_c00418{bottom:707.853067pt;}
.y7_c00418{bottom:734.498400pt;}
.y23_c00418{bottom:734.519733pt;}
.y6_c00418{bottom:761.170400pt;}
.y22_c00418{bottom:761.186400pt;}
.y5_c00418{bottom:787.842400pt;}
.y21_c00418{bottom:787.853067pt;}
.y4_c00418{bottom:814.514400pt;}
.y20_c00418{bottom:814.519733pt;}
.y3_c00418{bottom:841.186400pt;}
.y1f_c00418{bottom:841.223200pt;}
.y2_c00418{bottom:894.519733pt;}
.ha_c00418{height:44.704000pt;}
.h2_c00418{height:48.000000pt;}
.h4_c00418{height:57.600000pt;}
.h9_c00418{height:57.621333pt;}
.h8_c00418{height:57.664000pt;}
.h5_c00418{height:62.912000pt;}
.h6_c00418{height:62.928000pt;}
.h7_c00418{height:62.954667pt;}
.h3_c00418{height:89.760000pt;}
.h0_c00418{height:1122.520000pt;}
.h1_c00418{height:1122.666667pt;}
.w0_c00418{width:793.701333pt;}
.w1_c00418{width:794.000000pt;}
.x0_c00418{left:0.000000pt;}
.x2_c00418{left:73.333333pt;}
.x3_c00418{left:94.666667pt;}
.x4_c00418{left:600.543200pt;}
.x1_c00418{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d2b3a49cabb83f4fe7c44d3.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.199000;font-style:normal;font-weight:normal;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_04f83224438dcbc6fdc6b7ff.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00419;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff5_c00419{font-family:ff5_c00419;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.v1_c00419{vertical-align:5.976000px;}
.v2_c00419{vertical-align:12.360000px;}
.ls9_c00419{letter-spacing:-0.324000px;}
.ls8_c00419{letter-spacing:0.000000px;}
.ls2_c00419{letter-spacing:0.420000px;}
.ls5_c00419{letter-spacing:0.704400px;}
.ls3_c00419{letter-spacing:0.705600px;}
.ls0_c00419{letter-spacing:0.720000px;}
.ls4_c00419{letter-spacing:0.739200px;}
.ls1_c00419{letter-spacing:0.763200px;}
.ls7_c00419{letter-spacing:1.500000px;}
.ls6_c00419{letter-spacing:1.650000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00419{word-spacing:-21.276000px;}
.ws2_c00419{word-spacing:-14.850000px;}
.ws0_c00419{word-spacing:-10.200000px;}
.wsd_c00419{word-spacing:-3.888000px;}
.wsc_c00419{word-spacing:-3.096000px;}
.ws12_c00419{word-spacing:-2.016000px;}
.ws23_c00419{word-spacing:-1.500000px;}
.ws13_c00419{word-spacing:-0.504000px;}
.ws14_c00419{word-spacing:-0.294000px;}
.ws3_c00419{word-spacing:0.000000px;}
.ws17_c00419{word-spacing:0.648000px;}
.ws1c_c00419{word-spacing:0.672000px;}
.ws22_c00419{word-spacing:0.720000px;}
.ws1f_c00419{word-spacing:1.008000px;}
.ws1b_c00419{word-spacing:1.152000px;}
.ws19_c00419{word-spacing:1.296000px;}
.ws21_c00419{word-spacing:1.368000px;}
.ws18_c00419{word-spacing:2.310000px;}
.ws1e_c00419{word-spacing:3.780000px;}
.ws1d_c00419{word-spacing:4.104000px;}
.ws9_c00419{word-spacing:4.392000px;}
.ws11_c00419{word-spacing:5.112000px;}
.ws10_c00419{word-spacing:6.120000px;}
.wsb_c00419{word-spacing:6.192000px;}
.ws5_c00419{word-spacing:7.200000px;}
.ws1a_c00419{word-spacing:7.272000px;}
.ws8_c00419{word-spacing:8.928000px;}
.ws15_c00419{word-spacing:9.432000px;}
.wsa_c00419{word-spacing:11.952000px;}
.ws16_c00419{word-spacing:12.024000px;}
.ws4_c00419{word-spacing:13.104000px;}
.wsf_c00419{word-spacing:13.392000px;}
.ws7_c00419{word-spacing:13.752000px;}
.ws20_c00419{word-spacing:15.264000px;}
.wse_c00419{word-spacing:15.768000px;}
.ws6_c00419{word-spacing:32.040000px;}
._0_c00419{margin-left:-480.337200px;}
._4_c00419{margin-left:-5.760000px;}
._1_c00419{margin-left:-4.200000px;}
._3_c00419{margin-left:-2.480400px;}
._2_c00419{margin-left:-1.134000px;}
._6_c00419{width:1.213200px;}
._5_c00419{width:2.844000px;}
.fc4_c00419{color:rgb(33,33,33);}
.fc3_c00419{color:rgb(32,32,32);}
.fc2_c00419{color:rgb(233,83,14);}
.fc1_c00419{color:rgb(232,86,17);}
.fc5_c00419{color:rgb(157,157,156);}
.fc0_c00419{color:rgb(60,60,59);}
.fs1_c00419{font-size:42.000000px;}
.fs0_c00419{font-size:60.000000px;}
.fs4_c00419{font-size:66.000000px;}
.fs3_c00419{font-size:72.000000px;}
.fs2_c00419{font-size:108.000000px;}
.y0_c00419{bottom:0.000000px;}
.y1_c00419{bottom:41.250000px;}
.y1e_c00419{bottom:136.304700px;}
.y1d_c00419{bottom:166.310700px;}
.y1c_c00419{bottom:196.316700px;}
.y1b_c00419{bottom:226.322700px;}
.y1a_c00419{bottom:256.328700px;}
.y19_c00419{bottom:286.322700px;}
.y18_c00419{bottom:316.328700px;}
.y17_c00419{bottom:346.322700px;}
.y16_c00419{bottom:376.328700px;}
.y15_c00419{bottom:406.316700px;}
.y14_c00419{bottom:436.322700px;}
.y13_c00419{bottom:466.328700px;}
.y12_c00419{bottom:496.244700px;}
.y11_c00419{bottom:526.250700px;}
.y10_c00419{bottom:556.256700px;}
.yf_c00419{bottom:586.262700px;}
.ye_c00419{bottom:616.268700px;}
.yd_c00419{bottom:646.274700px;}
.yc_c00419{bottom:676.280700px;}
.yb_c00419{bottom:706.286700px;}
.ya_c00419{bottom:736.292700px;}
.y9_c00419{bottom:766.298700px;}
.y8_c00419{bottom:796.304700px;}
.y7_c00419{bottom:826.310700px;}
.y23_c00419{bottom:826.334700px;}
.y6_c00419{bottom:856.316700px;}
.y22_c00419{bottom:856.334700px;}
.y5_c00419{bottom:886.322700px;}
.y21_c00419{bottom:886.334700px;}
.y4_c00419{bottom:916.328700px;}
.y20_c00419{bottom:916.334700px;}
.y3_c00419{bottom:946.334700px;}
.y1f_c00419{bottom:946.376100px;}
.y2_c00419{bottom:1006.334700px;}
.h8_c00419{height:50.292000px;}
.h2_c00419{height:54.000000px;}
.h4_c00419{height:64.800000px;}
.h7_c00419{height:64.848000px;}
.h6_c00419{height:64.872000px;}
.h5_c00419{height:65.160000px;}
.h3_c00419{height:100.980000px;}
.h0_c00419{height:1262.835000px;}
.h1_c00419{height:1263.000000px;}
.w0_c00419{width:892.914000px;}
.w1_c00419{width:893.250000px;}
.x0_c00419{left:0.000000px;}
.x2_c00419{left:82.500000px;}
.x3_c00419{left:106.500000px;}
.x4_c00419{left:675.611100px;}
.x1_c00419{left:785.828850px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.v1_c00419{vertical-align:5.312000pt;}
.v2_c00419{vertical-align:10.986667pt;}
.ls9_c00419{letter-spacing:-0.288000pt;}
.ls8_c00419{letter-spacing:0.000000pt;}
.ls2_c00419{letter-spacing:0.373333pt;}
.ls5_c00419{letter-spacing:0.626133pt;}
.ls3_c00419{letter-spacing:0.627200pt;}
.ls0_c00419{letter-spacing:0.640000pt;}
.ls4_c00419{letter-spacing:0.657067pt;}
.ls1_c00419{letter-spacing:0.678400pt;}
.ls7_c00419{letter-spacing:1.333333pt;}
.ls6_c00419{letter-spacing:1.466667pt;}
.ws1_c00419{word-spacing:-18.912000pt;}
.ws2_c00419{word-spacing:-13.200000pt;}
.ws0_c00419{word-spacing:-9.066667pt;}
.wsd_c00419{word-spacing:-3.456000pt;}
.wsc_c00419{word-spacing:-2.752000pt;}
.ws12_c00419{word-spacing:-1.792000pt;}
.ws23_c00419{word-spacing:-1.333333pt;}
.ws13_c00419{word-spacing:-0.448000pt;}
.ws14_c00419{word-spacing:-0.261333pt;}
.ws3_c00419{word-spacing:0.000000pt;}
.ws17_c00419{word-spacing:0.576000pt;}
.ws1c_c00419{word-spacing:0.597333pt;}
.ws22_c00419{word-spacing:0.640000pt;}
.ws1f_c00419{word-spacing:0.896000pt;}
.ws1b_c00419{word-spacing:1.024000pt;}
.ws19_c00419{word-spacing:1.152000pt;}
.ws21_c00419{word-spacing:1.216000pt;}
.ws18_c00419{word-spacing:2.053333pt;}
.ws1e_c00419{word-spacing:3.360000pt;}
.ws1d_c00419{word-spacing:3.648000pt;}
.ws9_c00419{word-spacing:3.904000pt;}
.ws11_c00419{word-spacing:4.544000pt;}
.ws10_c00419{word-spacing:5.440000pt;}
.wsb_c00419{word-spacing:5.504000pt;}
.ws5_c00419{word-spacing:6.400000pt;}
.ws1a_c00419{word-spacing:6.464000pt;}
.ws8_c00419{word-spacing:7.936000pt;}
.ws15_c00419{word-spacing:8.384000pt;}
.wsa_c00419{word-spacing:10.624000pt;}
.ws16_c00419{word-spacing:10.688000pt;}
.ws4_c00419{word-spacing:11.648000pt;}
.wsf_c00419{word-spacing:11.904000pt;}
.ws7_c00419{word-spacing:12.224000pt;}
.ws20_c00419{word-spacing:13.568000pt;}
.wse_c00419{word-spacing:14.016000pt;}
.ws6_c00419{word-spacing:28.480000pt;}
._0_c00419{margin-left:-426.966400pt;}
._4_c00419{margin-left:-5.120000pt;}
._1_c00419{margin-left:-3.733333pt;}
._3_c00419{margin-left:-2.204800pt;}
._2_c00419{margin-left:-1.008000pt;}
._6_c00419{width:1.078400pt;}
._5_c00419{width:2.528000pt;}
.fs1_c00419{font-size:37.333333pt;}
.fs0_c00419{font-size:53.333333pt;}
.fs4_c00419{font-size:58.666667pt;}
.fs3_c00419{font-size:64.000000pt;}
.fs2_c00419{font-size:96.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y1_c00419{bottom:36.666667pt;}
.y1e_c00419{bottom:121.159733pt;}
.y1d_c00419{bottom:147.831733pt;}
.y1c_c00419{bottom:174.503733pt;}
.y1b_c00419{bottom:201.175733pt;}
.y1a_c00419{bottom:227.847733pt;}
.y19_c00419{bottom:254.509067pt;}
.y18_c00419{bottom:281.181067pt;}
.y17_c00419{bottom:307.842400pt;}
.y16_c00419{bottom:334.514400pt;}
.y15_c00419{bottom:361.170400pt;}
.y14_c00419{bottom:387.842400pt;}
.y13_c00419{bottom:414.514400pt;}
.y12_c00419{bottom:441.106400pt;}
.y11_c00419{bottom:467.778400pt;}
.y10_c00419{bottom:494.450400pt;}
.yf_c00419{bottom:521.122400pt;}
.ye_c00419{bottom:547.794400pt;}
.yd_c00419{bottom:574.466400pt;}
.yc_c00419{bottom:601.138400pt;}
.yb_c00419{bottom:627.810400pt;}
.ya_c00419{bottom:654.482400pt;}
.y9_c00419{bottom:681.154400pt;}
.y8_c00419{bottom:707.826400pt;}
.y7_c00419{bottom:734.498400pt;}
.y23_c00419{bottom:734.519733pt;}
.y6_c00419{bottom:761.170400pt;}
.y22_c00419{bottom:761.186400pt;}
.y5_c00419{bottom:787.842400pt;}
.y21_c00419{bottom:787.853067pt;}
.y4_c00419{bottom:814.514400pt;}
.y20_c00419{bottom:814.519733pt;}
.y3_c00419{bottom:841.186400pt;}
.y1f_c00419{bottom:841.223200pt;}
.y2_c00419{bottom:894.519733pt;}
.h8_c00419{height:44.704000pt;}
.h2_c00419{height:48.000000pt;}
.h4_c00419{height:57.600000pt;}
.h7_c00419{height:57.642667pt;}
.h6_c00419{height:57.664000pt;}
.h5_c00419{height:57.920000pt;}
.h3_c00419{height:89.760000pt;}
.h0_c00419{height:1122.520000pt;}
.h1_c00419{height:1122.666667pt;}
.w0_c00419{width:793.701333pt;}
.w1_c00419{width:794.000000pt;}
.x0_c00419{left:0.000000pt;}
.x2_c00419{left:73.333333pt;}
.x3_c00419{left:94.666667pt;}
.x4_c00419{left:600.543200pt;}
.x1_c00419{left:698.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00420;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00420;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00420{font-family:ff5_c00420;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls2_c00420{letter-spacing:0.000000px;}
.ls0_c00420{letter-spacing:0.864000px;}
.ls1_c00420{letter-spacing:1.200000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00420{word-spacing:-13.104000px;}
.ws4_c00420{word-spacing:-11.664000px;}
.ws0_c00420{word-spacing:-10.200000px;}
.ws3_c00420{word-spacing:-8.064000px;}
.ws8_c00420{word-spacing:-6.840000px;}
.ws7_c00420{word-spacing:-5.904000px;}
.ws6_c00420{word-spacing:-2.952000px;}
.ws9_c00420{word-spacing:-2.400000px;}
.wsa_c00420{word-spacing:-1.200000px;}
.ws5_c00420{word-spacing:-0.864000px;}
.ws2_c00420{word-spacing:0.000000px;}
._0_c00420{margin-left:-480.337200px;}
._6_c00420{margin-left:-17.400000px;}
._1_c00420{margin-left:-4.200000px;}
._4_c00420{margin-left:-3.120000px;}
._2_c00420{margin-left:-1.440000px;}
._5_c00420{width:3.120000px;}
._3_c00420{width:11.664000px;}
.fc3_c00420{color:rgb(255,255,255);}
.fc2_c00420{color:rgb(233,83,14);}
.fc1_c00420{color:rgb(232,86,17);}
.fc0_c00420{color:rgb(60,60,59);}
.fs1_c00420{font-size:42.000000px;}
.fs0_c00420{font-size:60.000000px;}
.fs3_c00420{font-size:72.000000px;}
.fs4_c00420{font-size:120.000000px;}
.fs2_c00420{font-size:360.000000px;}
.y0_c00420{bottom:0.000000px;}
.y1_c00420{bottom:41.250000px;}
.y13_c00420{bottom:283.250700px;}
.y12_c00420{bottom:304.256700px;}
.y11_c00420{bottom:325.262700px;}
.y10_c00420{bottom:346.268700px;}
.yf_c00420{bottom:403.274700px;}
.ye_c00420{bottom:424.280700px;}
.yd_c00420{bottom:445.286700px;}
.yc_c00420{bottom:466.292700px;}
.yb_c00420{bottom:523.298700px;}
.ya_c00420{bottom:544.304700px;}
.y9_c00420{bottom:565.310700px;}
.y8_c00420{bottom:586.316700px;}
.y7_c00420{bottom:643.322700px;}
.y6_c00420{bottom:664.328700px;}
.y5_c00420{bottom:685.334700px;}
.y4_c00420{bottom:706.340700px;}
.y3_c00420{bottom:752.834700px;}
.y17_c00420{bottom:916.334700px;}
.y16_c00420{bottom:946.334700px;}
.y15_c00420{bottom:976.334700px;}
.y14_c00420{bottom:1006.334700px;}
.y2_c00420{bottom:1093.526700px;}
.h2_c00420{height:54.000000px;}
.h5_c00420{height:64.800000px;}
.h4_c00420{height:66.456000px;}
.h6_c00420{height:112.200000px;}
.h3_c00420{height:324.000000px;}
.h0_c00420{height:1262.835000px;}
.h1_c00420{height:1263.000000px;}
.w0_c00420{width:892.914000px;}
.w1_c00420{width:893.250000px;}
.x0_c00420{left:0.000000px;}
.x2_c00420{left:81.290250px;}
.x3_c00420{left:82.393650px;}
.x5_c00420{left:112.287450px;}
.x4_c00420{left:127.393650px;}
.x1_c00420{left:789.488850px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls2_c00420{letter-spacing:0.000000pt;}
.ls0_c00420{letter-spacing:0.768000pt;}
.ls1_c00420{letter-spacing:1.066667pt;}
.ws1_c00420{word-spacing:-11.648000pt;}
.ws4_c00420{word-spacing:-10.368000pt;}
.ws0_c00420{word-spacing:-9.066667pt;}
.ws3_c00420{word-spacing:-7.168000pt;}
.ws8_c00420{word-spacing:-6.080000pt;}
.ws7_c00420{word-spacing:-5.248000pt;}
.ws6_c00420{word-spacing:-2.624000pt;}
.ws9_c00420{word-spacing:-2.133333pt;}
.wsa_c00420{word-spacing:-1.066667pt;}
.ws5_c00420{word-spacing:-0.768000pt;}
.ws2_c00420{word-spacing:0.000000pt;}
._0_c00420{margin-left:-426.966400pt;}
._6_c00420{margin-left:-15.466667pt;}
._1_c00420{margin-left:-3.733333pt;}
._4_c00420{margin-left:-2.773333pt;}
._2_c00420{margin-left:-1.280000pt;}
._5_c00420{width:2.773333pt;}
._3_c00420{width:10.368000pt;}
.fs1_c00420{font-size:37.333333pt;}
.fs0_c00420{font-size:53.333333pt;}
.fs3_c00420{font-size:64.000000pt;}
.fs4_c00420{font-size:106.666667pt;}
.fs2_c00420{font-size:320.000000pt;}
.y0_c00420{bottom:0.000000pt;}
.y1_c00420{bottom:36.666667pt;}
.y13_c00420{bottom:251.778400pt;}
.y12_c00420{bottom:270.450400pt;}
.y11_c00420{bottom:289.122400pt;}
.y10_c00420{bottom:307.794400pt;}
.yf_c00420{bottom:358.466400pt;}
.ye_c00420{bottom:377.138400pt;}
.yd_c00420{bottom:395.810400pt;}
.yc_c00420{bottom:414.482400pt;}
.yb_c00420{bottom:465.154400pt;}
.ya_c00420{bottom:483.826400pt;}
.y9_c00420{bottom:502.498400pt;}
.y8_c00420{bottom:521.170400pt;}
.y7_c00420{bottom:571.842400pt;}
.y6_c00420{bottom:590.514400pt;}
.y5_c00420{bottom:609.186400pt;}
.y4_c00420{bottom:627.858400pt;}
.y3_c00420{bottom:669.186400pt;}
.y17_c00420{bottom:814.519733pt;}
.y16_c00420{bottom:841.186400pt;}
.y15_c00420{bottom:867.853067pt;}
.y14_c00420{bottom:894.519733pt;}
.y2_c00420{bottom:972.023733pt;}
.h2_c00420{height:48.000000pt;}
.h5_c00420{height:57.600000pt;}
.h4_c00420{height:59.072000pt;}
.h6_c00420{height:99.733333pt;}
.h3_c00420{height:288.000000pt;}
.h0_c00420{height:1122.520000pt;}
.h1_c00420{height:1122.666667pt;}
.w0_c00420{width:793.701333pt;}
.w1_c00420{width:794.000000pt;}
.x0_c00420{left:0.000000pt;}
.x2_c00420{left:72.258000pt;}
.x3_c00420{left:73.238800pt;}
.x5_c00420{left:99.811067pt;}
.x4_c00420{left:113.238800pt;}
.x1_c00420{left:701.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls4_c00421{letter-spacing:-0.540000px;}
.ls3_c00421{letter-spacing:0.000000px;}
.ls0_c00421{letter-spacing:0.720000px;}
.ls2_c00421{letter-spacing:1.500000px;}
.ls1_c00421{letter-spacing:1.650000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00421{word-spacing:-21.060000px;}
.ws0_c00421{word-spacing:-10.200000px;}
.ws5_c00421{word-spacing:-3.816000px;}
.ws12_c00421{word-spacing:-1.800000px;}
.ws1f_c00421{word-spacing:-1.500000px;}
.ws1d_c00421{word-spacing:-1.368000px;}
.ws1b_c00421{word-spacing:-1.008000px;}
.wsd_c00421{word-spacing:-0.504000px;}
.ws6_c00421{word-spacing:-0.288000px;}
.wsf_c00421{word-spacing:-0.144000px;}
.ws2_c00421{word-spacing:0.000000px;}
.ws11_c00421{word-spacing:1.440000px;}
.wsb_c00421{word-spacing:1.872000px;}
.ws1c_c00421{word-spacing:2.088000px;}
.ws13_c00421{word-spacing:4.104000px;}
.ws1e_c00421{word-spacing:4.248000px;}
.ws15_c00421{word-spacing:4.392000px;}
.ws8_c00421{word-spacing:4.968000px;}
.wsa_c00421{word-spacing:5.184000px;}
.ws17_c00421{word-spacing:5.544000px;}
.ws7_c00421{word-spacing:5.904000px;}
.wsc_c00421{word-spacing:5.976000px;}
.ws10_c00421{word-spacing:6.336000px;}
.ws9_c00421{word-spacing:6.552000px;}
.ws4_c00421{word-spacing:7.776000px;}
.ws16_c00421{word-spacing:8.136000px;}
.ws18_c00421{word-spacing:8.424000px;}
.ws1a_c00421{word-spacing:8.928000px;}
.ws3_c00421{word-spacing:9.648000px;}
.ws14_c00421{word-spacing:12.816000px;}
.ws19_c00421{word-spacing:20.592000px;}
.wse_c00421{word-spacing:25.416000px;}
._0_c00421{margin-left:-480.336600px;}
._8_c00421{margin-left:-7.214400px;}
._4_c00421{margin-left:-5.752800px;}
._1_c00421{margin-left:-4.200000px;}
._5_c00421{margin-left:-2.548800px;}
._2_c00421{margin-left:-1.440000px;}
._6_c00421{width:1.432800px;}
._7_c00421{width:2.635200px;}
._3_c00421{width:4.017600px;}
.fc3_c00421{color:rgb(32,32,32);}
.fc2_c00421{color:rgb(233,83,14);}
.fc1_c00421{color:rgb(232,86,17);}
.fc4_c00421{color:rgb(157,157,156);}
.fc0_c00421{color:rgb(60,60,59);}
.fs1_c00421{font-size:42.000000px;}
.fs0_c00421{font-size:60.000000px;}
.fs4_c00421{font-size:66.000000px;}
.fs3_c00421{font-size:72.000000px;}
.fs2_c00421{font-size:108.000000px;}
.y0_c00421{bottom:0.000000px;}
.y1_c00421{bottom:41.250000px;}
.y20_c00421{bottom:76.160700px;}
.y1f_c00421{bottom:106.166700px;}
.y1e_c00421{bottom:136.172700px;}
.y1d_c00421{bottom:166.178700px;}
.y1c_c00421{bottom:196.184700px;}
.y1b_c00421{bottom:226.190700px;}
.y1a_c00421{bottom:256.196700px;}
.y19_c00421{bottom:286.202700px;}
.y18_c00421{bottom:316.208700px;}
.y17_c00421{bottom:346.214700px;}
.y16_c00421{bottom:376.220700px;}
.y15_c00421{bottom:406.226700px;}
.y14_c00421{bottom:436.232700px;}
.y13_c00421{bottom:466.238700px;}
.y12_c00421{bottom:496.244700px;}
.y11_c00421{bottom:526.250700px;}
.y10_c00421{bottom:556.256700px;}
.yf_c00421{bottom:586.262700px;}
.ye_c00421{bottom:616.268700px;}
.yd_c00421{bottom:646.274700px;}
.yc_c00421{bottom:676.280700px;}
.yb_c00421{bottom:706.286700px;}
.ya_c00421{bottom:736.292700px;}
.y9_c00421{bottom:766.298700px;}
.y8_c00421{bottom:796.304700px;}
.y7_c00421{bottom:826.310700px;}
.y25_c00421{bottom:826.334700px;}
.y6_c00421{bottom:856.316700px;}
.y24_c00421{bottom:856.334700px;}
.y5_c00421{bottom:886.322700px;}
.y23_c00421{bottom:886.334700px;}
.y4_c00421{bottom:916.328700px;}
.y22_c00421{bottom:916.334700px;}
.y3_c00421{bottom:946.334700px;}
.y21_c00421{bottom:946.376100px;}
.y2_c00421{bottom:1006.334700px;}
.h5_c00421{height:50.292000px;}
.h2_c00421{height:54.000000px;}
.h4_c00421{height:64.800000px;}
.h3_c00421{height:100.980000px;}
.h0_c00421{height:1262.835000px;}
.h1_c00421{height:1263.000000px;}
.w0_c00421{width:892.914000px;}
.w1_c00421{width:893.250000px;}
.x0_c00421{left:0.000000px;}
.x2_c00421{left:82.500000px;}
.x3_c00421{left:106.500000px;}
.x4_c00421{left:675.611100px;}
.x1_c00421{left:787.013700px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls4_c00421{letter-spacing:-0.480000pt;}
.ls3_c00421{letter-spacing:0.000000pt;}
.ls0_c00421{letter-spacing:0.640000pt;}
.ls2_c00421{letter-spacing:1.333333pt;}
.ls1_c00421{letter-spacing:1.466667pt;}
.ws1_c00421{word-spacing:-18.720000pt;}
.ws0_c00421{word-spacing:-9.066667pt;}
.ws5_c00421{word-spacing:-3.392000pt;}
.ws12_c00421{word-spacing:-1.600000pt;}
.ws1f_c00421{word-spacing:-1.333333pt;}
.ws1d_c00421{word-spacing:-1.216000pt;}
.ws1b_c00421{word-spacing:-0.896000pt;}
.wsd_c00421{word-spacing:-0.448000pt;}
.ws6_c00421{word-spacing:-0.256000pt;}
.wsf_c00421{word-spacing:-0.128000pt;}
.ws2_c00421{word-spacing:0.000000pt;}
.ws11_c00421{word-spacing:1.280000pt;}
.wsb_c00421{word-spacing:1.664000pt;}
.ws1c_c00421{word-spacing:1.856000pt;}
.ws13_c00421{word-spacing:3.648000pt;}
.ws1e_c00421{word-spacing:3.776000pt;}
.ws15_c00421{word-spacing:3.904000pt;}
.ws8_c00421{word-spacing:4.416000pt;}
.wsa_c00421{word-spacing:4.608000pt;}
.ws17_c00421{word-spacing:4.928000pt;}
.ws7_c00421{word-spacing:5.248000pt;}
.wsc_c00421{word-spacing:5.312000pt;}
.ws10_c00421{word-spacing:5.632000pt;}
.ws9_c00421{word-spacing:5.824000pt;}
.ws4_c00421{word-spacing:6.912000pt;}
.ws16_c00421{word-spacing:7.232000pt;}
.ws18_c00421{word-spacing:7.488000pt;}
.ws1a_c00421{word-spacing:7.936000pt;}
.ws3_c00421{word-spacing:8.576000pt;}
.ws14_c00421{word-spacing:11.392000pt;}
.ws19_c00421{word-spacing:18.304000pt;}
.wse_c00421{word-spacing:22.592000pt;}
._0_c00421{margin-left:-426.965867pt;}
._8_c00421{margin-left:-6.412800pt;}
._4_c00421{margin-left:-5.113600pt;}
._1_c00421{margin-left:-3.733333pt;}
._5_c00421{margin-left:-2.265600pt;}
._2_c00421{margin-left:-1.280000pt;}
._6_c00421{width:1.273600pt;}
._7_c00421{width:2.342400pt;}
._3_c00421{width:3.571200pt;}
.fs1_c00421{font-size:37.333333pt;}
.fs0_c00421{font-size:53.333333pt;}
.fs4_c00421{font-size:58.666667pt;}
.fs3_c00421{font-size:64.000000pt;}
.fs2_c00421{font-size:96.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y1_c00421{bottom:36.666667pt;}
.y20_c00421{bottom:67.698400pt;}
.y1f_c00421{bottom:94.370400pt;}
.y1e_c00421{bottom:121.042400pt;}
.y1d_c00421{bottom:147.714400pt;}
.y1c_c00421{bottom:174.386400pt;}
.y1b_c00421{bottom:201.058400pt;}
.y1a_c00421{bottom:227.730400pt;}
.y19_c00421{bottom:254.402400pt;}
.y18_c00421{bottom:281.074400pt;}
.y17_c00421{bottom:307.746400pt;}
.y16_c00421{bottom:334.418400pt;}
.y15_c00421{bottom:361.090400pt;}
.y14_c00421{bottom:387.762400pt;}
.y13_c00421{bottom:414.434400pt;}
.y12_c00421{bottom:441.106400pt;}
.y11_c00421{bottom:467.778400pt;}
.y10_c00421{bottom:494.450400pt;}
.yf_c00421{bottom:521.122400pt;}
.ye_c00421{bottom:547.794400pt;}
.yd_c00421{bottom:574.466400pt;}
.yc_c00421{bottom:601.138400pt;}
.yb_c00421{bottom:627.810400pt;}
.ya_c00421{bottom:654.482400pt;}
.y9_c00421{bottom:681.154400pt;}
.y8_c00421{bottom:707.826400pt;}
.y7_c00421{bottom:734.498400pt;}
.y25_c00421{bottom:734.519733pt;}
.y6_c00421{bottom:761.170400pt;}
.y24_c00421{bottom:761.186400pt;}
.y5_c00421{bottom:787.842400pt;}
.y23_c00421{bottom:787.853067pt;}
.y4_c00421{bottom:814.514400pt;}
.y22_c00421{bottom:814.519733pt;}
.y3_c00421{bottom:841.186400pt;}
.y21_c00421{bottom:841.223200pt;}
.y2_c00421{bottom:894.519733pt;}
.h5_c00421{height:44.704000pt;}
.h2_c00421{height:48.000000pt;}
.h4_c00421{height:57.600000pt;}
.h3_c00421{height:89.760000pt;}
.h0_c00421{height:1122.520000pt;}
.h1_c00421{height:1122.666667pt;}
.w0_c00421{width:793.701333pt;}
.w1_c00421{width:794.000000pt;}
.x0_c00421{left:0.000000pt;}
.x2_c00421{left:73.333333pt;}
.x3_c00421{left:94.666667pt;}
.x4_c00421{left:600.543200pt;}
.x1_c00421{left:699.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc04a28aa7b69d9b6e0497a8.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00422;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls4_c00422{letter-spacing:-0.324000px;}
.ls3_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:0.720000px;}
.ls2_c00422{letter-spacing:1.500000px;}
.ls1_c00422{letter-spacing:1.650000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00422{word-spacing:-21.276000px;}
.ws2_c00422{word-spacing:-14.850000px;}
.ws0_c00422{word-spacing:-10.200000px;}
.ws17_c00422{word-spacing:-3.384000px;}
.ws14_c00422{word-spacing:-3.024000px;}
.wsb_c00422{word-spacing:-2.520000px;}
.ws16_c00422{word-spacing:-1.944000px;}
.ws1e_c00422{word-spacing:-1.500000px;}
.ws5_c00422{word-spacing:-0.720000px;}
.ws1c_c00422{word-spacing:-0.432000px;}
.ws15_c00422{word-spacing:-0.288000px;}
.ws3_c00422{word-spacing:0.000000px;}
.ws19_c00422{word-spacing:0.072000px;}
.ws1d_c00422{word-spacing:0.432000px;}
.ws12_c00422{word-spacing:0.792000px;}
.ws13_c00422{word-spacing:1.152000px;}
.ws18_c00422{word-spacing:1.296000px;}
.wse_c00422{word-spacing:1.656000px;}
.ws11_c00422{word-spacing:2.160000px;}
.ws10_c00422{word-spacing:3.240000px;}
.ws1b_c00422{word-spacing:3.456000px;}
.wsd_c00422{word-spacing:3.672000px;}
.ws6_c00422{word-spacing:3.816000px;}
.ws8_c00422{word-spacing:4.248000px;}
.wsa_c00422{word-spacing:5.112000px;}
.ws9_c00422{word-spacing:5.472000px;}
.ws4_c00422{word-spacing:5.544000px;}
.wsc_c00422{word-spacing:8.568000px;}
.ws1a_c00422{word-spacing:10.512000px;}
.ws7_c00422{word-spacing:14.544000px;}
.wsf_c00422{word-spacing:18.792000px;}
._0_c00422{margin-left:-480.337200px;}
._3_c00422{margin-left:-5.760000px;}
._1_c00422{margin-left:-4.200000px;}
._2_c00422{margin-left:-2.160000px;}
._4_c00422{margin-left:-1.134000px;}
._6_c00422{width:1.101600px;}
._7_c00422{width:2.685600px;}
._5_c00422{width:3.981600px;}
.fc3_c00422{color:rgb(233,83,14);}
.fc2_c00422{color:rgb(32,32,32);}
.fc1_c00422{color:rgb(232,86,17);}
.fc4_c00422{color:rgb(157,157,156);}
.fc0_c00422{color:rgb(60,60,59);}
.fs1_c00422{font-size:42.000000px;}
.fs0_c00422{font-size:60.000000px;}
.fs4_c00422{font-size:66.000000px;}
.fs2_c00422{font-size:72.000000px;}
.fs3_c00422{font-size:108.000000px;}
.y0_c00422{bottom:0.000000px;}
.y1_c00422{bottom:41.250000px;}
.y1d_c00422{bottom:136.190700px;}
.y1c_c00422{bottom:166.196700px;}
.y1b_c00422{bottom:196.202700px;}
.y1a_c00422{bottom:226.208700px;}
.y19_c00422{bottom:256.214700px;}
.y18_c00422{bottom:286.220700px;}
.y17_c00422{bottom:316.226700px;}
.y16_c00422{bottom:346.232700px;}
.y15_c00422{bottom:376.238700px;}
.y14_c00422{bottom:406.244700px;}
.y13_c00422{bottom:436.250700px;}
.y12_c00422{bottom:466.256700px;}
.y11_c00422{bottom:496.262700px;}
.y10_c00422{bottom:526.268700px;}
.yf_c00422{bottom:556.274700px;}
.ye_c00422{bottom:586.280700px;}
.yd_c00422{bottom:616.286700px;}
.yc_c00422{bottom:646.292700px;}
.yb_c00422{bottom:676.298700px;}
.ya_c00422{bottom:706.304700px;}
.y9_c00422{bottom:736.310700px;}
.y8_c00422{bottom:766.316700px;}
.y21_c00422{bottom:766.334700px;}
.y7_c00422{bottom:796.322700px;}
.y20_c00422{bottom:796.334700px;}
.y6_c00422{bottom:826.328700px;}
.y1f_c00422{bottom:826.334700px;}
.y5_c00422{bottom:856.334700px;}
.y1e_c00422{bottom:856.376100px;}
.y4_c00422{bottom:916.334700px;}
.y3_c00422{bottom:992.828700px;}
.y2_c00422{bottom:1022.834700px;}
.h5_c00422{height:50.292000px;}
.h2_c00422{height:54.000000px;}
.h3_c00422{height:64.800000px;}
.h4_c00422{height:100.980000px;}
.h0_c00422{height:1262.835000px;}
.h1_c00422{height:1263.000000px;}
.w0_c00422{width:892.914000px;}
.w1_c00422{width:893.250000px;}
.x0_c00422{left:0.000000px;}
.x3_c00422{left:82.500000px;}
.x2_c00422{left:106.500000px;}
.x4_c00422{left:675.611100px;}
.x1_c00422{left:786.863850px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls4_c00422{letter-spacing:-0.288000pt;}
.ls3_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:0.640000pt;}
.ls2_c00422{letter-spacing:1.333333pt;}
.ls1_c00422{letter-spacing:1.466667pt;}
.ws1_c00422{word-spacing:-18.912000pt;}
.ws2_c00422{word-spacing:-13.200000pt;}
.ws0_c00422{word-spacing:-9.066667pt;}
.ws17_c00422{word-spacing:-3.008000pt;}
.ws14_c00422{word-spacing:-2.688000pt;}
.wsb_c00422{word-spacing:-2.240000pt;}
.ws16_c00422{word-spacing:-1.728000pt;}
.ws1e_c00422{word-spacing:-1.333333pt;}
.ws5_c00422{word-spacing:-0.640000pt;}
.ws1c_c00422{word-spacing:-0.384000pt;}
.ws15_c00422{word-spacing:-0.256000pt;}
.ws3_c00422{word-spacing:0.000000pt;}
.ws19_c00422{word-spacing:0.064000pt;}
.ws1d_c00422{word-spacing:0.384000pt;}
.ws12_c00422{word-spacing:0.704000pt;}
.ws13_c00422{word-spacing:1.024000pt;}
.ws18_c00422{word-spacing:1.152000pt;}
.wse_c00422{word-spacing:1.472000pt;}
.ws11_c00422{word-spacing:1.920000pt;}
.ws10_c00422{word-spacing:2.880000pt;}
.ws1b_c00422{word-spacing:3.072000pt;}
.wsd_c00422{word-spacing:3.264000pt;}
.ws6_c00422{word-spacing:3.392000pt;}
.ws8_c00422{word-spacing:3.776000pt;}
.wsa_c00422{word-spacing:4.544000pt;}
.ws9_c00422{word-spacing:4.864000pt;}
.ws4_c00422{word-spacing:4.928000pt;}
.wsc_c00422{word-spacing:7.616000pt;}
.ws1a_c00422{word-spacing:9.344000pt;}
.ws7_c00422{word-spacing:12.928000pt;}
.wsf_c00422{word-spacing:16.704000pt;}
._0_c00422{margin-left:-426.966400pt;}
._3_c00422{margin-left:-5.120000pt;}
._1_c00422{margin-left:-3.733333pt;}
._2_c00422{margin-left:-1.920000pt;}
._4_c00422{margin-left:-1.008000pt;}
._6_c00422{width:0.979200pt;}
._7_c00422{width:2.387200pt;}
._5_c00422{width:3.539200pt;}
.fs1_c00422{font-size:37.333333pt;}
.fs0_c00422{font-size:53.333333pt;}
.fs4_c00422{font-size:58.666667pt;}
.fs2_c00422{font-size:64.000000pt;}
.fs3_c00422{font-size:96.000000pt;}
.y0_c00422{bottom:0.000000pt;}
.y1_c00422{bottom:36.666667pt;}
.y1d_c00422{bottom:121.058400pt;}
.y1c_c00422{bottom:147.730400pt;}
.y1b_c00422{bottom:174.402400pt;}
.y1a_c00422{bottom:201.074400pt;}
.y19_c00422{bottom:227.746400pt;}
.y18_c00422{bottom:254.418400pt;}
.y17_c00422{bottom:281.090400pt;}
.y16_c00422{bottom:307.762400pt;}
.y15_c00422{bottom:334.434400pt;}
.y14_c00422{bottom:361.106400pt;}
.y13_c00422{bottom:387.778400pt;}
.y12_c00422{bottom:414.450400pt;}
.y11_c00422{bottom:441.122400pt;}
.y10_c00422{bottom:467.794400pt;}
.yf_c00422{bottom:494.466400pt;}
.ye_c00422{bottom:521.138400pt;}
.yd_c00422{bottom:547.810400pt;}
.yc_c00422{bottom:574.482400pt;}
.yb_c00422{bottom:601.154400pt;}
.ya_c00422{bottom:627.826400pt;}
.y9_c00422{bottom:654.498400pt;}
.y8_c00422{bottom:681.170400pt;}
.y21_c00422{bottom:681.186400pt;}
.y7_c00422{bottom:707.842400pt;}
.y20_c00422{bottom:707.853067pt;}
.y6_c00422{bottom:734.514400pt;}
.y1f_c00422{bottom:734.519733pt;}
.y5_c00422{bottom:761.186400pt;}
.y1e_c00422{bottom:761.223200pt;}
.y4_c00422{bottom:814.519733pt;}
.y3_c00422{bottom:882.514400pt;}
.y2_c00422{bottom:909.186400pt;}
.h5_c00422{height:44.704000pt;}
.h2_c00422{height:48.000000pt;}
.h3_c00422{height:57.600000pt;}
.h4_c00422{height:89.760000pt;}
.h0_c00422{height:1122.520000pt;}
.h1_c00422{height:1122.666667pt;}
.w0_c00422{width:793.701333pt;}
.w1_c00422{width:794.000000pt;}
.x0_c00422{left:0.000000pt;}
.x3_c00422{left:73.333333pt;}
.x2_c00422{left:94.666667pt;}
.x4_c00422{left:600.543200pt;}
.x1_c00422{left:699.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.199000;font-style: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);}
.m1_c00423{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls1_c00423{letter-spacing:0.000000px;}
.ls0_c00423{letter-spacing:0.720000px;}
.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:-10.200000px;}
.ws1_c00423{word-spacing:0.000000px;}
.ws2_c00423{word-spacing:4.032000px;}
.ws3_c00423{word-spacing:17.352000px;}
._0_c00423{margin-left:-480.336600px;}
._3_c00423{margin-left:-6.451200px;}
._1_c00423{margin-left:-4.200000px;}
._2_c00423{margin-left:-1.440000px;}
.fc2_c00423{color:rgb(32,32,32);}
.fc1_c00423{color:rgb(232,86,17);}
.fc0_c00423{color:rgb(60,60,59);}
.fs1_c00423{font-size:42.000000px;}
.fs0_c00423{font-size:60.000000px;}
.fs2_c00423{font-size:72.000000px;}
.y0_c00423{bottom:0.000000px;}
.y1_c00423{bottom:41.250000px;}
.y5_c00423{bottom:916.328700px;}
.y4_c00423{bottom:946.334700px;}
.y3_c00423{bottom:992.828700px;}
.y2_c00423{bottom:1022.834700px;}
.h2_c00423{height:54.000000px;}
.h3_c00423{height:64.800000px;}
.h0_c00423{height:1262.835000px;}
.h1_c00423{height:1263.000000px;}
.w0_c00423{width:892.914000px;}
.w1_c00423{width:893.250000px;}
.x0_c00423{left:0.000000px;}
.x2_c00423{left:106.500000px;}
.x1_c00423{left:785.888700px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls1_c00423{letter-spacing:0.000000pt;}
.ls0_c00423{letter-spacing:0.640000pt;}
.ws0_c00423{word-spacing:-9.066667pt;}
.ws1_c00423{word-spacing:0.000000pt;}
.ws2_c00423{word-spacing:3.584000pt;}
.ws3_c00423{word-spacing:15.424000pt;}
._0_c00423{margin-left:-426.965867pt;}
._3_c00423{margin-left:-5.734400pt;}
._1_c00423{margin-left:-3.733333pt;}
._2_c00423{margin-left:-1.280000pt;}
.fs1_c00423{font-size:37.333333pt;}
.fs0_c00423{font-size:53.333333pt;}
.fs2_c00423{font-size:64.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y1_c00423{bottom:36.666667pt;}
.y5_c00423{bottom:814.514400pt;}
.y4_c00423{bottom:841.186400pt;}
.y3_c00423{bottom:882.514400pt;}
.y2_c00423{bottom:909.186400pt;}
.h2_c00423{height:48.000000pt;}
.h3_c00423{height:57.600000pt;}
.h0_c00423{height:1122.520000pt;}
.h1_c00423{height:1122.666667pt;}
.w0_c00423{width:793.701333pt;}
.w1_c00423{width:794.000000pt;}
.x0_c00423{left:0.000000pt;}
.x2_c00423{left:94.666667pt;}
.x1_c00423{left:698.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00424;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00424;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00424{font-family:ff5_c00424;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00424;src:url('chunks/assets/font_71cb7cab5c3bbe55d66c1a41.woff2')format("woff");}.ff6_c00424{font-family:ff6_c00424;line-height:0.778000;font-style: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);}
.m1_c00424{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls4_c00424{letter-spacing:-0.840000px;}
.ls3_c00424{letter-spacing:-0.648000px;}
.ls2_c00424{letter-spacing:0.000000px;}
.ls0_c00424{letter-spacing:0.864000px;}
.ls1_c00424{letter-spacing:1.200000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00424{word-spacing:-11.592000px;}
.ws0_c00424{word-spacing:-10.200000px;}
.ws5_c00424{word-spacing:-8.064000px;}
.ws4_c00424{word-spacing:-4.752000px;}
.ws6_c00424{word-spacing:-4.104000px;}
.ws3_c00424{word-spacing:-3.456000px;}
.ws8_c00424{word-spacing:-1.200000px;}
.ws2_c00424{word-spacing:0.000000px;}
.ws7_c00424{word-spacing:0.648000px;}
.ws9_c00424{word-spacing:2.040000px;}
._0_c00424{margin-left:-480.336000px;}
._8_c00424{margin-left:-9.216000px;}
._2_c00424{margin-left:-6.552000px;}
._1_c00424{margin-left:-4.200000px;}
._3_c00424{margin-left:-1.440000px;}
._4_c00424{width:1.296000px;}
._7_c00424{width:2.520000px;}
._5_c00424{width:4.752000px;}
._6_c00424{width:8.064000px;}
.fc3_c00424{color:rgb(255,255,255);}
.fc2_c00424{color:rgb(233,83,14);}
.fc1_c00424{color:rgb(232,86,17);}
.fc0_c00424{color:rgb(60,60,59);}
.fs1_c00424{font-size:42.000000px;}
.fs0_c00424{font-size:60.000000px;}
.fs3_c00424{font-size:72.000000px;}
.fs4_c00424{font-size:120.000000px;}
.fs2_c00424{font-size:360.000000px;}
.y0_c00424{bottom:0.000000px;}
.y1_c00424{bottom:41.250000px;}
.yc_c00424{bottom:484.292700px;}
.yb_c00424{bottom:505.298700px;}
.ya_c00424{bottom:526.304700px;}
.y9_c00424{bottom:574.310700px;}
.y8_c00424{bottom:595.316700px;}
.y7_c00424{bottom:616.322700px;}
.y6_c00424{bottom:664.328700px;}
.y5_c00424{bottom:685.334700px;}
.y4_c00424{bottom:706.340700px;}
.y3_c00424{bottom:752.834700px;}
.yf_c00424{bottom:946.334700px;}
.ye_c00424{bottom:976.334700px;}
.yd_c00424{bottom:1006.334700px;}
.y2_c00424{bottom:1093.526700px;}
.h2_c00424{height:54.000000px;}
.h5_c00424{height:64.800000px;}
.h4_c00424{height:66.456000px;}
.h6_c00424{height:112.200000px;}
.h3_c00424{height:324.000000px;}
.h0_c00424{height:1262.835000px;}
.h1_c00424{height:1263.000000px;}
.w0_c00424{width:892.914000px;}
.w1_c00424{width:893.250000px;}
.x0_c00424{left:0.000000px;}
.x2_c00424{left:81.290250px;}
.x3_c00424{left:82.393650px;}
.x5_c00424{left:112.287450px;}
.x4_c00424{left:127.393650px;}
.x1_c00424{left:786.938550px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls4_c00424{letter-spacing:-0.746667pt;}
.ls3_c00424{letter-spacing:-0.576000pt;}
.ls2_c00424{letter-spacing:0.000000pt;}
.ls0_c00424{letter-spacing:0.768000pt;}
.ls1_c00424{letter-spacing:1.066667pt;}
.ws1_c00424{word-spacing:-10.304000pt;}
.ws0_c00424{word-spacing:-9.066667pt;}
.ws5_c00424{word-spacing:-7.168000pt;}
.ws4_c00424{word-spacing:-4.224000pt;}
.ws6_c00424{word-spacing:-3.648000pt;}
.ws3_c00424{word-spacing:-3.072000pt;}
.ws8_c00424{word-spacing:-1.066667pt;}
.ws2_c00424{word-spacing:0.000000pt;}
.ws7_c00424{word-spacing:0.576000pt;}
.ws9_c00424{word-spacing:1.813333pt;}
._0_c00424{margin-left:-426.965333pt;}
._8_c00424{margin-left:-8.192000pt;}
._2_c00424{margin-left:-5.824000pt;}
._1_c00424{margin-left:-3.733333pt;}
._3_c00424{margin-left:-1.280000pt;}
._4_c00424{width:1.152000pt;}
._7_c00424{width:2.240000pt;}
._5_c00424{width:4.224000pt;}
._6_c00424{width:7.168000pt;}
.fs1_c00424{font-size:37.333333pt;}
.fs0_c00424{font-size:53.333333pt;}
.fs3_c00424{font-size:64.000000pt;}
.fs4_c00424{font-size:106.666667pt;}
.fs2_c00424{font-size:320.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y1_c00424{bottom:36.666667pt;}
.yc_c00424{bottom:430.482400pt;}
.yb_c00424{bottom:449.154400pt;}
.ya_c00424{bottom:467.826400pt;}
.y9_c00424{bottom:510.498400pt;}
.y8_c00424{bottom:529.170400pt;}
.y7_c00424{bottom:547.842400pt;}
.y6_c00424{bottom:590.514400pt;}
.y5_c00424{bottom:609.186400pt;}
.y4_c00424{bottom:627.858400pt;}
.y3_c00424{bottom:669.186400pt;}
.yf_c00424{bottom:841.186400pt;}
.ye_c00424{bottom:867.853067pt;}
.yd_c00424{bottom:894.519733pt;}
.y2_c00424{bottom:972.023733pt;}
.h2_c00424{height:48.000000pt;}
.h5_c00424{height:57.600000pt;}
.h4_c00424{height:59.072000pt;}
.h6_c00424{height:99.733333pt;}
.h3_c00424{height:288.000000pt;}
.h0_c00424{height:1122.520000pt;}
.h1_c00424{height:1122.666667pt;}
.w0_c00424{width:793.701333pt;}
.w1_c00424{width:794.000000pt;}
.x0_c00424{left:0.000000pt;}
.x2_c00424{left:72.258000pt;}
.x3_c00424{left:73.238800pt;}
.x5_c00424{left:99.811067pt;}
.x4_c00424{left:113.238800pt;}
.x1_c00424{left:699.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.199000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.161000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.024000;font-style: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);}
.m1_c00425{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls5_c00425{letter-spacing:-0.540000px;}
.ls4_c00425{letter-spacing:0.000000px;}
.ls0_c00425{letter-spacing:0.720000px;}
.ls1_c00425{letter-spacing:0.840000px;}
.ls3_c00425{letter-spacing:1.500000px;}
.ls2_c00425{letter-spacing:1.650000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00425{word-spacing:-21.060000px;}
.ws2_c00425{word-spacing:-17.640000px;}
.ws0_c00425{word-spacing:-10.200000px;}
.wse_c00425{word-spacing:-7.992000px;}
.ws9_c00425{word-spacing:-3.600000px;}
.wsc_c00425{word-spacing:-3.024000px;}
.ws14_c00425{word-spacing:-1.500000px;}
.ws4_c00425{word-spacing:-0.840000px;}
.wsd_c00425{word-spacing:-0.720000px;}
.ws3_c00425{word-spacing:0.000000px;}
.ws13_c00425{word-spacing:1.440000px;}
.ws12_c00425{word-spacing:2.376000px;}
.ws8_c00425{word-spacing:2.664000px;}
.wsa_c00425{word-spacing:4.464000px;}
.wsb_c00425{word-spacing:5.976000px;}
.ws10_c00425{word-spacing:6.408000px;}
.ws7_c00425{word-spacing:7.272000px;}
.ws5_c00425{word-spacing:9.720000px;}
.ws6_c00425{word-spacing:10.368000px;}
.wsf_c00425{word-spacing:10.656000px;}
.ws11_c00425{word-spacing:19.080000px;}
._0_c00425{margin-left:-480.336600px;}
._3_c00425{margin-left:-6.228000px;}
._1_c00425{margin-left:-4.200000px;}
._2_c00425{margin-left:-1.656000px;}
._4_c00425{width:1.137600px;}
._5_c00425{width:2.217600px;}
._6_c00425{width:11.008800px;}
.fc3_c00425{color:rgb(32,32,32);}
.fc2_c00425{color:rgb(233,83,14);}
.fc1_c00425{color:rgb(232,86,17);}
.fc4_c00425{color:rgb(157,157,156);}
.fc0_c00425{color:rgb(60,60,59);}
.fs1_c00425{font-size:42.000000px;}
.fs0_c00425{font-size:60.000000px;}
.fs5_c00425{font-size:66.000000px;}
.fs4_c00425{font-size:72.000000px;}
.fs3_c00425{font-size:84.000000px;}
.fs2_c00425{font-size:108.000000px;}
.y0_c00425{bottom:0.000000px;}
.y1_c00425{bottom:41.250000px;}
.y16_c00425{bottom:136.298700px;}
.y15_c00425{bottom:166.304700px;}
.y14_c00425{bottom:196.310700px;}
.y13_c00425{bottom:226.316700px;}
.y12_c00425{bottom:256.322700px;}
.y11_c00425{bottom:286.328700px;}
.y10_c00425{bottom:316.334700px;}
.yf_c00425{bottom:376.334700px;}
.ye_c00425{bottom:466.328700px;}
.yd_c00425{bottom:496.334700px;}
.yc_c00425{bottom:556.334700px;}
.yb_c00425{bottom:646.292700px;}
.y1e_c00425{bottom:646.334700px;}
.ya_c00425{bottom:676.298700px;}
.y1d_c00425{bottom:676.334700px;}
.y9_c00425{bottom:706.304700px;}
.y1c_c00425{bottom:706.334700px;}
.y8_c00425{bottom:736.310700px;}
.y1b_c00425{bottom:736.334700px;}
.y7_c00425{bottom:766.316700px;}
.y1a_c00425{bottom:766.334700px;}
.y6_c00425{bottom:796.322700px;}
.y19_c00425{bottom:796.334700px;}
.y5_c00425{bottom:826.328700px;}
.y18_c00425{bottom:826.334700px;}
.y4_c00425{bottom:856.334700px;}
.y17_c00425{bottom:856.376100px;}
.y3_c00425{bottom:916.334700px;}
.y2_c00425{bottom:1006.334700px;}
.h6_c00425{height:50.292000px;}
.h2_c00425{height:54.000000px;}
.h5_c00425{height:64.800000px;}
.h4_c00425{height:78.540000px;}
.h3_c00425{height:100.980000px;}
.h0_c00425{height:1262.835000px;}
.h1_c00425{height:1263.000000px;}
.w0_c00425{width:892.914000px;}
.w1_c00425{width:893.250000px;}
.x0_c00425{left:0.000000px;}
.x2_c00425{left:82.500000px;}
.x3_c00425{left:90.000000px;}
.x4_c00425{left:106.500000px;}
.x5_c00425{left:675.611100px;}
.x1_c00425{left:785.813700px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls5_c00425{letter-spacing:-0.480000pt;}
.ls4_c00425{letter-spacing:0.000000pt;}
.ls0_c00425{letter-spacing:0.640000pt;}
.ls1_c00425{letter-spacing:0.746667pt;}
.ls3_c00425{letter-spacing:1.333333pt;}
.ls2_c00425{letter-spacing:1.466667pt;}
.ws1_c00425{word-spacing:-18.720000pt;}
.ws2_c00425{word-spacing:-15.680000pt;}
.ws0_c00425{word-spacing:-9.066667pt;}
.wse_c00425{word-spacing:-7.104000pt;}
.ws9_c00425{word-spacing:-3.200000pt;}
.wsc_c00425{word-spacing:-2.688000pt;}
.ws14_c00425{word-spacing:-1.333333pt;}
.ws4_c00425{word-spacing:-0.746667pt;}
.wsd_c00425{word-spacing:-0.640000pt;}
.ws3_c00425{word-spacing:0.000000pt;}
.ws13_c00425{word-spacing:1.280000pt;}
.ws12_c00425{word-spacing:2.112000pt;}
.ws8_c00425{word-spacing:2.368000pt;}
.wsa_c00425{word-spacing:3.968000pt;}
.wsb_c00425{word-spacing:5.312000pt;}
.ws10_c00425{word-spacing:5.696000pt;}
.ws7_c00425{word-spacing:6.464000pt;}
.ws5_c00425{word-spacing:8.640000pt;}
.ws6_c00425{word-spacing:9.216000pt;}
.wsf_c00425{word-spacing:9.472000pt;}
.ws11_c00425{word-spacing:16.960000pt;}
._0_c00425{margin-left:-426.965867pt;}
._3_c00425{margin-left:-5.536000pt;}
._1_c00425{margin-left:-3.733333pt;}
._2_c00425{margin-left:-1.472000pt;}
._4_c00425{width:1.011200pt;}
._5_c00425{width:1.971200pt;}
._6_c00425{width:9.785600pt;}
.fs1_c00425{font-size:37.333333pt;}
.fs0_c00425{font-size:53.333333pt;}
.fs5_c00425{font-size:58.666667pt;}
.fs4_c00425{font-size:64.000000pt;}
.fs3_c00425{font-size:74.666667pt;}
.fs2_c00425{font-size:96.000000pt;}
.y0_c00425{bottom:0.000000pt;}
.y1_c00425{bottom:36.666667pt;}
.y16_c00425{bottom:121.154400pt;}
.y15_c00425{bottom:147.826400pt;}
.y14_c00425{bottom:174.498400pt;}
.y13_c00425{bottom:201.170400pt;}
.y12_c00425{bottom:227.842400pt;}
.y11_c00425{bottom:254.514400pt;}
.y10_c00425{bottom:281.186400pt;}
.yf_c00425{bottom:334.519733pt;}
.ye_c00425{bottom:414.514400pt;}
.yd_c00425{bottom:441.186400pt;}
.yc_c00425{bottom:494.519733pt;}
.yb_c00425{bottom:574.482400pt;}
.y1e_c00425{bottom:574.519733pt;}
.ya_c00425{bottom:601.154400pt;}
.y1d_c00425{bottom:601.186400pt;}
.y9_c00425{bottom:627.826400pt;}
.y1c_c00425{bottom:627.853067pt;}
.y8_c00425{bottom:654.498400pt;}
.y1b_c00425{bottom:654.519733pt;}
.y7_c00425{bottom:681.170400pt;}
.y1a_c00425{bottom:681.186400pt;}
.y6_c00425{bottom:707.842400pt;}
.y19_c00425{bottom:707.853067pt;}
.y5_c00425{bottom:734.514400pt;}
.y18_c00425{bottom:734.519733pt;}
.y4_c00425{bottom:761.186400pt;}
.y17_c00425{bottom:761.223200pt;}
.y3_c00425{bottom:814.519733pt;}
.y2_c00425{bottom:894.519733pt;}
.h6_c00425{height:44.704000pt;}
.h2_c00425{height:48.000000pt;}
.h5_c00425{height:57.600000pt;}
.h4_c00425{height:69.813333pt;}
.h3_c00425{height:89.760000pt;}
.h0_c00425{height:1122.520000pt;}
.h1_c00425{height:1122.666667pt;}
.w0_c00425{width:793.701333pt;}
.w1_c00425{width:794.000000pt;}
.x0_c00425{left:0.000000pt;}
.x2_c00425{left:73.333333pt;}
.x3_c00425{left:80.000000pt;}
.x4_c00425{left:94.666667pt;}
.x5_c00425{left:600.543200pt;}
.x1_c00425{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.199000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.161000;font-style: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);}
.m1_c00426{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls1_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:0.720000px;}
.ls2_c00426{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsf_c00426{word-spacing:-6.264000px;}
.ws10_c00426{word-spacing:-5.616000px;}
.ws2_c00426{word-spacing:-0.840000px;}
.ws7_c00426{word-spacing:-0.720000px;}
.wsb_c00426{word-spacing:-0.576000px;}
.ws5_c00426{word-spacing:-0.288000px;}
.ws1_c00426{word-spacing:0.000000px;}
.wsd_c00426{word-spacing:0.648000px;}
.wsa_c00426{word-spacing:1.008000px;}
.ws9_c00426{word-spacing:1.584000px;}
.wse_c00426{word-spacing:2.448000px;}
.ws6_c00426{word-spacing:3.528000px;}
.wsc_c00426{word-spacing:3.600000px;}
.ws8_c00426{word-spacing:3.888000px;}
.ws4_c00426{word-spacing:4.680000px;}
.ws3_c00426{word-spacing:14.760000px;}
._0_c00426{margin-left:-480.336600px;}
._5_c00426{margin-left:-6.364800px;}
._1_c00426{margin-left:-4.200000px;}
._4_c00426{margin-left:-2.452800px;}
._2_c00426{margin-left:-1.440000px;}
._3_c00426{width:1.612800px;}
.fc2_c00426{color:rgb(32,32,32);}
.fc1_c00426{color:rgb(232,86,17);}
.fc0_c00426{color:rgb(60,60,59);}
.fs1_c00426{font-size:42.000000px;}
.fs0_c00426{font-size:60.000000px;}
.fs3_c00426{font-size:72.000000px;}
.fs2_c00426{font-size:84.000000px;}
.y0_c00426{bottom:0.000000px;}
.y1_c00426{bottom:41.250000px;}
.yf_c00426{bottom:496.292700px;}
.ye_c00426{bottom:526.298700px;}
.yd_c00426{bottom:556.304700px;}
.yc_c00426{bottom:586.310700px;}
.yb_c00426{bottom:616.316700px;}
.ya_c00426{bottom:646.322700px;}
.y9_c00426{bottom:676.328700px;}
.y8_c00426{bottom:706.334700px;}
.y7_c00426{bottom:766.334700px;}
.y6_c00426{bottom:856.316700px;}
.y5_c00426{bottom:886.322700px;}
.y4_c00426{bottom:916.328700px;}
.y3_c00426{bottom:946.334700px;}
.y2_c00426{bottom:1006.334700px;}
.h2_c00426{height:54.000000px;}
.h4_c00426{height:64.800000px;}
.h3_c00426{height:78.540000px;}
.h0_c00426{height:1262.835000px;}
.h1_c00426{height:1263.000000px;}
.w0_c00426{width:892.914000px;}
.w1_c00426{width:893.250000px;}
.x0_c00426{left:0.000000px;}
.x2_c00426{left:90.000000px;}
.x3_c00426{left:106.500000px;}
.x1_c00426{left:787.913700px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls1_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:0.640000pt;}
.ls2_c00426{letter-spacing:0.746667pt;}
.ws0_c00426{word-spacing:-9.066667pt;}
.wsf_c00426{word-spacing:-5.568000pt;}
.ws10_c00426{word-spacing:-4.992000pt;}
.ws2_c00426{word-spacing:-0.746667pt;}
.ws7_c00426{word-spacing:-0.640000pt;}
.wsb_c00426{word-spacing:-0.512000pt;}
.ws5_c00426{word-spacing:-0.256000pt;}
.ws1_c00426{word-spacing:0.000000pt;}
.wsd_c00426{word-spacing:0.576000pt;}
.wsa_c00426{word-spacing:0.896000pt;}
.ws9_c00426{word-spacing:1.408000pt;}
.wse_c00426{word-spacing:2.176000pt;}
.ws6_c00426{word-spacing:3.136000pt;}
.wsc_c00426{word-spacing:3.200000pt;}
.ws8_c00426{word-spacing:3.456000pt;}
.ws4_c00426{word-spacing:4.160000pt;}
.ws3_c00426{word-spacing:13.120000pt;}
._0_c00426{margin-left:-426.965867pt;}
._5_c00426{margin-left:-5.657600pt;}
._1_c00426{margin-left:-3.733333pt;}
._4_c00426{margin-left:-2.180267pt;}
._2_c00426{margin-left:-1.280000pt;}
._3_c00426{width:1.433600pt;}
.fs1_c00426{font-size:37.333333pt;}
.fs0_c00426{font-size:53.333333pt;}
.fs3_c00426{font-size:64.000000pt;}
.fs2_c00426{font-size:74.666667pt;}
.y0_c00426{bottom:0.000000pt;}
.y1_c00426{bottom:36.666667pt;}
.yf_c00426{bottom:441.149067pt;}
.ye_c00426{bottom:467.821067pt;}
.yd_c00426{bottom:494.493067pt;}
.yc_c00426{bottom:521.165067pt;}
.yb_c00426{bottom:547.837067pt;}
.ya_c00426{bottom:574.509067pt;}
.y9_c00426{bottom:601.181067pt;}
.y8_c00426{bottom:627.853067pt;}
.y7_c00426{bottom:681.186400pt;}
.y6_c00426{bottom:761.170400pt;}
.y5_c00426{bottom:787.842400pt;}
.y4_c00426{bottom:814.514400pt;}
.y3_c00426{bottom:841.186400pt;}
.y2_c00426{bottom:894.519733pt;}
.h2_c00426{height:48.000000pt;}
.h4_c00426{height:57.600000pt;}
.h3_c00426{height:69.813333pt;}
.h0_c00426{height:1122.520000pt;}
.h1_c00426{height:1122.666667pt;}
.w0_c00426{width:793.701333pt;}
.w1_c00426{width:794.000000pt;}
.x0_c00426{left:0.000000pt;}
.x2_c00426{left:80.000000pt;}
.x3_c00426{left:94.666667pt;}
.x1_c00426{left:700.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9336a84ddb46a296126c8b8f.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.199000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00427;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.024000;font-style: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);}
.m1_c00427{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls5_c00427{letter-spacing:-0.324000px;}
.ls4_c00427{letter-spacing:0.000000px;}
.ls0_c00427{letter-spacing:0.720000px;}
.ls1_c00427{letter-spacing:0.840000px;}
.ls3_c00427{letter-spacing:1.500000px;}
.ls2_c00427{letter-spacing:1.650000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00427{word-spacing:-21.276000px;}
.ws2_c00427{word-spacing:-17.640000px;}
.wse_c00427{word-spacing:-16.056000px;}
.ws3_c00427{word-spacing:-14.850000px;}
.ws13_c00427{word-spacing:-14.112000px;}
.ws0_c00427{word-spacing:-10.200000px;}
.ws11_c00427{word-spacing:-3.672000px;}
.ws9_c00427{word-spacing:-1.656000px;}
.ws14_c00427{word-spacing:-1.500000px;}
.wsb_c00427{word-spacing:-1.224000px;}
.ws5_c00427{word-spacing:-0.840000px;}
.wsd_c00427{word-spacing:-0.720000px;}
.ws4_c00427{word-spacing:0.000000px;}
.wsf_c00427{word-spacing:1.872000px;}
.ws8_c00427{word-spacing:2.808000px;}
.ws12_c00427{word-spacing:4.320000px;}
.ws10_c00427{word-spacing:6.336000px;}
.ws7_c00427{word-spacing:6.696000px;}
.ws6_c00427{word-spacing:7.200000px;}
.wsc_c00427{word-spacing:8.136000px;}
.wsa_c00427{word-spacing:12.096000px;}
._0_c00427{margin-left:-480.336600px;}
._3_c00427{margin-left:-10.566000px;}
._5_c00427{margin-left:-5.936400px;}
._1_c00427{margin-left:-4.200000px;}
._7_c00427{margin-left:-2.350800px;}
._2_c00427{margin-left:-1.134000px;}
._4_c00427{width:1.987200px;}
._8_c00427{width:3.564000px;}
._6_c00427{width:15.750000px;}
.fc3_c00427{color:rgb(32,32,32);}
.fc2_c00427{color:rgb(233,83,14);}
.fc1_c00427{color:rgb(232,86,17);}
.fc4_c00427{color:rgb(157,157,156);}
.fc0_c00427{color:rgb(60,60,59);}
.fs1_c00427{font-size:42.000000px;}
.fs0_c00427{font-size:60.000000px;}
.fs5_c00427{font-size:66.000000px;}
.fs4_c00427{font-size:72.000000px;}
.fs3_c00427{font-size:84.000000px;}
.fs2_c00427{font-size:108.000000px;}
.y0_c00427{bottom:0.000000px;}
.y1_c00427{bottom:41.250000px;}
.y15_c00427{bottom:136.310700px;}
.y14_c00427{bottom:166.316700px;}
.y13_c00427{bottom:196.322700px;}
.y12_c00427{bottom:226.328700px;}
.y11_c00427{bottom:256.334700px;}
.y10_c00427{bottom:316.328700px;}
.yf_c00427{bottom:346.334700px;}
.ye_c00427{bottom:406.334700px;}
.yd_c00427{bottom:496.328700px;}
.yc_c00427{bottom:526.334700px;}
.yb_c00427{bottom:586.334700px;}
.ya_c00427{bottom:676.298700px;}
.y9_c00427{bottom:706.304700px;}
.y1b_c00427{bottom:706.334700px;}
.y8_c00427{bottom:736.310700px;}
.y1a_c00427{bottom:736.334700px;}
.y7_c00427{bottom:766.316700px;}
.y19_c00427{bottom:766.334700px;}
.y6_c00427{bottom:796.322700px;}
.y18_c00427{bottom:796.334700px;}
.y5_c00427{bottom:826.328700px;}
.y17_c00427{bottom:826.334700px;}
.y4_c00427{bottom:856.334700px;}
.y16_c00427{bottom:856.376100px;}
.y3_c00427{bottom:916.334700px;}
.y2_c00427{bottom:1006.334700px;}
.h6_c00427{height:50.292000px;}
.h2_c00427{height:54.000000px;}
.h5_c00427{height:64.800000px;}
.h4_c00427{height:78.540000px;}
.h3_c00427{height:100.980000px;}
.h0_c00427{height:1262.835000px;}
.h1_c00427{height:1263.000000px;}
.w0_c00427{width:892.914000px;}
.w1_c00427{width:893.250000px;}
.x0_c00427{left:0.000000px;}
.x2_c00427{left:82.500000px;}
.x3_c00427{left:90.000000px;}
.x4_c00427{left:106.500000px;}
.x5_c00427{left:675.611100px;}
.x1_c00427{left:785.888700px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls5_c00427{letter-spacing:-0.288000pt;}
.ls4_c00427{letter-spacing:0.000000pt;}
.ls0_c00427{letter-spacing:0.640000pt;}
.ls1_c00427{letter-spacing:0.746667pt;}
.ls3_c00427{letter-spacing:1.333333pt;}
.ls2_c00427{letter-spacing:1.466667pt;}
.ws1_c00427{word-spacing:-18.912000pt;}
.ws2_c00427{word-spacing:-15.680000pt;}
.wse_c00427{word-spacing:-14.272000pt;}
.ws3_c00427{word-spacing:-13.200000pt;}
.ws13_c00427{word-spacing:-12.544000pt;}
.ws0_c00427{word-spacing:-9.066667pt;}
.ws11_c00427{word-spacing:-3.264000pt;}
.ws9_c00427{word-spacing:-1.472000pt;}
.ws14_c00427{word-spacing:-1.333333pt;}
.wsb_c00427{word-spacing:-1.088000pt;}
.ws5_c00427{word-spacing:-0.746667pt;}
.wsd_c00427{word-spacing:-0.640000pt;}
.ws4_c00427{word-spacing:0.000000pt;}
.wsf_c00427{word-spacing:1.664000pt;}
.ws8_c00427{word-spacing:2.496000pt;}
.ws12_c00427{word-spacing:3.840000pt;}
.ws10_c00427{word-spacing:5.632000pt;}
.ws7_c00427{word-spacing:5.952000pt;}
.ws6_c00427{word-spacing:6.400000pt;}
.wsc_c00427{word-spacing:7.232000pt;}
.wsa_c00427{word-spacing:10.752000pt;}
._0_c00427{margin-left:-426.965867pt;}
._3_c00427{margin-left:-9.392000pt;}
._5_c00427{margin-left:-5.276800pt;}
._1_c00427{margin-left:-3.733333pt;}
._7_c00427{margin-left:-2.089600pt;}
._2_c00427{margin-left:-1.008000pt;}
._4_c00427{width:1.766400pt;}
._8_c00427{width:3.168000pt;}
._6_c00427{width:14.000000pt;}
.fs1_c00427{font-size:37.333333pt;}
.fs0_c00427{font-size:53.333333pt;}
.fs5_c00427{font-size:58.666667pt;}
.fs4_c00427{font-size:64.000000pt;}
.fs3_c00427{font-size:74.666667pt;}
.fs2_c00427{font-size:96.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y1_c00427{bottom:36.666667pt;}
.y15_c00427{bottom:121.165067pt;}
.y14_c00427{bottom:147.837067pt;}
.y13_c00427{bottom:174.509067pt;}
.y12_c00427{bottom:201.181067pt;}
.y11_c00427{bottom:227.853067pt;}
.y10_c00427{bottom:281.181067pt;}
.yf_c00427{bottom:307.853067pt;}
.ye_c00427{bottom:361.186400pt;}
.yd_c00427{bottom:441.181067pt;}
.yc_c00427{bottom:467.853067pt;}
.yb_c00427{bottom:521.186400pt;}
.ya_c00427{bottom:601.154400pt;}
.y9_c00427{bottom:627.826400pt;}
.y1b_c00427{bottom:627.853067pt;}
.y8_c00427{bottom:654.498400pt;}
.y1a_c00427{bottom:654.519733pt;}
.y7_c00427{bottom:681.170400pt;}
.y19_c00427{bottom:681.186400pt;}
.y6_c00427{bottom:707.842400pt;}
.y18_c00427{bottom:707.853067pt;}
.y5_c00427{bottom:734.514400pt;}
.y17_c00427{bottom:734.519733pt;}
.y4_c00427{bottom:761.186400pt;}
.y16_c00427{bottom:761.223200pt;}
.y3_c00427{bottom:814.519733pt;}
.y2_c00427{bottom:894.519733pt;}
.h6_c00427{height:44.704000pt;}
.h2_c00427{height:48.000000pt;}
.h5_c00427{height:57.600000pt;}
.h4_c00427{height:69.813333pt;}
.h3_c00427{height:89.760000pt;}
.h0_c00427{height:1122.520000pt;}
.h1_c00427{height:1122.666667pt;}
.w0_c00427{width:793.701333pt;}
.w1_c00427{width:794.000000pt;}
.x0_c00427{left:0.000000pt;}
.x2_c00427{left:73.333333pt;}
.x3_c00427{left:80.000000pt;}
.x4_c00427{left:94.666667pt;}
.x5_c00427{left:600.543200pt;}
.x1_c00427{left:698.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f0146705d46c3af5096eb9.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.161000;font-style: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);}
.m1_c00428{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls1_c00428{letter-spacing:0.000000px;}
.ls0_c00428{letter-spacing:0.720000px;}
.ls2_c00428{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws6_c00428{word-spacing:-4.536000px;}
.ws3_c00428{word-spacing:-1.584000px;}
.ws9_c00428{word-spacing:-1.440000px;}
.ws2_c00428{word-spacing:-0.840000px;}
.ws7_c00428{word-spacing:-0.720000px;}
.ws1_c00428{word-spacing:0.000000px;}
.ws5_c00428{word-spacing:1.008000px;}
.ws4_c00428{word-spacing:1.152000px;}
.wsc_c00428{word-spacing:1.224000px;}
.wsb_c00428{word-spacing:2.232000px;}
.wsd_c00428{word-spacing:2.376000px;}
.wsa_c00428{word-spacing:2.592000px;}
.wse_c00428{word-spacing:2.736000px;}
.ws8_c00428{word-spacing:3.600000px;}
._0_c00428{margin-left:-480.336600px;}
._1_c00428{margin-left:-4.200000px;}
._3_c00428{margin-left:-2.880000px;}
._2_c00428{margin-left:-1.440000px;}
._4_c00428{width:1.684800px;}
._5_c00428{width:2.836800px;}
.fc2_c00428{color:rgb(32,32,32);}
.fc1_c00428{color:rgb(232,86,17);}
.fc0_c00428{color:rgb(60,60,59);}
.fs1_c00428{font-size:42.000000px;}
.fs0_c00428{font-size:60.000000px;}
.fs3_c00428{font-size:72.000000px;}
.fs2_c00428{font-size:84.000000px;}
.y0_c00428{bottom:0.000000px;}
.y1_c00428{bottom:41.250000px;}
.yf_c00428{bottom:496.292700px;}
.ye_c00428{bottom:526.298700px;}
.yd_c00428{bottom:556.304700px;}
.yc_c00428{bottom:586.310700px;}
.yb_c00428{bottom:616.316700px;}
.ya_c00428{bottom:646.322700px;}
.y9_c00428{bottom:676.328700px;}
.y8_c00428{bottom:706.334700px;}
.y7_c00428{bottom:766.334700px;}
.y6_c00428{bottom:856.316700px;}
.y5_c00428{bottom:886.322700px;}
.y4_c00428{bottom:916.328700px;}
.y3_c00428{bottom:946.334700px;}
.y2_c00428{bottom:1006.334700px;}
.h2_c00428{height:54.000000px;}
.h4_c00428{height:64.800000px;}
.h5_c00428{height:67.320000px;}
.h3_c00428{height:78.540000px;}
.h0_c00428{height:1262.835000px;}
.h1_c00428{height:1263.000000px;}
.w0_c00428{width:892.914000px;}
.w1_c00428{width:893.250000px;}
.x0_c00428{left:0.000000px;}
.x2_c00428{left:90.000000px;}
.x3_c00428{left:106.500000px;}
.x1_c00428{left:785.813700px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls1_c00428{letter-spacing:0.000000pt;}
.ls0_c00428{letter-spacing:0.640000pt;}
.ls2_c00428{letter-spacing:0.746667pt;}
.ws0_c00428{word-spacing:-9.066667pt;}
.ws6_c00428{word-spacing:-4.032000pt;}
.ws3_c00428{word-spacing:-1.408000pt;}
.ws9_c00428{word-spacing:-1.280000pt;}
.ws2_c00428{word-spacing:-0.746667pt;}
.ws7_c00428{word-spacing:-0.640000pt;}
.ws1_c00428{word-spacing:0.000000pt;}
.ws5_c00428{word-spacing:0.896000pt;}
.ws4_c00428{word-spacing:1.024000pt;}
.wsc_c00428{word-spacing:1.088000pt;}
.wsb_c00428{word-spacing:1.984000pt;}
.wsd_c00428{word-spacing:2.112000pt;}
.wsa_c00428{word-spacing:2.304000pt;}
.wse_c00428{word-spacing:2.432000pt;}
.ws8_c00428{word-spacing:3.200000pt;}
._0_c00428{margin-left:-426.965867pt;}
._1_c00428{margin-left:-3.733333pt;}
._3_c00428{margin-left:-2.560000pt;}
._2_c00428{margin-left:-1.280000pt;}
._4_c00428{width:1.497600pt;}
._5_c00428{width:2.521600pt;}
.fs1_c00428{font-size:37.333333pt;}
.fs0_c00428{font-size:53.333333pt;}
.fs3_c00428{font-size:64.000000pt;}
.fs2_c00428{font-size:74.666667pt;}
.y0_c00428{bottom:0.000000pt;}
.y1_c00428{bottom:36.666667pt;}
.yf_c00428{bottom:441.149067pt;}
.ye_c00428{bottom:467.821067pt;}
.yd_c00428{bottom:494.493067pt;}
.yc_c00428{bottom:521.165067pt;}
.yb_c00428{bottom:547.837067pt;}
.ya_c00428{bottom:574.509067pt;}
.y9_c00428{bottom:601.181067pt;}
.y8_c00428{bottom:627.853067pt;}
.y7_c00428{bottom:681.186400pt;}
.y6_c00428{bottom:761.170400pt;}
.y5_c00428{bottom:787.842400pt;}
.y4_c00428{bottom:814.514400pt;}
.y3_c00428{bottom:841.186400pt;}
.y2_c00428{bottom:894.519733pt;}
.h2_c00428{height:48.000000pt;}
.h4_c00428{height:57.600000pt;}
.h5_c00428{height:59.840000pt;}
.h3_c00428{height:69.813333pt;}
.h0_c00428{height:1122.520000pt;}
.h1_c00428{height:1122.666667pt;}
.w0_c00428{width:793.701333pt;}
.w1_c00428{width:794.000000pt;}
.x0_c00428{left:0.000000pt;}
.x2_c00428{left:80.000000pt;}
.x3_c00428{left:94.666667pt;}
.x1_c00428{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00429;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00429;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00429{font-family:ff5_c00429;line-height:1.155000;font-style: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);}
.m1_c00429{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls2_c00429{letter-spacing:0.000000px;}
.ls0_c00429{letter-spacing:0.864000px;}
.ls1_c00429{letter-spacing:1.200000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00429{word-spacing:-13.104000px;}
.ws0_c00429{word-spacing:-10.200000px;}
.ws3_c00429{word-spacing:-1.440000px;}
.ws2_c00429{word-spacing:0.000000px;}
._0_c00429{margin-left:-480.337200px;}
._6_c00429{margin-left:-10.800000px;}
._5_c00429{margin-left:-9.000000px;}
._4_c00429{margin-left:-6.480000px;}
._1_c00429{margin-left:-4.200000px;}
._2_c00429{margin-left:-1.440000px;}
._3_c00429{width:1.440000px;}
.fc3_c00429{color:rgb(255,255,255);}
.fc2_c00429{color:rgb(233,83,14);}
.fc1_c00429{color:rgb(232,86,17);}
.fc0_c00429{color:rgb(60,60,59);}
.fs1_c00429{font-size:42.000000px;}
.fs0_c00429{font-size:60.000000px;}
.fs3_c00429{font-size:72.000000px;}
.fs4_c00429{font-size:120.000000px;}
.fs2_c00429{font-size:360.000000px;}
.y0_c00429{bottom:0.000000px;}
.y1_c00429{bottom:41.250000px;}
.y13_c00429{bottom:283.250700px;}
.y12_c00429{bottom:304.256700px;}
.y11_c00429{bottom:325.262700px;}
.y10_c00429{bottom:346.268700px;}
.yf_c00429{bottom:403.274700px;}
.ye_c00429{bottom:424.280700px;}
.yd_c00429{bottom:445.286700px;}
.yc_c00429{bottom:466.292700px;}
.yb_c00429{bottom:523.298700px;}
.ya_c00429{bottom:544.304700px;}
.y9_c00429{bottom:565.310700px;}
.y8_c00429{bottom:586.316700px;}
.y7_c00429{bottom:643.322700px;}
.y6_c00429{bottom:664.328700px;}
.y5_c00429{bottom:685.334700px;}
.y4_c00429{bottom:706.340700px;}
.y3_c00429{bottom:752.834700px;}
.y17_c00429{bottom:916.334700px;}
.y16_c00429{bottom:946.334700px;}
.y15_c00429{bottom:976.334700px;}
.y14_c00429{bottom:1006.334700px;}
.y2_c00429{bottom:1093.526700px;}
.h2_c00429{height:54.000000px;}
.h5_c00429{height:64.800000px;}
.h4_c00429{height:66.456000px;}
.h6_c00429{height:112.200000px;}
.h3_c00429{height:324.000000px;}
.h0_c00429{height:1262.835000px;}
.h1_c00429{height:1263.000000px;}
.w0_c00429{width:892.914000px;}
.w1_c00429{width:893.250000px;}
.x0_c00429{left:0.000000px;}
.x2_c00429{left:81.290250px;}
.x3_c00429{left:82.393650px;}
.x5_c00429{left:112.287450px;}
.x4_c00429{left:127.393650px;}
.x1_c00429{left:785.678850px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls2_c00429{letter-spacing:0.000000pt;}
.ls0_c00429{letter-spacing:0.768000pt;}
.ls1_c00429{letter-spacing:1.066667pt;}
.ws1_c00429{word-spacing:-11.648000pt;}
.ws0_c00429{word-spacing:-9.066667pt;}
.ws3_c00429{word-spacing:-1.280000pt;}
.ws2_c00429{word-spacing:0.000000pt;}
._0_c00429{margin-left:-426.966400pt;}
._6_c00429{margin-left:-9.600000pt;}
._5_c00429{margin-left:-8.000000pt;}
._4_c00429{margin-left:-5.760000pt;}
._1_c00429{margin-left:-3.733333pt;}
._2_c00429{margin-left:-1.280000pt;}
._3_c00429{width:1.280000pt;}
.fs1_c00429{font-size:37.333333pt;}
.fs0_c00429{font-size:53.333333pt;}
.fs3_c00429{font-size:64.000000pt;}
.fs4_c00429{font-size:106.666667pt;}
.fs2_c00429{font-size:320.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y1_c00429{bottom:36.666667pt;}
.y13_c00429{bottom:251.778400pt;}
.y12_c00429{bottom:270.450400pt;}
.y11_c00429{bottom:289.122400pt;}
.y10_c00429{bottom:307.794400pt;}
.yf_c00429{bottom:358.466400pt;}
.ye_c00429{bottom:377.138400pt;}
.yd_c00429{bottom:395.810400pt;}
.yc_c00429{bottom:414.482400pt;}
.yb_c00429{bottom:465.154400pt;}
.ya_c00429{bottom:483.826400pt;}
.y9_c00429{bottom:502.498400pt;}
.y8_c00429{bottom:521.170400pt;}
.y7_c00429{bottom:571.842400pt;}
.y6_c00429{bottom:590.514400pt;}
.y5_c00429{bottom:609.186400pt;}
.y4_c00429{bottom:627.858400pt;}
.y3_c00429{bottom:669.186400pt;}
.y17_c00429{bottom:814.519733pt;}
.y16_c00429{bottom:841.186400pt;}
.y15_c00429{bottom:867.853067pt;}
.y14_c00429{bottom:894.519733pt;}
.y2_c00429{bottom:972.023733pt;}
.h2_c00429{height:48.000000pt;}
.h5_c00429{height:57.600000pt;}
.h4_c00429{height:59.072000pt;}
.h6_c00429{height:99.733333pt;}
.h3_c00429{height:288.000000pt;}
.h0_c00429{height:1122.520000pt;}
.h1_c00429{height:1122.666667pt;}
.w0_c00429{width:793.701333pt;}
.w1_c00429{width:794.000000pt;}
.x0_c00429{left:0.000000pt;}
.x2_c00429{left:72.258000pt;}
.x3_c00429{left:73.238800pt;}
.x5_c00429{left:99.811067pt;}
.x4_c00429{left:113.238800pt;}
.x1_c00429{left:698.381200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00430;src:url('chunks/assets/font_7613350094aa9ba7d0a6da04.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.161000;font-style: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);}
.m1_c00430{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.ls5_c00430{letter-spacing:-0.540000px;}
.ls4_c00430{letter-spacing:0.000000px;}
.ls0_c00430{letter-spacing:0.720000px;}
.ls1_c00430{letter-spacing:0.840000px;}
.ls3_c00430{letter-spacing:1.500000px;}
.ls2_c00430{letter-spacing:1.650000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00430{word-spacing:-21.060000px;}
.ws2_c00430{word-spacing:-17.640000px;}
.ws0_c00430{word-spacing:-10.200000px;}
.wsc_c00430{word-spacing:-2.736000px;}
.ws10_c00430{word-spacing:-2.592000px;}
.ws14_c00430{word-spacing:-1.500000px;}
.ws4_c00430{word-spacing:-0.840000px;}
.wsd_c00430{word-spacing:-0.576000px;}
.wsf_c00430{word-spacing:-0.144000px;}
.ws3_c00430{word-spacing:0.000000px;}
.ws9_c00430{word-spacing:0.072000px;}
.ws5_c00430{word-spacing:2.808000px;}
.wsa_c00430{word-spacing:4.608000px;}
.ws11_c00430{word-spacing:4.752000px;}
.ws8_c00430{word-spacing:4.896000px;}
.ws6_c00430{word-spacing:7.560000px;}
.ws7_c00430{word-spacing:11.592000px;}
.wse_c00430{word-spacing:12.312000px;}
.ws13_c00430{word-spacing:13.248000px;}
.wsb_c00430{word-spacing:13.392000px;}
.ws12_c00430{word-spacing:14.400000px;}
._0_c00430{margin-left:-480.337800px;}
._1_c00430{margin-left:-4.200000px;}
._3_c00430{margin-left:-2.654400px;}
._2_c00430{margin-left:-1.440000px;}
._4_c00430{width:1.872000px;}
._5_c00430{width:3.374400px;}
.fc3_c00430{color:rgb(32,32,32);}
.fc2_c00430{color:rgb(233,83,14);}
.fc1_c00430{color:rgb(232,86,17);}
.fc4_c00430{color:rgb(157,157,156);}
.fc0_c00430{color:rgb(60,60,59);}
.fs1_c00430{font-size:42.000000px;}
.fs0_c00430{font-size:60.000000px;}
.fs5_c00430{font-size:66.000000px;}
.fs4_c00430{font-size:72.000000px;}
.fs3_c00430{font-size:84.000000px;}
.fs2_c00430{font-size:108.000000px;}
.y0_c00430{bottom:0.000000px;}
.y1_c00430{bottom:41.250000px;}
.y15_c00430{bottom:256.292700px;}
.y14_c00430{bottom:286.298700px;}
.y13_c00430{bottom:316.304700px;}
.y12_c00430{bottom:346.310700px;}
.y11_c00430{bottom:376.316700px;}
.y10_c00430{bottom:406.322700px;}
.yf_c00430{bottom:436.328700px;}
.ye_c00430{bottom:466.334700px;}
.yd_c00430{bottom:526.334700px;}
.yc_c00430{bottom:616.286700px;}
.yb_c00430{bottom:646.292700px;}
.ya_c00430{bottom:676.298700px;}
.y1c_c00430{bottom:676.334700px;}
.y9_c00430{bottom:706.304700px;}
.y1b_c00430{bottom:706.334700px;}
.y8_c00430{bottom:736.310700px;}
.y1a_c00430{bottom:736.334700px;}
.y7_c00430{bottom:766.316700px;}
.y19_c00430{bottom:766.334700px;}
.y6_c00430{bottom:796.322700px;}
.y18_c00430{bottom:796.334700px;}
.y5_c00430{bottom:826.328700px;}
.y17_c00430{bottom:826.334700px;}
.y4_c00430{bottom:856.334700px;}
.y16_c00430{bottom:856.376100px;}
.y3_c00430{bottom:916.334700px;}
.y2_c00430{bottom:1006.334700px;}
.h6_c00430{height:50.292000px;}
.h2_c00430{height:54.000000px;}
.h5_c00430{height:64.800000px;}
.h4_c00430{height:78.540000px;}
.h3_c00430{height:100.980000px;}
.h0_c00430{height:1262.835000px;}
.h1_c00430{height:1263.000000px;}
.w0_c00430{width:892.914000px;}
.w1_c00430{width:893.250000px;}
.x0_c00430{left:0.000000px;}
.x2_c00430{left:82.500000px;}
.x3_c00430{left:90.000000px;}
.x4_c00430{left:106.500000px;}
.x5_c00430{left:675.611100px;}
.x1_c00430{left:789.339000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls5_c00430{letter-spacing:-0.480000pt;}
.ls4_c00430{letter-spacing:0.000000pt;}
.ls0_c00430{letter-spacing:0.640000pt;}
.ls1_c00430{letter-spacing:0.746667pt;}
.ls3_c00430{letter-spacing:1.333333pt;}
.ls2_c00430{letter-spacing:1.466667pt;}
.ws1_c00430{word-spacing:-18.720000pt;}
.ws2_c00430{word-spacing:-15.680000pt;}
.ws0_c00430{word-spacing:-9.066667pt;}
.wsc_c00430{word-spacing:-2.432000pt;}
.ws10_c00430{word-spacing:-2.304000pt;}
.ws14_c00430{word-spacing:-1.333333pt;}
.ws4_c00430{word-spacing:-0.746667pt;}
.wsd_c00430{word-spacing:-0.512000pt;}
.wsf_c00430{word-spacing:-0.128000pt;}
.ws3_c00430{word-spacing:0.000000pt;}
.ws9_c00430{word-spacing:0.064000pt;}
.ws5_c00430{word-spacing:2.496000pt;}
.wsa_c00430{word-spacing:4.096000pt;}
.ws11_c00430{word-spacing:4.224000pt;}
.ws8_c00430{word-spacing:4.352000pt;}
.ws6_c00430{word-spacing:6.720000pt;}
.ws7_c00430{word-spacing:10.304000pt;}
.wse_c00430{word-spacing:10.944000pt;}
.ws13_c00430{word-spacing:11.776000pt;}
.wsb_c00430{word-spacing:11.904000pt;}
.ws12_c00430{word-spacing:12.800000pt;}
._0_c00430{margin-left:-426.966933pt;}
._1_c00430{margin-left:-3.733333pt;}
._3_c00430{margin-left:-2.359467pt;}
._2_c00430{margin-left:-1.280000pt;}
._4_c00430{width:1.664000pt;}
._5_c00430{width:2.999467pt;}
.fs1_c00430{font-size:37.333333pt;}
.fs0_c00430{font-size:53.333333pt;}
.fs5_c00430{font-size:58.666667pt;}
.fs4_c00430{font-size:64.000000pt;}
.fs3_c00430{font-size:74.666667pt;}
.fs2_c00430{font-size:96.000000pt;}
.y0_c00430{bottom:0.000000pt;}
.y1_c00430{bottom:36.666667pt;}
.y15_c00430{bottom:227.815733pt;}
.y14_c00430{bottom:254.487733pt;}
.y13_c00430{bottom:281.159733pt;}
.y12_c00430{bottom:307.831733pt;}
.y11_c00430{bottom:334.503733pt;}
.y10_c00430{bottom:361.175733pt;}
.yf_c00430{bottom:387.847733pt;}
.ye_c00430{bottom:414.519733pt;}
.yd_c00430{bottom:467.853067pt;}
.yc_c00430{bottom:547.810400pt;}
.yb_c00430{bottom:574.482400pt;}
.ya_c00430{bottom:601.154400pt;}
.y1c_c00430{bottom:601.186400pt;}
.y9_c00430{bottom:627.826400pt;}
.y1b_c00430{bottom:627.853067pt;}
.y8_c00430{bottom:654.498400pt;}
.y1a_c00430{bottom:654.519733pt;}
.y7_c00430{bottom:681.170400pt;}
.y19_c00430{bottom:681.186400pt;}
.y6_c00430{bottom:707.842400pt;}
.y18_c00430{bottom:707.853067pt;}
.y5_c00430{bottom:734.514400pt;}
.y17_c00430{bottom:734.519733pt;}
.y4_c00430{bottom:761.186400pt;}
.y16_c00430{bottom:761.223200pt;}
.y3_c00430{bottom:814.519733pt;}
.y2_c00430{bottom:894.519733pt;}
.h6_c00430{height:44.704000pt;}
.h2_c00430{height:48.000000pt;}
.h5_c00430{height:57.600000pt;}
.h4_c00430{height:69.813333pt;}
.h3_c00430{height:89.760000pt;}
.h0_c00430{height:1122.520000pt;}
.h1_c00430{height:1122.666667pt;}
.w0_c00430{width:793.701333pt;}
.w1_c00430{width:794.000000pt;}
.x0_c00430{left:0.000000pt;}
.x2_c00430{left:73.333333pt;}
.x3_c00430{left:80.000000pt;}
.x4_c00430{left:94.666667pt;}
.x5_c00430{left:600.543200pt;}
.x1_c00430{left:701.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.199000;font-style: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);}
.m1_c00431{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls1_c00431{letter-spacing:0.000000px;}
.ls0_c00431{letter-spacing:0.720000px;}
.ls2_c00431{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws4_c00431{word-spacing:-6.336000px;}
.ws3_c00431{word-spacing:-2.160000px;}
.ws7_c00431{word-spacing:-0.864000px;}
.ws2_c00431{word-spacing:-0.840000px;}
.ws1_c00431{word-spacing:0.000000px;}
.wsb_c00431{word-spacing:3.240000px;}
.ws6_c00431{word-spacing:3.816000px;}
.ws9_c00431{word-spacing:7.128000px;}
.ws5_c00431{word-spacing:7.488000px;}
.wsa_c00431{word-spacing:10.728000px;}
.ws8_c00431{word-spacing:11.160000px;}
._0_c00431{margin-left:-480.337200px;}
._3_c00431{margin-left:-6.828000px;}
._1_c00431{margin-left:-4.200000px;}
._2_c00431{margin-left:-1.872000px;}
._4_c00431{width:1.072800px;}
._5_c00431{width:4.809600px;}
.fc2_c00431{color:rgb(32,32,32);}
.fc1_c00431{color:rgb(232,86,17);}
.fc0_c00431{color:rgb(60,60,59);}
.fs1_c00431{font-size:42.000000px;}
.fs0_c00431{font-size:60.000000px;}
.fs3_c00431{font-size:72.000000px;}
.fs2_c00431{font-size:84.000000px;}
.y0_c00431{bottom:0.000000px;}
.y1_c00431{bottom:41.250000px;}
.y11_c00431{bottom:346.304700px;}
.y10_c00431{bottom:376.310700px;}
.yf_c00431{bottom:406.316700px;}
.ye_c00431{bottom:436.322700px;}
.yd_c00431{bottom:466.328700px;}
.yc_c00431{bottom:496.334700px;}
.yb_c00431{bottom:556.334700px;}
.ya_c00431{bottom:646.322700px;}
.y9_c00431{bottom:676.328700px;}
.y8_c00431{bottom:706.334700px;}
.y7_c00431{bottom:766.334700px;}
.y6_c00431{bottom:856.316700px;}
.y5_c00431{bottom:886.322700px;}
.y4_c00431{bottom:916.328700px;}
.y3_c00431{bottom:946.334700px;}
.y2_c00431{bottom:1006.334700px;}
.h2_c00431{height:54.000000px;}
.h5_c00431{height:64.800000px;}
.h4_c00431{height:67.320000px;}
.h3_c00431{height:78.540000px;}
.h0_c00431{height:1262.835000px;}
.h1_c00431{height:1263.000000px;}
.w0_c00431{width:892.914000px;}
.w1_c00431{width:893.250000px;}
.x0_c00431{left:0.000000px;}
.x2_c00431{left:90.000000px;}
.x3_c00431{left:106.500000px;}
.x1_c00431{left:786.863850px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls1_c00431{letter-spacing:0.000000pt;}
.ls0_c00431{letter-spacing:0.640000pt;}
.ls2_c00431{letter-spacing:0.746667pt;}
.ws0_c00431{word-spacing:-9.066667pt;}
.ws4_c00431{word-spacing:-5.632000pt;}
.ws3_c00431{word-spacing:-1.920000pt;}
.ws7_c00431{word-spacing:-0.768000pt;}
.ws2_c00431{word-spacing:-0.746667pt;}
.ws1_c00431{word-spacing:0.000000pt;}
.wsb_c00431{word-spacing:2.880000pt;}
.ws6_c00431{word-spacing:3.392000pt;}
.ws9_c00431{word-spacing:6.336000pt;}
.ws5_c00431{word-spacing:6.656000pt;}
.wsa_c00431{word-spacing:9.536000pt;}
.ws8_c00431{word-spacing:9.920000pt;}
._0_c00431{margin-left:-426.966400pt;}
._3_c00431{margin-left:-6.069333pt;}
._1_c00431{margin-left:-3.733333pt;}
._2_c00431{margin-left:-1.664000pt;}
._4_c00431{width:0.953600pt;}
._5_c00431{width:4.275200pt;}
.fs1_c00431{font-size:37.333333pt;}
.fs0_c00431{font-size:53.333333pt;}
.fs3_c00431{font-size:64.000000pt;}
.fs2_c00431{font-size:74.666667pt;}
.y0_c00431{bottom:0.000000pt;}
.y1_c00431{bottom:36.666667pt;}
.y11_c00431{bottom:307.826400pt;}
.y10_c00431{bottom:334.498400pt;}
.yf_c00431{bottom:361.170400pt;}
.ye_c00431{bottom:387.842400pt;}
.yd_c00431{bottom:414.514400pt;}
.yc_c00431{bottom:441.186400pt;}
.yb_c00431{bottom:494.519733pt;}
.ya_c00431{bottom:574.509067pt;}
.y9_c00431{bottom:601.181067pt;}
.y8_c00431{bottom:627.853067pt;}
.y7_c00431{bottom:681.186400pt;}
.y6_c00431{bottom:761.170400pt;}
.y5_c00431{bottom:787.842400pt;}
.y4_c00431{bottom:814.514400pt;}
.y3_c00431{bottom:841.186400pt;}
.y2_c00431{bottom:894.519733pt;}
.h2_c00431{height:48.000000pt;}
.h5_c00431{height:57.600000pt;}
.h4_c00431{height:59.840000pt;}
.h3_c00431{height:69.813333pt;}
.h0_c00431{height:1122.520000pt;}
.h1_c00431{height:1122.666667pt;}
.w0_c00431{width:793.701333pt;}
.w1_c00431{width:794.000000pt;}
.x0_c00431{left:0.000000pt;}
.x2_c00431{left:80.000000pt;}
.x3_c00431{left:94.666667pt;}
.x1_c00431{left:699.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.160000;font-style:normal;font-weight:normal;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_46ced6c188612be321a98382.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.024000;font-style:normal;font-weight:normal;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_7613350094aa9ba7d0a6da04.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.161000;font-style: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);}
.m1_c00432{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls5_c00432{letter-spacing:-0.324000px;}
.ls4_c00432{letter-spacing:0.000000px;}
.ls1_c00432{letter-spacing:0.720000px;}
.ls0_c00432{letter-spacing:0.840000px;}
.ls3_c00432{letter-spacing:1.500000px;}
.ls2_c00432{letter-spacing:1.650000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00432{word-spacing:-21.276000px;}
.ws2_c00432{word-spacing:-17.640000px;}
.ws3_c00432{word-spacing:-14.850000px;}
.ws0_c00432{word-spacing:-10.200000px;}
.ws10_c00432{word-spacing:-3.096000px;}
.ws7_c00432{word-spacing:-2.952000px;}
.wsa_c00432{word-spacing:-2.664000px;}
.ws11_c00432{word-spacing:-2.160000px;}
.ws17_c00432{word-spacing:-1.500000px;}
.wsd_c00432{word-spacing:-0.936000px;}
.wse_c00432{word-spacing:-0.864000px;}
.ws5_c00432{word-spacing:-0.840000px;}
.ws16_c00432{word-spacing:-0.720000px;}
.wsf_c00432{word-spacing:-0.576000px;}
.ws4_c00432{word-spacing:0.000000px;}
.wsb_c00432{word-spacing:0.504000px;}
.ws15_c00432{word-spacing:1.800000px;}
.ws9_c00432{word-spacing:2.016000px;}
.ws6_c00432{word-spacing:2.880000px;}
.ws12_c00432{word-spacing:3.024000px;}
.ws13_c00432{word-spacing:3.384000px;}
.ws14_c00432{word-spacing:3.600000px;}
.wsc_c00432{word-spacing:4.608000px;}
.ws8_c00432{word-spacing:9.648000px;}
._0_c00432{margin-left:-480.337800px;}
._7_c00432{margin-left:-6.480000px;}
._1_c00432{margin-left:-4.200000px;}
._5_c00432{margin-left:-2.235600px;}
._2_c00432{margin-left:-1.134000px;}
._4_c00432{width:1.018800px;}
._6_c00432{width:2.973600px;}
._3_c00432{width:4.021200px;}
.fc3_c00432{color:rgb(32,32,32);}
.fc2_c00432{color:rgb(233,83,14);}
.fc1_c00432{color:rgb(232,86,17);}
.fc4_c00432{color:rgb(157,157,156);}
.fc0_c00432{color:rgb(60,60,59);}
.fs1_c00432{font-size:42.000000px;}
.fs0_c00432{font-size:60.000000px;}
.fs5_c00432{font-size:66.000000px;}
.fs4_c00432{font-size:72.000000px;}
.fs3_c00432{font-size:84.000000px;}
.fs2_c00432{font-size:108.000000px;}
.y0_c00432{bottom:0.000000px;}
.y1_c00432{bottom:41.250000px;}
.y18_c00432{bottom:76.316700px;}
.y17_c00432{bottom:106.322700px;}
.y16_c00432{bottom:136.328700px;}
.y15_c00432{bottom:166.334700px;}
.y14_c00432{bottom:226.334700px;}
.y13_c00432{bottom:316.298700px;}
.y12_c00432{bottom:346.304700px;}
.y11_c00432{bottom:376.310700px;}
.y10_c00432{bottom:406.316700px;}
.yf_c00432{bottom:436.322700px;}
.ye_c00432{bottom:466.328700px;}
.yd_c00432{bottom:496.334700px;}
.yc_c00432{bottom:556.334700px;}
.yb_c00432{bottom:646.292700px;}
.ya_c00432{bottom:676.298700px;}
.y9_c00432{bottom:706.304700px;}
.y8_c00432{bottom:736.310700px;}
.y1d_c00432{bottom:736.334700px;}
.y7_c00432{bottom:766.316700px;}
.y1c_c00432{bottom:766.334700px;}
.y6_c00432{bottom:796.322700px;}
.y1b_c00432{bottom:796.334700px;}
.y5_c00432{bottom:826.328700px;}
.y1a_c00432{bottom:826.334700px;}
.y4_c00432{bottom:856.334700px;}
.y19_c00432{bottom:856.376100px;}
.y3_c00432{bottom:916.334700px;}
.y2_c00432{bottom:1006.334700px;}
.h6_c00432{height:50.292000px;}
.h2_c00432{height:54.000000px;}
.h5_c00432{height:64.800000px;}
.h4_c00432{height:78.540000px;}
.h3_c00432{height:100.980000px;}
.h0_c00432{height:1262.835000px;}
.h1_c00432{height:1263.000000px;}
.w0_c00432{width:892.914000px;}
.w1_c00432{width:893.250000px;}
.x0_c00432{left:0.000000px;}
.x2_c00432{left:82.500000px;}
.x3_c00432{left:90.000000px;}
.x4_c00432{left:106.500000px;}
.x5_c00432{left:675.611100px;}
.x1_c00432{left:786.714000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls5_c00432{letter-spacing:-0.288000pt;}
.ls4_c00432{letter-spacing:0.000000pt;}
.ls1_c00432{letter-spacing:0.640000pt;}
.ls0_c00432{letter-spacing:0.746667pt;}
.ls3_c00432{letter-spacing:1.333333pt;}
.ls2_c00432{letter-spacing:1.466667pt;}
.ws1_c00432{word-spacing:-18.912000pt;}
.ws2_c00432{word-spacing:-15.680000pt;}
.ws3_c00432{word-spacing:-13.200000pt;}
.ws0_c00432{word-spacing:-9.066667pt;}
.ws10_c00432{word-spacing:-2.752000pt;}
.ws7_c00432{word-spacing:-2.624000pt;}
.wsa_c00432{word-spacing:-2.368000pt;}
.ws11_c00432{word-spacing:-1.920000pt;}
.ws17_c00432{word-spacing:-1.333333pt;}
.wsd_c00432{word-spacing:-0.832000pt;}
.wse_c00432{word-spacing:-0.768000pt;}
.ws5_c00432{word-spacing:-0.746667pt;}
.ws16_c00432{word-spacing:-0.640000pt;}
.wsf_c00432{word-spacing:-0.512000pt;}
.ws4_c00432{word-spacing:0.000000pt;}
.wsb_c00432{word-spacing:0.448000pt;}
.ws15_c00432{word-spacing:1.600000pt;}
.ws9_c00432{word-spacing:1.792000pt;}
.ws6_c00432{word-spacing:2.560000pt;}
.ws12_c00432{word-spacing:2.688000pt;}
.ws13_c00432{word-spacing:3.008000pt;}
.ws14_c00432{word-spacing:3.200000pt;}
.wsc_c00432{word-spacing:4.096000pt;}
.ws8_c00432{word-spacing:8.576000pt;}
._0_c00432{margin-left:-426.966933pt;}
._7_c00432{margin-left:-5.760000pt;}
._1_c00432{margin-left:-3.733333pt;}
._5_c00432{margin-left:-1.987200pt;}
._2_c00432{margin-left:-1.008000pt;}
._4_c00432{width:0.905600pt;}
._6_c00432{width:2.643200pt;}
._3_c00432{width:3.574400pt;}
.fs1_c00432{font-size:37.333333pt;}
.fs0_c00432{font-size:53.333333pt;}
.fs5_c00432{font-size:58.666667pt;}
.fs4_c00432{font-size:64.000000pt;}
.fs3_c00432{font-size:74.666667pt;}
.fs2_c00432{font-size:96.000000pt;}
.y0_c00432{bottom:0.000000pt;}
.y1_c00432{bottom:36.666667pt;}
.y18_c00432{bottom:67.837067pt;}
.y17_c00432{bottom:94.509067pt;}
.y16_c00432{bottom:121.181067pt;}
.y15_c00432{bottom:147.853067pt;}
.y14_c00432{bottom:201.186400pt;}
.y13_c00432{bottom:281.154400pt;}
.y12_c00432{bottom:307.826400pt;}
.y11_c00432{bottom:334.498400pt;}
.y10_c00432{bottom:361.170400pt;}
.yf_c00432{bottom:387.842400pt;}
.ye_c00432{bottom:414.514400pt;}
.yd_c00432{bottom:441.186400pt;}
.yc_c00432{bottom:494.519733pt;}
.yb_c00432{bottom:574.482400pt;}
.ya_c00432{bottom:601.154400pt;}
.y9_c00432{bottom:627.826400pt;}
.y8_c00432{bottom:654.498400pt;}
.y1d_c00432{bottom:654.519733pt;}
.y7_c00432{bottom:681.170400pt;}
.y1c_c00432{bottom:681.186400pt;}
.y6_c00432{bottom:707.842400pt;}
.y1b_c00432{bottom:707.853067pt;}
.y5_c00432{bottom:734.514400pt;}
.y1a_c00432{bottom:734.519733pt;}
.y4_c00432{bottom:761.186400pt;}
.y19_c00432{bottom:761.223200pt;}
.y3_c00432{bottom:814.519733pt;}
.y2_c00432{bottom:894.519733pt;}
.h6_c00432{height:44.704000pt;}
.h2_c00432{height:48.000000pt;}
.h5_c00432{height:57.600000pt;}
.h4_c00432{height:69.813333pt;}
.h3_c00432{height:89.760000pt;}
.h0_c00432{height:1122.520000pt;}
.h1_c00432{height:1122.666667pt;}
.w0_c00432{width:793.701333pt;}
.w1_c00432{width:794.000000pt;}
.x0_c00432{left:0.000000pt;}
.x2_c00432{left:73.333333pt;}
.x3_c00432{left:80.000000pt;}
.x4_c00432{left:94.666667pt;}
.x5_c00432{left:600.543200pt;}
.x1_c00432{left:699.301333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.199000;font-style: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);}
.m1_c00433{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls1_c00433{letter-spacing:0.000000px;}
.ls0_c00433{letter-spacing:0.720000px;}
.ls2_c00433{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws6_c00433{word-spacing:-2.160000px;}
.wsb_c00433{word-spacing:-1.008000px;}
.ws2_c00433{word-spacing:-0.840000px;}
.ws5_c00433{word-spacing:-0.720000px;}
.ws1_c00433{word-spacing:0.000000px;}
.ws7_c00433{word-spacing:2.520000px;}
.wsa_c00433{word-spacing:5.040000px;}
.ws8_c00433{word-spacing:5.904000px;}
.ws9_c00433{word-spacing:8.712000px;}
.ws3_c00433{word-spacing:11.952000px;}
.ws4_c00433{word-spacing:15.912000px;}
._0_c00433{margin-left:-480.337200px;}
._5_c00433{margin-left:-5.760000px;}
._1_c00433{margin-left:-4.200000px;}
._4_c00433{margin-left:-2.834400px;}
._2_c00433{margin-left:-1.440000px;}
._3_c00433{width:3.938400px;}
.fc2_c00433{color:rgb(32,32,32);}
.fc1_c00433{color:rgb(232,86,17);}
.fc0_c00433{color:rgb(60,60,59);}
.fs1_c00433{font-size:42.000000px;}
.fs0_c00433{font-size:60.000000px;}
.fs3_c00433{font-size:72.000000px;}
.fs2_c00433{font-size:84.000000px;}
.y0_c00433{bottom:0.000000px;}
.y1_c00433{bottom:41.250000px;}
.yc_c00433{bottom:586.304700px;}
.yb_c00433{bottom:616.310700px;}
.ya_c00433{bottom:646.316700px;}
.y9_c00433{bottom:676.322700px;}
.y8_c00433{bottom:706.328700px;}
.y7_c00433{bottom:736.334700px;}
.y6_c00433{bottom:796.334700px;}
.y5_c00433{bottom:886.322700px;}
.y4_c00433{bottom:916.328700px;}
.y3_c00433{bottom:946.334700px;}
.y2_c00433{bottom:1006.334700px;}
.h2_c00433{height:54.000000px;}
.h4_c00433{height:64.800000px;}
.h3_c00433{height:78.540000px;}
.h0_c00433{height:1262.835000px;}
.h1_c00433{height:1263.000000px;}
.w0_c00433{width:892.914000px;}
.w1_c00433{width:893.250000px;}
.x0_c00433{left:0.000000px;}
.x2_c00433{left:90.000000px;}
.x3_c00433{left:106.500000px;}
.x1_c00433{left:785.738850px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls1_c00433{letter-spacing:0.000000pt;}
.ls0_c00433{letter-spacing:0.640000pt;}
.ls2_c00433{letter-spacing:0.746667pt;}
.ws0_c00433{word-spacing:-9.066667pt;}
.ws6_c00433{word-spacing:-1.920000pt;}
.wsb_c00433{word-spacing:-0.896000pt;}
.ws2_c00433{word-spacing:-0.746667pt;}
.ws5_c00433{word-spacing:-0.640000pt;}
.ws1_c00433{word-spacing:0.000000pt;}
.ws7_c00433{word-spacing:2.240000pt;}
.wsa_c00433{word-spacing:4.480000pt;}
.ws8_c00433{word-spacing:5.248000pt;}
.ws9_c00433{word-spacing:7.744000pt;}
.ws3_c00433{word-spacing:10.624000pt;}
.ws4_c00433{word-spacing:14.144000pt;}
._0_c00433{margin-left:-426.966400pt;}
._5_c00433{margin-left:-5.120000pt;}
._1_c00433{margin-left:-3.733333pt;}
._4_c00433{margin-left:-2.519467pt;}
._2_c00433{margin-left:-1.280000pt;}
._3_c00433{width:3.500800pt;}
.fs1_c00433{font-size:37.333333pt;}
.fs0_c00433{font-size:53.333333pt;}
.fs3_c00433{font-size:64.000000pt;}
.fs2_c00433{font-size:74.666667pt;}
.y0_c00433{bottom:0.000000pt;}
.y1_c00433{bottom:36.666667pt;}
.yc_c00433{bottom:521.159733pt;}
.yb_c00433{bottom:547.831733pt;}
.ya_c00433{bottom:574.503733pt;}
.y9_c00433{bottom:601.175733pt;}
.y8_c00433{bottom:627.847733pt;}
.y7_c00433{bottom:654.519733pt;}
.y6_c00433{bottom:707.853067pt;}
.y5_c00433{bottom:787.842400pt;}
.y4_c00433{bottom:814.514400pt;}
.y3_c00433{bottom:841.186400pt;}
.y2_c00433{bottom:894.519733pt;}
.h2_c00433{height:48.000000pt;}
.h4_c00433{height:57.600000pt;}
.h3_c00433{height:69.813333pt;}
.h0_c00433{height:1122.520000pt;}
.h1_c00433{height:1122.666667pt;}
.w0_c00433{width:793.701333pt;}
.w1_c00433{width:794.000000pt;}
.x0_c00433{left:0.000000pt;}
.x2_c00433{left:80.000000pt;}
.x3_c00433{left:94.666667pt;}
.x1_c00433{left:698.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00434;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00434{font-family:ff4_c00434;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00434;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00434{font-family:ff5_c00434;line-height:1.155000;font-style: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);}
.m1_c00434{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls2_c00434{letter-spacing:0.000000px;}
.ls0_c00434{letter-spacing:0.864000px;}
.ls1_c00434{letter-spacing:1.200000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00434{word-spacing:-13.104000px;}
.ws4_c00434{word-spacing:-11.664000px;}
.ws6_c00434{word-spacing:-11.304000px;}
.wsa_c00434{word-spacing:-10.944000px;}
.ws0_c00434{word-spacing:-10.200000px;}
.ws9_c00434{word-spacing:-8.064000px;}
.ws8_c00434{word-spacing:-6.840000px;}
.ws5_c00434{word-spacing:-5.904000px;}
.ws3_c00434{word-spacing:-2.952000px;}
.ws7_c00434{word-spacing:-0.864000px;}
.ws2_c00434{word-spacing:0.000000px;}
._0_c00434{margin-left:-480.336600px;}
._5_c00434{margin-left:-16.800000px;}
._1_c00434{margin-left:-4.200000px;}
._4_c00434{margin-left:-3.120000px;}
._2_c00434{margin-left:-1.440000px;}
._3_c00434{width:11.664000px;}
.fc3_c00434{color:rgb(255,255,255);}
.fc2_c00434{color:rgb(233,83,14);}
.fc1_c00434{color:rgb(232,86,17);}
.fc0_c00434{color:rgb(60,60,59);}
.fs1_c00434{font-size:42.000000px;}
.fs0_c00434{font-size:60.000000px;}
.fs3_c00434{font-size:72.000000px;}
.fs4_c00434{font-size:120.000000px;}
.fs2_c00434{font-size:360.000000px;}
.y0_c00434{bottom:0.000000px;}
.y1_c00434{bottom:41.250000px;}
.y13_c00434{bottom:283.250700px;}
.y12_c00434{bottom:304.256700px;}
.y11_c00434{bottom:325.262700px;}
.y10_c00434{bottom:346.268700px;}
.yf_c00434{bottom:403.274700px;}
.ye_c00434{bottom:424.280700px;}
.yd_c00434{bottom:445.286700px;}
.yc_c00434{bottom:466.292700px;}
.yb_c00434{bottom:523.298700px;}
.ya_c00434{bottom:544.304700px;}
.y9_c00434{bottom:565.310700px;}
.y8_c00434{bottom:586.316700px;}
.y7_c00434{bottom:643.322700px;}
.y6_c00434{bottom:664.328700px;}
.y5_c00434{bottom:685.334700px;}
.y4_c00434{bottom:706.340700px;}
.y3_c00434{bottom:752.834700px;}
.y16_c00434{bottom:946.334700px;}
.y15_c00434{bottom:976.334700px;}
.y14_c00434{bottom:1006.334700px;}
.y2_c00434{bottom:1093.526700px;}
.h2_c00434{height:54.000000px;}
.h5_c00434{height:64.800000px;}
.h4_c00434{height:66.456000px;}
.h6_c00434{height:112.200000px;}
.h3_c00434{height:324.000000px;}
.h0_c00434{height:1262.835000px;}
.h1_c00434{height:1263.000000px;}
.w0_c00434{width:892.914000px;}
.w1_c00434{width:893.250000px;}
.x0_c00434{left:0.000000px;}
.x2_c00434{left:81.290250px;}
.x3_c00434{left:82.393650px;}
.x5_c00434{left:112.287450px;}
.x4_c00434{left:127.393650px;}
.x1_c00434{left:786.788700px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls2_c00434{letter-spacing:0.000000pt;}
.ls0_c00434{letter-spacing:0.768000pt;}
.ls1_c00434{letter-spacing:1.066667pt;}
.ws1_c00434{word-spacing:-11.648000pt;}
.ws4_c00434{word-spacing:-10.368000pt;}
.ws6_c00434{word-spacing:-10.048000pt;}
.wsa_c00434{word-spacing:-9.728000pt;}
.ws0_c00434{word-spacing:-9.066667pt;}
.ws9_c00434{word-spacing:-7.168000pt;}
.ws8_c00434{word-spacing:-6.080000pt;}
.ws5_c00434{word-spacing:-5.248000pt;}
.ws3_c00434{word-spacing:-2.624000pt;}
.ws7_c00434{word-spacing:-0.768000pt;}
.ws2_c00434{word-spacing:0.000000pt;}
._0_c00434{margin-left:-426.965867pt;}
._5_c00434{margin-left:-14.933333pt;}
._1_c00434{margin-left:-3.733333pt;}
._4_c00434{margin-left:-2.773333pt;}
._2_c00434{margin-left:-1.280000pt;}
._3_c00434{width:10.368000pt;}
.fs1_c00434{font-size:37.333333pt;}
.fs0_c00434{font-size:53.333333pt;}
.fs3_c00434{font-size:64.000000pt;}
.fs4_c00434{font-size:106.666667pt;}
.fs2_c00434{font-size:320.000000pt;}
.y0_c00434{bottom:0.000000pt;}
.y1_c00434{bottom:36.666667pt;}
.y13_c00434{bottom:251.778400pt;}
.y12_c00434{bottom:270.450400pt;}
.y11_c00434{bottom:289.122400pt;}
.y10_c00434{bottom:307.794400pt;}
.yf_c00434{bottom:358.466400pt;}
.ye_c00434{bottom:377.138400pt;}
.yd_c00434{bottom:395.810400pt;}
.yc_c00434{bottom:414.482400pt;}
.yb_c00434{bottom:465.154400pt;}
.ya_c00434{bottom:483.826400pt;}
.y9_c00434{bottom:502.498400pt;}
.y8_c00434{bottom:521.170400pt;}
.y7_c00434{bottom:571.842400pt;}
.y6_c00434{bottom:590.514400pt;}
.y5_c00434{bottom:609.186400pt;}
.y4_c00434{bottom:627.858400pt;}
.y3_c00434{bottom:669.186400pt;}
.y16_c00434{bottom:841.186400pt;}
.y15_c00434{bottom:867.853067pt;}
.y14_c00434{bottom:894.519733pt;}
.y2_c00434{bottom:972.023733pt;}
.h2_c00434{height:48.000000pt;}
.h5_c00434{height:57.600000pt;}
.h4_c00434{height:59.072000pt;}
.h6_c00434{height:99.733333pt;}
.h3_c00434{height:288.000000pt;}
.h0_c00434{height:1122.520000pt;}
.h1_c00434{height:1122.666667pt;}
.w0_c00434{width:793.701333pt;}
.w1_c00434{width:794.000000pt;}
.x0_c00434{left:0.000000pt;}
.x2_c00434{left:72.258000pt;}
.x3_c00434{left:73.238800pt;}
.x5_c00434{left:99.811067pt;}
.x4_c00434{left:113.238800pt;}
.x1_c00434{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.161000;font-style: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);}
.m1_c00435{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls5_c00435{letter-spacing:-0.540000px;}
.ls4_c00435{letter-spacing:0.000000px;}
.ls0_c00435{letter-spacing:0.720000px;}
.ls1_c00435{letter-spacing:0.840000px;}
.ls3_c00435{letter-spacing:1.500000px;}
.ls2_c00435{letter-spacing:1.650000px;}
.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:-21.060000px;}
.ws2_c00435{word-spacing:-17.640000px;}
.ws0_c00435{word-spacing:-10.200000px;}
.ws6_c00435{word-spacing:-4.680000px;}
.ws5_c00435{word-spacing:-2.376000px;}
.wse_c00435{word-spacing:-2.088000px;}
.ws11_c00435{word-spacing:-1.800000px;}
.wsf_c00435{word-spacing:-1.500000px;}
.ws10_c00435{word-spacing:-1.200000px;}
.ws4_c00435{word-spacing:-0.840000px;}
.ws3_c00435{word-spacing:0.000000px;}
.ws7_c00435{word-spacing:2.016000px;}
.ws8_c00435{word-spacing:2.232000px;}
.wsd_c00435{word-spacing:2.808000px;}
.ws9_c00435{word-spacing:3.672000px;}
.wsb_c00435{word-spacing:4.824000px;}
.wsc_c00435{word-spacing:11.160000px;}
.wsa_c00435{word-spacing:13.680000px;}
._0_c00435{margin-left:-480.337200px;}
._1_c00435{margin-left:-4.200000px;}
._5_c00435{margin-left:-2.671200px;}
._2_c00435{margin-left:-1.598400px;}
._4_c00435{width:1.180800px;}
._3_c00435{width:2.721600px;}
._6_c00435{width:3.751200px;}
.fc3_c00435{color:rgb(32,32,32);}
.fc2_c00435{color:rgb(233,83,14);}
.fc1_c00435{color:rgb(232,86,17);}
.fc4_c00435{color:rgb(157,157,156);}
.fc0_c00435{color:rgb(60,60,59);}
.fs1_c00435{font-size:42.000000px;}
.fs0_c00435{font-size:60.000000px;}
.fs5_c00435{font-size:66.000000px;}
.fs4_c00435{font-size:72.000000px;}
.fs3_c00435{font-size:84.000000px;}
.fs2_c00435{font-size:108.000000px;}
.y0_c00435{bottom:0.000000px;}
.y1_c00435{bottom:41.250000px;}
.y13_c00435{bottom:226.316700px;}
.y12_c00435{bottom:256.322700px;}
.y11_c00435{bottom:286.328700px;}
.y10_c00435{bottom:316.334700px;}
.yf_c00435{bottom:376.334700px;}
.ye_c00435{bottom:466.316700px;}
.yd_c00435{bottom:496.322700px;}
.yc_c00435{bottom:526.328700px;}
.yb_c00435{bottom:556.334700px;}
.ya_c00435{bottom:616.334700px;}
.y1a_c00435{bottom:676.334700px;}
.y9_c00435{bottom:706.304700px;}
.y19_c00435{bottom:706.334700px;}
.y8_c00435{bottom:736.310700px;}
.y18_c00435{bottom:736.334700px;}
.y7_c00435{bottom:766.316700px;}
.y17_c00435{bottom:766.334700px;}
.y6_c00435{bottom:796.322700px;}
.y16_c00435{bottom:796.334700px;}
.y5_c00435{bottom:826.328700px;}
.y15_c00435{bottom:826.334700px;}
.y4_c00435{bottom:856.334700px;}
.y14_c00435{bottom:856.376100px;}
.y3_c00435{bottom:916.334700px;}
.y2_c00435{bottom:1006.334700px;}
.h6_c00435{height:50.292000px;}
.h2_c00435{height:54.000000px;}
.h5_c00435{height:64.800000px;}
.h4_c00435{height:78.540000px;}
.h3_c00435{height:100.980000px;}
.h0_c00435{height:1262.835000px;}
.h1_c00435{height:1263.000000px;}
.w0_c00435{width:892.914000px;}
.w1_c00435{width:893.250000px;}
.x0_c00435{left:0.000000px;}
.x2_c00435{left:82.500000px;}
.x3_c00435{left:90.000000px;}
.x4_c00435{left:106.500000px;}
.x5_c00435{left:675.611100px;}
.x1_c00435{left:785.663850px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls5_c00435{letter-spacing:-0.480000pt;}
.ls4_c00435{letter-spacing:0.000000pt;}
.ls0_c00435{letter-spacing:0.640000pt;}
.ls1_c00435{letter-spacing:0.746667pt;}
.ls3_c00435{letter-spacing:1.333333pt;}
.ls2_c00435{letter-spacing:1.466667pt;}
.ws1_c00435{word-spacing:-18.720000pt;}
.ws2_c00435{word-spacing:-15.680000pt;}
.ws0_c00435{word-spacing:-9.066667pt;}
.ws6_c00435{word-spacing:-4.160000pt;}
.ws5_c00435{word-spacing:-2.112000pt;}
.wse_c00435{word-spacing:-1.856000pt;}
.ws11_c00435{word-spacing:-1.600000pt;}
.wsf_c00435{word-spacing:-1.333333pt;}
.ws10_c00435{word-spacing:-1.066667pt;}
.ws4_c00435{word-spacing:-0.746667pt;}
.ws3_c00435{word-spacing:0.000000pt;}
.ws7_c00435{word-spacing:1.792000pt;}
.ws8_c00435{word-spacing:1.984000pt;}
.wsd_c00435{word-spacing:2.496000pt;}
.ws9_c00435{word-spacing:3.264000pt;}
.wsb_c00435{word-spacing:4.288000pt;}
.wsc_c00435{word-spacing:9.920000pt;}
.wsa_c00435{word-spacing:12.160000pt;}
._0_c00435{margin-left:-426.966400pt;}
._1_c00435{margin-left:-3.733333pt;}
._5_c00435{margin-left:-2.374400pt;}
._2_c00435{margin-left:-1.420800pt;}
._4_c00435{width:1.049600pt;}
._3_c00435{width:2.419200pt;}
._6_c00435{width:3.334400pt;}
.fs1_c00435{font-size:37.333333pt;}
.fs0_c00435{font-size:53.333333pt;}
.fs5_c00435{font-size:58.666667pt;}
.fs4_c00435{font-size:64.000000pt;}
.fs3_c00435{font-size:74.666667pt;}
.fs2_c00435{font-size:96.000000pt;}
.y0_c00435{bottom:0.000000pt;}
.y1_c00435{bottom:36.666667pt;}
.y13_c00435{bottom:201.170400pt;}
.y12_c00435{bottom:227.842400pt;}
.y11_c00435{bottom:254.514400pt;}
.y10_c00435{bottom:281.186400pt;}
.yf_c00435{bottom:334.519733pt;}
.ye_c00435{bottom:414.503733pt;}
.yd_c00435{bottom:441.175733pt;}
.yc_c00435{bottom:467.847733pt;}
.yb_c00435{bottom:494.519733pt;}
.ya_c00435{bottom:547.853067pt;}
.y1a_c00435{bottom:601.186400pt;}
.y9_c00435{bottom:627.826400pt;}
.y19_c00435{bottom:627.853067pt;}
.y8_c00435{bottom:654.498400pt;}
.y18_c00435{bottom:654.519733pt;}
.y7_c00435{bottom:681.170400pt;}
.y17_c00435{bottom:681.186400pt;}
.y6_c00435{bottom:707.842400pt;}
.y16_c00435{bottom:707.853067pt;}
.y5_c00435{bottom:734.514400pt;}
.y15_c00435{bottom:734.519733pt;}
.y4_c00435{bottom:761.186400pt;}
.y14_c00435{bottom:761.223200pt;}
.y3_c00435{bottom:814.519733pt;}
.y2_c00435{bottom:894.519733pt;}
.h6_c00435{height:44.704000pt;}
.h2_c00435{height:48.000000pt;}
.h5_c00435{height:57.600000pt;}
.h4_c00435{height:69.813333pt;}
.h3_c00435{height:89.760000pt;}
.h0_c00435{height:1122.520000pt;}
.h1_c00435{height:1122.666667pt;}
.w0_c00435{width:793.701333pt;}
.w1_c00435{width:794.000000pt;}
.x0_c00435{left:0.000000pt;}
.x2_c00435{left:73.333333pt;}
.x3_c00435{left:80.000000pt;}
.x4_c00435{left:94.666667pt;}
.x5_c00435{left:600.543200pt;}
.x1_c00435{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.199000;font-style: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);}
.m1_c00436{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls2_c00436{letter-spacing:0.000000px;}
.ls0_c00436{letter-spacing:0.720000px;}
.ls1_c00436{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws10_c00436{word-spacing:-8.712000px;}
.wse_c00436{word-spacing:-5.400000px;}
.wsa_c00436{word-spacing:-2.376000px;}
.ws4_c00436{word-spacing:-1.872000px;}
.wsb_c00436{word-spacing:-1.440000px;}
.ws2_c00436{word-spacing:-0.840000px;}
.ws7_c00436{word-spacing:-0.720000px;}
.ws1_c00436{word-spacing:0.000000px;}
.wsf_c00436{word-spacing:1.656000px;}
.wsc_c00436{word-spacing:2.448000px;}
.wsd_c00436{word-spacing:3.456000px;}
.ws9_c00436{word-spacing:5.472000px;}
.ws8_c00436{word-spacing:5.616000px;}
.ws5_c00436{word-spacing:6.192000px;}
.ws3_c00436{word-spacing:7.200000px;}
.ws6_c00436{word-spacing:12.168000px;}
._0_c00436{margin-left:-480.336600px;}
._4_c00436{margin-left:-6.292800px;}
._1_c00436{margin-left:-4.200000px;}
._3_c00436{margin-left:-2.894400px;}
._2_c00436{margin-left:-1.440000px;}
._6_c00436{width:1.051200px;}
._7_c00436{width:2.282400px;}
._5_c00436{width:5.227200px;}
._8_c00436{width:8.712000px;}
.fc2_c00436{color:rgb(32,32,32);}
.fc1_c00436{color:rgb(232,86,17);}
.fc0_c00436{color:rgb(60,60,59);}
.fs1_c00436{font-size:42.000000px;}
.fs0_c00436{font-size:60.000000px;}
.fs3_c00436{font-size:72.000000px;}
.fs2_c00436{font-size:84.000000px;}
.y0_c00436{bottom:0.000000px;}
.y1_c00436{bottom:41.250000px;}
.y13_c00436{bottom:376.310700px;}
.y12_c00436{bottom:406.316700px;}
.y11_c00436{bottom:436.322700px;}
.y10_c00436{bottom:466.328700px;}
.yf_c00436{bottom:496.334700px;}
.ye_c00436{bottom:556.334700px;}
.yd_c00436{bottom:646.274700px;}
.yc_c00436{bottom:676.280700px;}
.yb_c00436{bottom:706.286700px;}
.ya_c00436{bottom:736.292700px;}
.y9_c00436{bottom:766.298700px;}
.y8_c00436{bottom:796.304700px;}
.y7_c00436{bottom:826.310700px;}
.y6_c00436{bottom:856.316700px;}
.y5_c00436{bottom:886.322700px;}
.y4_c00436{bottom:916.328700px;}
.y3_c00436{bottom:946.334700px;}
.y2_c00436{bottom:1006.334700px;}
.h2_c00436{height:54.000000px;}
.h4_c00436{height:64.800000px;}
.h3_c00436{height:78.540000px;}
.h0_c00436{height:1262.835000px;}
.h1_c00436{height:1263.000000px;}
.w0_c00436{width:892.914000px;}
.w1_c00436{width:893.250000px;}
.x0_c00436{left:0.000000px;}
.x2_c00436{left:90.000000px;}
.x3_c00436{left:106.500000px;}
.x1_c00436{left:787.763700px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls2_c00436{letter-spacing:0.000000pt;}
.ls0_c00436{letter-spacing:0.640000pt;}
.ls1_c00436{letter-spacing:0.746667pt;}
.ws0_c00436{word-spacing:-9.066667pt;}
.ws10_c00436{word-spacing:-7.744000pt;}
.wse_c00436{word-spacing:-4.800000pt;}
.wsa_c00436{word-spacing:-2.112000pt;}
.ws4_c00436{word-spacing:-1.664000pt;}
.wsb_c00436{word-spacing:-1.280000pt;}
.ws2_c00436{word-spacing:-0.746667pt;}
.ws7_c00436{word-spacing:-0.640000pt;}
.ws1_c00436{word-spacing:0.000000pt;}
.wsf_c00436{word-spacing:1.472000pt;}
.wsc_c00436{word-spacing:2.176000pt;}
.wsd_c00436{word-spacing:3.072000pt;}
.ws9_c00436{word-spacing:4.864000pt;}
.ws8_c00436{word-spacing:4.992000pt;}
.ws5_c00436{word-spacing:5.504000pt;}
.ws3_c00436{word-spacing:6.400000pt;}
.ws6_c00436{word-spacing:10.816000pt;}
._0_c00436{margin-left:-426.965867pt;}
._4_c00436{margin-left:-5.593600pt;}
._1_c00436{margin-left:-3.733333pt;}
._3_c00436{margin-left:-2.572800pt;}
._2_c00436{margin-left:-1.280000pt;}
._6_c00436{width:0.934400pt;}
._7_c00436{width:2.028800pt;}
._5_c00436{width:4.646400pt;}
._8_c00436{width:7.744000pt;}
.fs1_c00436{font-size:37.333333pt;}
.fs0_c00436{font-size:53.333333pt;}
.fs3_c00436{font-size:64.000000pt;}
.fs2_c00436{font-size:74.666667pt;}
.y0_c00436{bottom:0.000000pt;}
.y1_c00436{bottom:36.666667pt;}
.y13_c00436{bottom:334.498400pt;}
.y12_c00436{bottom:361.170400pt;}
.y11_c00436{bottom:387.842400pt;}
.y10_c00436{bottom:414.514400pt;}
.yf_c00436{bottom:441.186400pt;}
.ye_c00436{bottom:494.519733pt;}
.yd_c00436{bottom:574.466400pt;}
.yc_c00436{bottom:601.138400pt;}
.yb_c00436{bottom:627.810400pt;}
.ya_c00436{bottom:654.482400pt;}
.y9_c00436{bottom:681.154400pt;}
.y8_c00436{bottom:707.826400pt;}
.y7_c00436{bottom:734.498400pt;}
.y6_c00436{bottom:761.170400pt;}
.y5_c00436{bottom:787.842400pt;}
.y4_c00436{bottom:814.514400pt;}
.y3_c00436{bottom:841.186400pt;}
.y2_c00436{bottom:894.519733pt;}
.h2_c00436{height:48.000000pt;}
.h4_c00436{height:57.600000pt;}
.h3_c00436{height:69.813333pt;}
.h0_c00436{height:1122.520000pt;}
.h1_c00436{height:1122.666667pt;}
.w0_c00436{width:793.701333pt;}
.w1_c00436{width:794.000000pt;}
.x0_c00436{left:0.000000pt;}
.x2_c00436{left:80.000000pt;}
.x3_c00436{left:94.666667pt;}
.x1_c00436{left:700.234400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d40c050a446dcdbd73b92a66.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.161000;font-style: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);}
.m1_c00437{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls5_c00437{letter-spacing:-0.324000px;}
.ls6_c00437{letter-spacing:-0.300000px;}
.ls4_c00437{letter-spacing:0.000000px;}
.ls0_c00437{letter-spacing:0.720000px;}
.ls1_c00437{letter-spacing:0.840000px;}
.ls3_c00437{letter-spacing:1.500000px;}
.ls2_c00437{letter-spacing:1.650000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00437{word-spacing:-21.276000px;}
.ws2_c00437{word-spacing:-17.640000px;}
.ws3_c00437{word-spacing:-14.850000px;}
.ws0_c00437{word-spacing:-10.200000px;}
.ws4_c00437{word-spacing:-9.900000px;}
.ws7_c00437{word-spacing:-6.408000px;}
.wsc_c00437{word-spacing:-4.968000px;}
.ws11_c00437{word-spacing:-3.096000px;}
.ws12_c00437{word-spacing:-1.800000px;}
.ws10_c00437{word-spacing:-1.656000px;}
.ws14_c00437{word-spacing:-1.500000px;}
.ws9_c00437{word-spacing:-1.008000px;}
.ws6_c00437{word-spacing:-0.840000px;}
.ws5_c00437{word-spacing:0.000000px;}
.wsa_c00437{word-spacing:1.008000px;}
.wsf_c00437{word-spacing:2.664000px;}
.ws8_c00437{word-spacing:3.888000px;}
.wse_c00437{word-spacing:4.032000px;}
.wsb_c00437{word-spacing:5.040000px;}
.ws13_c00437{word-spacing:7.704000px;}
.wsd_c00437{word-spacing:11.664000px;}
._0_c00437{margin-left:-480.337200px;}
._3_c00437{margin-left:-5.646000px;}
._1_c00437{margin-left:-4.200000px;}
._4_c00437{margin-left:-2.358000px;}
._2_c00437{margin-left:-1.134000px;}
._5_c00437{width:2.124000px;}
.fc3_c00437{color:rgb(32,32,32);}
.fc2_c00437{color:rgb(233,83,14);}
.fc1_c00437{color:rgb(232,86,17);}
.fc4_c00437{color:rgb(157,157,156);}
.fc0_c00437{color:rgb(60,60,59);}
.fs1_c00437{font-size:42.000000px;}
.fs0_c00437{font-size:60.000000px;}
.fs5_c00437{font-size:66.000000px;}
.fs4_c00437{font-size:72.000000px;}
.fs3_c00437{font-size:84.000000px;}
.fs2_c00437{font-size:108.000000px;}
.y0_c00437{bottom:0.000000px;}
.y1_c00437{bottom:41.250000px;}
.y13_c00437{bottom:226.316700px;}
.y12_c00437{bottom:256.322700px;}
.y11_c00437{bottom:286.328700px;}
.y10_c00437{bottom:316.334700px;}
.yf_c00437{bottom:376.334700px;}
.ye_c00437{bottom:466.316700px;}
.yd_c00437{bottom:496.322700px;}
.yc_c00437{bottom:526.328700px;}
.yb_c00437{bottom:556.334700px;}
.ya_c00437{bottom:616.334700px;}
.y9_c00437{bottom:706.304700px;}
.y19_c00437{bottom:706.334700px;}
.y8_c00437{bottom:736.310700px;}
.y18_c00437{bottom:736.334700px;}
.y7_c00437{bottom:766.316700px;}
.y17_c00437{bottom:766.334700px;}
.y6_c00437{bottom:796.322700px;}
.y16_c00437{bottom:796.334700px;}
.y5_c00437{bottom:826.328700px;}
.y15_c00437{bottom:826.334700px;}
.y4_c00437{bottom:856.334700px;}
.y14_c00437{bottom:856.376100px;}
.y3_c00437{bottom:916.334700px;}
.y2_c00437{bottom:1006.334700px;}
.h6_c00437{height:50.292000px;}
.h2_c00437{height:54.000000px;}
.h5_c00437{height:64.800000px;}
.h4_c00437{height:78.540000px;}
.h3_c00437{height:100.980000px;}
.h0_c00437{height:1262.835000px;}
.h1_c00437{height:1263.000000px;}
.w0_c00437{width:892.914000px;}
.w1_c00437{width:893.250000px;}
.x0_c00437{left:0.000000px;}
.x2_c00437{left:82.500000px;}
.x3_c00437{left:90.000000px;}
.x4_c00437{left:106.500000px;}
.x5_c00437{left:675.611100px;}
.x1_c00437{left:785.738850px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls5_c00437{letter-spacing:-0.288000pt;}
.ls6_c00437{letter-spacing:-0.266667pt;}
.ls4_c00437{letter-spacing:0.000000pt;}
.ls0_c00437{letter-spacing:0.640000pt;}
.ls1_c00437{letter-spacing:0.746667pt;}
.ls3_c00437{letter-spacing:1.333333pt;}
.ls2_c00437{letter-spacing:1.466667pt;}
.ws1_c00437{word-spacing:-18.912000pt;}
.ws2_c00437{word-spacing:-15.680000pt;}
.ws3_c00437{word-spacing:-13.200000pt;}
.ws0_c00437{word-spacing:-9.066667pt;}
.ws4_c00437{word-spacing:-8.800000pt;}
.ws7_c00437{word-spacing:-5.696000pt;}
.wsc_c00437{word-spacing:-4.416000pt;}
.ws11_c00437{word-spacing:-2.752000pt;}
.ws12_c00437{word-spacing:-1.600000pt;}
.ws10_c00437{word-spacing:-1.472000pt;}
.ws14_c00437{word-spacing:-1.333333pt;}
.ws9_c00437{word-spacing:-0.896000pt;}
.ws6_c00437{word-spacing:-0.746667pt;}
.ws5_c00437{word-spacing:0.000000pt;}
.wsa_c00437{word-spacing:0.896000pt;}
.wsf_c00437{word-spacing:2.368000pt;}
.ws8_c00437{word-spacing:3.456000pt;}
.wse_c00437{word-spacing:3.584000pt;}
.wsb_c00437{word-spacing:4.480000pt;}
.ws13_c00437{word-spacing:6.848000pt;}
.wsd_c00437{word-spacing:10.368000pt;}
._0_c00437{margin-left:-426.966400pt;}
._3_c00437{margin-left:-5.018667pt;}
._1_c00437{margin-left:-3.733333pt;}
._4_c00437{margin-left:-2.096000pt;}
._2_c00437{margin-left:-1.008000pt;}
._5_c00437{width:1.888000pt;}
.fs1_c00437{font-size:37.333333pt;}
.fs0_c00437{font-size:53.333333pt;}
.fs5_c00437{font-size:58.666667pt;}
.fs4_c00437{font-size:64.000000pt;}
.fs3_c00437{font-size:74.666667pt;}
.fs2_c00437{font-size:96.000000pt;}
.y0_c00437{bottom:0.000000pt;}
.y1_c00437{bottom:36.666667pt;}
.y13_c00437{bottom:201.170400pt;}
.y12_c00437{bottom:227.842400pt;}
.y11_c00437{bottom:254.514400pt;}
.y10_c00437{bottom:281.186400pt;}
.yf_c00437{bottom:334.519733pt;}
.ye_c00437{bottom:414.503733pt;}
.yd_c00437{bottom:441.175733pt;}
.yc_c00437{bottom:467.847733pt;}
.yb_c00437{bottom:494.519733pt;}
.ya_c00437{bottom:547.853067pt;}
.y9_c00437{bottom:627.826400pt;}
.y19_c00437{bottom:627.853067pt;}
.y8_c00437{bottom:654.498400pt;}
.y18_c00437{bottom:654.519733pt;}
.y7_c00437{bottom:681.170400pt;}
.y17_c00437{bottom:681.186400pt;}
.y6_c00437{bottom:707.842400pt;}
.y16_c00437{bottom:707.853067pt;}
.y5_c00437{bottom:734.514400pt;}
.y15_c00437{bottom:734.519733pt;}
.y4_c00437{bottom:761.186400pt;}
.y14_c00437{bottom:761.223200pt;}
.y3_c00437{bottom:814.519733pt;}
.y2_c00437{bottom:894.519733pt;}
.h6_c00437{height:44.704000pt;}
.h2_c00437{height:48.000000pt;}
.h5_c00437{height:57.600000pt;}
.h4_c00437{height:69.813333pt;}
.h3_c00437{height:89.760000pt;}
.h0_c00437{height:1122.520000pt;}
.h1_c00437{height:1122.666667pt;}
.w0_c00437{width:793.701333pt;}
.w1_c00437{width:794.000000pt;}
.x0_c00437{left:0.000000pt;}
.x2_c00437{left:73.333333pt;}
.x3_c00437{left:80.000000pt;}
.x4_c00437{left:94.666667pt;}
.x5_c00437{left:600.543200pt;}
.x1_c00437{left:698.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f0146705d46c3af5096eb9.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00438{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls1_c00438{letter-spacing:0.000000px;}
.ls0_c00438{letter-spacing:0.720000px;}
.ls2_c00438{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsc_c00438{word-spacing:-3.960000px;}
.ws4_c00438{word-spacing:-2.592000px;}
.wsf_c00438{word-spacing:-2.304000px;}
.wsb_c00438{word-spacing:-1.368000px;}
.ws2_c00438{word-spacing:-0.840000px;}
.ws9_c00438{word-spacing:-0.720000px;}
.wsa_c00438{word-spacing:-0.432000px;}
.ws1_c00438{word-spacing:0.000000px;}
.ws5_c00438{word-spacing:0.288000px;}
.ws6_c00438{word-spacing:3.600000px;}
.wse_c00438{word-spacing:3.744000px;}
.wsd_c00438{word-spacing:5.184000px;}
.ws8_c00438{word-spacing:6.048000px;}
.ws3_c00438{word-spacing:8.352000px;}
.ws7_c00438{word-spacing:9.792000px;}
._0_c00438{margin-left:-480.337200px;}
._4_c00438{margin-left:-5.508000px;}
._1_c00438{margin-left:-4.200000px;}
._3_c00438{margin-left:-3.038400px;}
._2_c00438{margin-left:-1.440000px;}
._5_c00438{width:2.282400px;}
._6_c00438{width:3.960000px;}
.fc2_c00438{color:rgb(32,32,32);}
.fc1_c00438{color:rgb(232,86,17);}
.fc0_c00438{color:rgb(60,60,59);}
.fs1_c00438{font-size:42.000000px;}
.fs0_c00438{font-size:60.000000px;}
.fs3_c00438{font-size:72.000000px;}
.fs2_c00438{font-size:84.000000px;}
.y0_c00438{bottom:0.000000px;}
.y1_c00438{bottom:41.250000px;}
.y11_c00438{bottom:436.316700px;}
.y10_c00438{bottom:466.322700px;}
.yf_c00438{bottom:496.328700px;}
.ye_c00438{bottom:526.334700px;}
.yd_c00438{bottom:586.334700px;}
.yc_c00438{bottom:676.280700px;}
.yb_c00438{bottom:706.286700px;}
.ya_c00438{bottom:736.292700px;}
.y9_c00438{bottom:766.298700px;}
.y8_c00438{bottom:796.304700px;}
.y7_c00438{bottom:826.310700px;}
.y6_c00438{bottom:856.316700px;}
.y5_c00438{bottom:886.322700px;}
.y4_c00438{bottom:916.328700px;}
.y3_c00438{bottom:946.334700px;}
.y2_c00438{bottom:1006.334700px;}
.h2_c00438{height:54.000000px;}
.h4_c00438{height:64.800000px;}
.h3_c00438{height:78.540000px;}
.h0_c00438{height:1262.835000px;}
.h1_c00438{height:1263.000000px;}
.w0_c00438{width:892.914000px;}
.w1_c00438{width:893.250000px;}
.x0_c00438{left:0.000000px;}
.x2_c00438{left:90.000000px;}
.x3_c00438{left:106.500000px;}
.x1_c00438{left:785.663850px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls1_c00438{letter-spacing:0.000000pt;}
.ls0_c00438{letter-spacing:0.640000pt;}
.ls2_c00438{letter-spacing:0.746667pt;}
.ws0_c00438{word-spacing:-9.066667pt;}
.wsc_c00438{word-spacing:-3.520000pt;}
.ws4_c00438{word-spacing:-2.304000pt;}
.wsf_c00438{word-spacing:-2.048000pt;}
.wsb_c00438{word-spacing:-1.216000pt;}
.ws2_c00438{word-spacing:-0.746667pt;}
.ws9_c00438{word-spacing:-0.640000pt;}
.wsa_c00438{word-spacing:-0.384000pt;}
.ws1_c00438{word-spacing:0.000000pt;}
.ws5_c00438{word-spacing:0.256000pt;}
.ws6_c00438{word-spacing:3.200000pt;}
.wse_c00438{word-spacing:3.328000pt;}
.wsd_c00438{word-spacing:4.608000pt;}
.ws8_c00438{word-spacing:5.376000pt;}
.ws3_c00438{word-spacing:7.424000pt;}
.ws7_c00438{word-spacing:8.704000pt;}
._0_c00438{margin-left:-426.966400pt;}
._4_c00438{margin-left:-4.896000pt;}
._1_c00438{margin-left:-3.733333pt;}
._3_c00438{margin-left:-2.700800pt;}
._2_c00438{margin-left:-1.280000pt;}
._5_c00438{width:2.028800pt;}
._6_c00438{width:3.520000pt;}
.fs1_c00438{font-size:37.333333pt;}
.fs0_c00438{font-size:53.333333pt;}
.fs3_c00438{font-size:64.000000pt;}
.fs2_c00438{font-size:74.666667pt;}
.y0_c00438{bottom:0.000000pt;}
.y1_c00438{bottom:36.666667pt;}
.y11_c00438{bottom:387.837067pt;}
.y10_c00438{bottom:414.509067pt;}
.yf_c00438{bottom:441.181067pt;}
.ye_c00438{bottom:467.853067pt;}
.yd_c00438{bottom:521.186400pt;}
.yc_c00438{bottom:601.138400pt;}
.yb_c00438{bottom:627.810400pt;}
.ya_c00438{bottom:654.482400pt;}
.y9_c00438{bottom:681.154400pt;}
.y8_c00438{bottom:707.826400pt;}
.y7_c00438{bottom:734.498400pt;}
.y6_c00438{bottom:761.170400pt;}
.y5_c00438{bottom:787.842400pt;}
.y4_c00438{bottom:814.514400pt;}
.y3_c00438{bottom:841.186400pt;}
.y2_c00438{bottom:894.519733pt;}
.h2_c00438{height:48.000000pt;}
.h4_c00438{height:57.600000pt;}
.h3_c00438{height:69.813333pt;}
.h0_c00438{height:1122.520000pt;}
.h1_c00438{height:1122.666667pt;}
.w0_c00438{width:793.701333pt;}
.w1_c00438{width:794.000000pt;}
.x0_c00438{left:0.000000pt;}
.x2_c00438{left:80.000000pt;}
.x3_c00438{left:94.666667pt;}
.x1_c00438{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00439;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00439{font-family:ff5_c00439;line-height:1.155000;font-style: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);}
.m1_c00439{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls2_c00439{letter-spacing:0.000000px;}
.ls0_c00439{letter-spacing:0.864000px;}
.ls1_c00439{letter-spacing:1.200000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00439{word-spacing:-13.104000px;}
.ws4_c00439{word-spacing:-11.664000px;}
.ws6_c00439{word-spacing:-11.304000px;}
.ws9_c00439{word-spacing:-10.944000px;}
.ws0_c00439{word-spacing:-10.200000px;}
.ws8_c00439{word-spacing:-8.064000px;}
.wsa_c00439{word-spacing:-6.840000px;}
.ws5_c00439{word-spacing:-5.904000px;}
.ws3_c00439{word-spacing:-2.952000px;}
.wsb_c00439{word-spacing:-1.200000px;}
.ws7_c00439{word-spacing:-0.864000px;}
.ws2_c00439{word-spacing:0.000000px;}
._0_c00439{margin-left:-480.337200px;}
._4_c00439{margin-left:-16.800000px;}
._5_c00439{margin-left:-12.360000px;}
._6_c00439{margin-left:-7.200000px;}
._1_c00439{margin-left:-4.200000px;}
._2_c00439{margin-left:-1.440000px;}
._7_c00439{width:2.040000px;}
._3_c00439{width:11.664000px;}
.fc3_c00439{color:rgb(255,255,255);}
.fc2_c00439{color:rgb(233,83,14);}
.fc1_c00439{color:rgb(232,86,17);}
.fc0_c00439{color:rgb(60,60,59);}
.fs1_c00439{font-size:42.000000px;}
.fs0_c00439{font-size:60.000000px;}
.fs3_c00439{font-size:72.000000px;}
.fs4_c00439{font-size:120.000000px;}
.fs2_c00439{font-size:360.000000px;}
.y0_c00439{bottom:0.000000px;}
.y1_c00439{bottom:41.250000px;}
.y13_c00439{bottom:283.250700px;}
.y12_c00439{bottom:304.256700px;}
.y11_c00439{bottom:325.262700px;}
.y10_c00439{bottom:346.268700px;}
.yf_c00439{bottom:403.274700px;}
.ye_c00439{bottom:424.280700px;}
.yd_c00439{bottom:445.286700px;}
.yc_c00439{bottom:466.292700px;}
.yb_c00439{bottom:523.298700px;}
.ya_c00439{bottom:544.304700px;}
.y9_c00439{bottom:565.310700px;}
.y8_c00439{bottom:586.316700px;}
.y7_c00439{bottom:643.322700px;}
.y6_c00439{bottom:664.328700px;}
.y5_c00439{bottom:685.334700px;}
.y4_c00439{bottom:706.340700px;}
.y3_c00439{bottom:752.834700px;}
.y17_c00439{bottom:916.334700px;}
.y16_c00439{bottom:946.334700px;}
.y15_c00439{bottom:976.334700px;}
.y14_c00439{bottom:1006.334700px;}
.y2_c00439{bottom:1093.526700px;}
.h2_c00439{height:54.000000px;}
.h5_c00439{height:64.800000px;}
.h4_c00439{height:66.456000px;}
.h6_c00439{height:112.200000px;}
.h3_c00439{height:324.000000px;}
.h0_c00439{height:1262.835000px;}
.h1_c00439{height:1263.000000px;}
.w0_c00439{width:892.914000px;}
.w1_c00439{width:893.250000px;}
.x0_c00439{left:0.000000px;}
.x2_c00439{left:81.290250px;}
.x3_c00439{left:82.393650px;}
.x5_c00439{left:112.287450px;}
.x4_c00439{left:127.393650px;}
.x1_c00439{left:784.703850px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls2_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:0.768000pt;}
.ls1_c00439{letter-spacing:1.066667pt;}
.ws1_c00439{word-spacing:-11.648000pt;}
.ws4_c00439{word-spacing:-10.368000pt;}
.ws6_c00439{word-spacing:-10.048000pt;}
.ws9_c00439{word-spacing:-9.728000pt;}
.ws0_c00439{word-spacing:-9.066667pt;}
.ws8_c00439{word-spacing:-7.168000pt;}
.wsa_c00439{word-spacing:-6.080000pt;}
.ws5_c00439{word-spacing:-5.248000pt;}
.ws3_c00439{word-spacing:-2.624000pt;}
.wsb_c00439{word-spacing:-1.066667pt;}
.ws7_c00439{word-spacing:-0.768000pt;}
.ws2_c00439{word-spacing:0.000000pt;}
._0_c00439{margin-left:-426.966400pt;}
._4_c00439{margin-left:-14.933333pt;}
._5_c00439{margin-left:-10.986667pt;}
._6_c00439{margin-left:-6.400000pt;}
._1_c00439{margin-left:-3.733333pt;}
._2_c00439{margin-left:-1.280000pt;}
._7_c00439{width:1.813333pt;}
._3_c00439{width:10.368000pt;}
.fs1_c00439{font-size:37.333333pt;}
.fs0_c00439{font-size:53.333333pt;}
.fs3_c00439{font-size:64.000000pt;}
.fs4_c00439{font-size:106.666667pt;}
.fs2_c00439{font-size:320.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.y1_c00439{bottom:36.666667pt;}
.y13_c00439{bottom:251.778400pt;}
.y12_c00439{bottom:270.450400pt;}
.y11_c00439{bottom:289.122400pt;}
.y10_c00439{bottom:307.794400pt;}
.yf_c00439{bottom:358.466400pt;}
.ye_c00439{bottom:377.138400pt;}
.yd_c00439{bottom:395.810400pt;}
.yc_c00439{bottom:414.482400pt;}
.yb_c00439{bottom:465.154400pt;}
.ya_c00439{bottom:483.826400pt;}
.y9_c00439{bottom:502.498400pt;}
.y8_c00439{bottom:521.170400pt;}
.y7_c00439{bottom:571.842400pt;}
.y6_c00439{bottom:590.514400pt;}
.y5_c00439{bottom:609.186400pt;}
.y4_c00439{bottom:627.858400pt;}
.y3_c00439{bottom:669.186400pt;}
.y17_c00439{bottom:814.519733pt;}
.y16_c00439{bottom:841.186400pt;}
.y15_c00439{bottom:867.853067pt;}
.y14_c00439{bottom:894.519733pt;}
.y2_c00439{bottom:972.023733pt;}
.h2_c00439{height:48.000000pt;}
.h5_c00439{height:57.600000pt;}
.h4_c00439{height:59.072000pt;}
.h6_c00439{height:99.733333pt;}
.h3_c00439{height:288.000000pt;}
.h0_c00439{height:1122.520000pt;}
.h1_c00439{height:1122.666667pt;}
.w0_c00439{width:793.701333pt;}
.w1_c00439{width:794.000000pt;}
.x0_c00439{left:0.000000pt;}
.x2_c00439{left:72.258000pt;}
.x3_c00439{left:73.238800pt;}
.x5_c00439{left:99.811067pt;}
.x4_c00439{left:113.238800pt;}
.x1_c00439{left:697.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00440;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:1.161000;font-style: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);}
.m1_c00440{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls5_c00440{letter-spacing:-0.540000px;}
.ls4_c00440{letter-spacing:0.000000px;}
.ls0_c00440{letter-spacing:0.720000px;}
.ls1_c00440{letter-spacing:0.840000px;}
.ls3_c00440{letter-spacing:1.500000px;}
.ls2_c00440{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00440{word-spacing:-21.060000px;}
.ws2_c00440{word-spacing:-17.640000px;}
.ws0_c00440{word-spacing:-10.200000px;}
.ws10_c00440{word-spacing:-1.800000px;}
.wsf_c00440{word-spacing:-1.500000px;}
.ws4_c00440{word-spacing:-0.840000px;}
.ws6_c00440{word-spacing:-0.720000px;}
.ws5_c00440{word-spacing:-0.648000px;}
.ws3_c00440{word-spacing:0.000000px;}
.ws8_c00440{word-spacing:2.448000px;}
.wsa_c00440{word-spacing:4.680000px;}
.ws9_c00440{word-spacing:5.184000px;}
.wse_c00440{word-spacing:6.552000px;}
.wsd_c00440{word-spacing:7.344000px;}
.wsb_c00440{word-spacing:8.352000px;}
.wsc_c00440{word-spacing:8.856000px;}
.ws7_c00440{word-spacing:11.448000px;}
._0_c00440{margin-left:-480.337200px;}
._5_c00440{margin-left:-7.293600px;}
._4_c00440{margin-left:-5.760000px;}
._1_c00440{margin-left:-4.200000px;}
._6_c00440{margin-left:-2.990400px;}
._3_c00440{margin-left:-1.440000px;}
._2_c00440{width:2.008800px;}
.fc3_c00440{color:rgb(32,32,32);}
.fc2_c00440{color:rgb(233,83,14);}
.fc1_c00440{color:rgb(232,86,17);}
.fc4_c00440{color:rgb(157,157,156);}
.fc0_c00440{color:rgb(60,60,59);}
.fs1_c00440{font-size:42.000000px;}
.fs0_c00440{font-size:60.000000px;}
.fs5_c00440{font-size:66.000000px;}
.fs4_c00440{font-size:72.000000px;}
.fs3_c00440{font-size:84.000000px;}
.fs2_c00440{font-size:108.000000px;}
.y0_c00440{bottom:0.000000px;}
.y1_c00440{bottom:41.250000px;}
.y11_c00440{bottom:376.322700px;}
.y10_c00440{bottom:406.328700px;}
.yf_c00440{bottom:436.334700px;}
.ye_c00440{bottom:496.334700px;}
.yd_c00440{bottom:586.280700px;}
.yc_c00440{bottom:616.286700px;}
.yb_c00440{bottom:646.292700px;}
.ya_c00440{bottom:676.298700px;}
.y9_c00440{bottom:706.304700px;}
.y17_c00440{bottom:706.334700px;}
.y8_c00440{bottom:736.310700px;}
.y16_c00440{bottom:736.334700px;}
.y7_c00440{bottom:766.316700px;}
.y15_c00440{bottom:766.334700px;}
.y6_c00440{bottom:796.322700px;}
.y14_c00440{bottom:796.334700px;}
.y5_c00440{bottom:826.328700px;}
.y13_c00440{bottom:826.334700px;}
.y4_c00440{bottom:856.334700px;}
.y12_c00440{bottom:856.376100px;}
.y3_c00440{bottom:916.334700px;}
.y2_c00440{bottom:1006.334700px;}
.h6_c00440{height:50.292000px;}
.h2_c00440{height:54.000000px;}
.h5_c00440{height:64.800000px;}
.h4_c00440{height:78.540000px;}
.h3_c00440{height:100.980000px;}
.h0_c00440{height:1262.835000px;}
.h1_c00440{height:1263.000000px;}
.w0_c00440{width:892.914000px;}
.w1_c00440{width:893.250000px;}
.x0_c00440{left:0.000000px;}
.x2_c00440{left:82.500000px;}
.x3_c00440{left:90.000000px;}
.x4_c00440{left:106.500000px;}
.x5_c00440{left:675.611100px;}
.x1_c00440{left:788.363850px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls5_c00440{letter-spacing:-0.480000pt;}
.ls4_c00440{letter-spacing:0.000000pt;}
.ls0_c00440{letter-spacing:0.640000pt;}
.ls1_c00440{letter-spacing:0.746667pt;}
.ls3_c00440{letter-spacing:1.333333pt;}
.ls2_c00440{letter-spacing:1.466667pt;}
.ws1_c00440{word-spacing:-18.720000pt;}
.ws2_c00440{word-spacing:-15.680000pt;}
.ws0_c00440{word-spacing:-9.066667pt;}
.ws10_c00440{word-spacing:-1.600000pt;}
.wsf_c00440{word-spacing:-1.333333pt;}
.ws4_c00440{word-spacing:-0.746667pt;}
.ws6_c00440{word-spacing:-0.640000pt;}
.ws5_c00440{word-spacing:-0.576000pt;}
.ws3_c00440{word-spacing:0.000000pt;}
.ws8_c00440{word-spacing:2.176000pt;}
.wsa_c00440{word-spacing:4.160000pt;}
.ws9_c00440{word-spacing:4.608000pt;}
.wse_c00440{word-spacing:5.824000pt;}
.wsd_c00440{word-spacing:6.528000pt;}
.wsb_c00440{word-spacing:7.424000pt;}
.wsc_c00440{word-spacing:7.872000pt;}
.ws7_c00440{word-spacing:10.176000pt;}
._0_c00440{margin-left:-426.966400pt;}
._5_c00440{margin-left:-6.483200pt;}
._4_c00440{margin-left:-5.120000pt;}
._1_c00440{margin-left:-3.733333pt;}
._6_c00440{margin-left:-2.658133pt;}
._3_c00440{margin-left:-1.280000pt;}
._2_c00440{width:1.785600pt;}
.fs1_c00440{font-size:37.333333pt;}
.fs0_c00440{font-size:53.333333pt;}
.fs5_c00440{font-size:58.666667pt;}
.fs4_c00440{font-size:64.000000pt;}
.fs3_c00440{font-size:74.666667pt;}
.fs2_c00440{font-size:96.000000pt;}
.y0_c00440{bottom:0.000000pt;}
.y1_c00440{bottom:36.666667pt;}
.y11_c00440{bottom:334.509067pt;}
.y10_c00440{bottom:361.181067pt;}
.yf_c00440{bottom:387.853067pt;}
.ye_c00440{bottom:441.186400pt;}
.yd_c00440{bottom:521.138400pt;}
.yc_c00440{bottom:547.810400pt;}
.yb_c00440{bottom:574.482400pt;}
.ya_c00440{bottom:601.154400pt;}
.y9_c00440{bottom:627.826400pt;}
.y17_c00440{bottom:627.853067pt;}
.y8_c00440{bottom:654.498400pt;}
.y16_c00440{bottom:654.519733pt;}
.y7_c00440{bottom:681.170400pt;}
.y15_c00440{bottom:681.186400pt;}
.y6_c00440{bottom:707.842400pt;}
.y14_c00440{bottom:707.853067pt;}
.y5_c00440{bottom:734.514400pt;}
.y13_c00440{bottom:734.519733pt;}
.y4_c00440{bottom:761.186400pt;}
.y12_c00440{bottom:761.223200pt;}
.y3_c00440{bottom:814.519733pt;}
.y2_c00440{bottom:894.519733pt;}
.h6_c00440{height:44.704000pt;}
.h2_c00440{height:48.000000pt;}
.h5_c00440{height:57.600000pt;}
.h4_c00440{height:69.813333pt;}
.h3_c00440{height:89.760000pt;}
.h0_c00440{height:1122.520000pt;}
.h1_c00440{height:1122.666667pt;}
.w0_c00440{width:793.701333pt;}
.w1_c00440{width:794.000000pt;}
.x0_c00440{left:0.000000pt;}
.x2_c00440{left:73.333333pt;}
.x3_c00440{left:80.000000pt;}
.x4_c00440{left:94.666667pt;}
.x5_c00440{left:600.543200pt;}
.x1_c00440{left:700.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.199000;font-style: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);}
.m1_c00441{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls2_c00441{letter-spacing:0.000000px;}
.ls0_c00441{letter-spacing:0.720000px;}
.ls1_c00441{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws11_c00441{word-spacing:-9.864000px;}
.wsf_c00441{word-spacing:-3.816000px;}
.ws8_c00441{word-spacing:-3.384000px;}
.wse_c00441{word-spacing:-1.944000px;}
.wsa_c00441{word-spacing:-1.728000px;}
.ws6_c00441{word-spacing:-1.584000px;}
.ws2_c00441{word-spacing:-0.840000px;}
.ws9_c00441{word-spacing:-0.504000px;}
.ws1_c00441{word-spacing:0.000000px;}
.ws5_c00441{word-spacing:0.216000px;}
.wsd_c00441{word-spacing:1.080000px;}
.wsc_c00441{word-spacing:1.944000px;}
.ws7_c00441{word-spacing:2.880000px;}
.ws3_c00441{word-spacing:6.480000px;}
.ws4_c00441{word-spacing:6.552000px;}
.wsb_c00441{word-spacing:9.216000px;}
.ws10_c00441{word-spacing:10.008000px;}
._0_c00441{margin-left:-480.336600px;}
._1_c00441{margin-left:-4.200000px;}
._4_c00441{margin-left:-3.052800px;}
._2_c00441{margin-left:-1.440000px;}
._3_c00441{width:1.900800px;}
._5_c00441{width:3.945600px;}
.fc2_c00441{color:rgb(32,32,32);}
.fc1_c00441{color:rgb(232,86,17);}
.fc0_c00441{color:rgb(60,60,59);}
.fs1_c00441{font-size:42.000000px;}
.fs0_c00441{font-size:60.000000px;}
.fs3_c00441{font-size:72.000000px;}
.fs2_c00441{font-size:84.000000px;}
.y0_c00441{bottom:0.000000px;}
.y1_c00441{bottom:41.250000px;}
.y16_c00441{bottom:196.310700px;}
.y15_c00441{bottom:226.316700px;}
.y14_c00441{bottom:256.322700px;}
.y13_c00441{bottom:286.328700px;}
.y12_c00441{bottom:316.334700px;}
.y11_c00441{bottom:376.334700px;}
.y10_c00441{bottom:466.292700px;}
.yf_c00441{bottom:496.298700px;}
.ye_c00441{bottom:526.304700px;}
.yd_c00441{bottom:556.310700px;}
.yc_c00441{bottom:586.316700px;}
.yb_c00441{bottom:616.322700px;}
.ya_c00441{bottom:646.328700px;}
.y9_c00441{bottom:676.334700px;}
.y8_c00441{bottom:736.334700px;}
.y7_c00441{bottom:826.310700px;}
.y6_c00441{bottom:856.316700px;}
.y5_c00441{bottom:886.322700px;}
.y4_c00441{bottom:916.328700px;}
.y3_c00441{bottom:946.334700px;}
.y2_c00441{bottom:1006.334700px;}
.h2_c00441{height:54.000000px;}
.h4_c00441{height:64.800000px;}
.h3_c00441{height:78.540000px;}
.h0_c00441{height:1262.835000px;}
.h1_c00441{height:1263.000000px;}
.w0_c00441{width:892.914000px;}
.w1_c00441{width:893.250000px;}
.x0_c00441{left:0.000000px;}
.x2_c00441{left:90.000000px;}
.x3_c00441{left:106.500000px;}
.x1_c00441{left:785.888700px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls2_c00441{letter-spacing:0.000000pt;}
.ls0_c00441{letter-spacing:0.640000pt;}
.ls1_c00441{letter-spacing:0.746667pt;}
.ws0_c00441{word-spacing:-9.066667pt;}
.ws11_c00441{word-spacing:-8.768000pt;}
.wsf_c00441{word-spacing:-3.392000pt;}
.ws8_c00441{word-spacing:-3.008000pt;}
.wse_c00441{word-spacing:-1.728000pt;}
.wsa_c00441{word-spacing:-1.536000pt;}
.ws6_c00441{word-spacing:-1.408000pt;}
.ws2_c00441{word-spacing:-0.746667pt;}
.ws9_c00441{word-spacing:-0.448000pt;}
.ws1_c00441{word-spacing:0.000000pt;}
.ws5_c00441{word-spacing:0.192000pt;}
.wsd_c00441{word-spacing:0.960000pt;}
.wsc_c00441{word-spacing:1.728000pt;}
.ws7_c00441{word-spacing:2.560000pt;}
.ws3_c00441{word-spacing:5.760000pt;}
.ws4_c00441{word-spacing:5.824000pt;}
.wsb_c00441{word-spacing:8.192000pt;}
.ws10_c00441{word-spacing:8.896000pt;}
._0_c00441{margin-left:-426.965867pt;}
._1_c00441{margin-left:-3.733333pt;}
._4_c00441{margin-left:-2.713600pt;}
._2_c00441{margin-left:-1.280000pt;}
._3_c00441{width:1.689600pt;}
._5_c00441{width:3.507200pt;}
.fs1_c00441{font-size:37.333333pt;}
.fs0_c00441{font-size:53.333333pt;}
.fs3_c00441{font-size:64.000000pt;}
.fs2_c00441{font-size:74.666667pt;}
.y0_c00441{bottom:0.000000pt;}
.y1_c00441{bottom:36.666667pt;}
.y16_c00441{bottom:174.498400pt;}
.y15_c00441{bottom:201.170400pt;}
.y14_c00441{bottom:227.842400pt;}
.y13_c00441{bottom:254.514400pt;}
.y12_c00441{bottom:281.186400pt;}
.y11_c00441{bottom:334.519733pt;}
.y10_c00441{bottom:414.482400pt;}
.yf_c00441{bottom:441.154400pt;}
.ye_c00441{bottom:467.826400pt;}
.yd_c00441{bottom:494.498400pt;}
.yc_c00441{bottom:521.170400pt;}
.yb_c00441{bottom:547.842400pt;}
.ya_c00441{bottom:574.514400pt;}
.y9_c00441{bottom:601.186400pt;}
.y8_c00441{bottom:654.519733pt;}
.y7_c00441{bottom:734.498400pt;}
.y6_c00441{bottom:761.170400pt;}
.y5_c00441{bottom:787.842400pt;}
.y4_c00441{bottom:814.514400pt;}
.y3_c00441{bottom:841.186400pt;}
.y2_c00441{bottom:894.519733pt;}
.h2_c00441{height:48.000000pt;}
.h4_c00441{height:57.600000pt;}
.h3_c00441{height:69.813333pt;}
.h0_c00441{height:1122.520000pt;}
.h1_c00441{height:1122.666667pt;}
.w0_c00441{width:793.701333pt;}
.w1_c00441{width:794.000000pt;}
.x0_c00441{left:0.000000pt;}
.x2_c00441{left:80.000000pt;}
.x3_c00441{left:94.666667pt;}
.x1_c00441{left:698.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.161000;font-style: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);}
.m1_c00442{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls5_c00442{letter-spacing:-0.324000px;}
.ls6_c00442{letter-spacing:-0.300000px;}
.ls4_c00442{letter-spacing:0.000000px;}
.ls0_c00442{letter-spacing:0.720000px;}
.ls1_c00442{letter-spacing:0.840000px;}
.ls3_c00442{letter-spacing:1.500000px;}
.ls2_c00442{letter-spacing:1.650000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00442{word-spacing:-21.276000px;}
.ws2_c00442{word-spacing:-17.640000px;}
.ws3_c00442{word-spacing:-14.850000px;}
.ws0_c00442{word-spacing:-10.200000px;}
.ws4_c00442{word-spacing:-9.900000px;}
.ws9_c00442{word-spacing:-1.944000px;}
.ws11_c00442{word-spacing:-1.500000px;}
.ws6_c00442{word-spacing:-0.840000px;}
.ws8_c00442{word-spacing:-0.648000px;}
.ws5_c00442{word-spacing:0.000000px;}
.ws7_c00442{word-spacing:0.864000px;}
.wsd_c00442{word-spacing:1.512000px;}
.wse_c00442{word-spacing:4.680000px;}
.ws10_c00442{word-spacing:4.896000px;}
.wsa_c00442{word-spacing:6.408000px;}
.wsb_c00442{word-spacing:6.768000px;}
.wsf_c00442{word-spacing:9.072000px;}
.wsc_c00442{word-spacing:13.536000px;}
._0_c00442{margin-left:-480.337200px;}
._4_c00442{margin-left:-7.255200px;}
._5_c00442{margin-left:-5.774400px;}
._1_c00442{margin-left:-4.200000px;}
._3_c00442{margin-left:-2.160000px;}
._2_c00442{margin-left:-1.134000px;}
._6_c00442{width:1.800000px;}
.fc3_c00442{color:rgb(32,32,32);}
.fc2_c00442{color:rgb(233,83,14);}
.fc1_c00442{color:rgb(232,86,17);}
.fc4_c00442{color:rgb(157,157,156);}
.fc0_c00442{color:rgb(60,60,59);}
.fs1_c00442{font-size:42.000000px;}
.fs0_c00442{font-size:60.000000px;}
.fs5_c00442{font-size:66.000000px;}
.fs4_c00442{font-size:72.000000px;}
.fs3_c00442{font-size:84.000000px;}
.fs2_c00442{font-size:108.000000px;}
.y0_c00442{bottom:0.000000px;}
.y1_c00442{bottom:41.250000px;}
.y10_c00442{bottom:406.322700px;}
.yf_c00442{bottom:436.328700px;}
.ye_c00442{bottom:466.334700px;}
.yd_c00442{bottom:526.334700px;}
.yc_c00442{bottom:616.286700px;}
.yb_c00442{bottom:646.292700px;}
.ya_c00442{bottom:676.298700px;}
.y17_c00442{bottom:676.334700px;}
.y9_c00442{bottom:706.304700px;}
.y16_c00442{bottom:706.334700px;}
.y8_c00442{bottom:736.310700px;}
.y15_c00442{bottom:736.334700px;}
.y7_c00442{bottom:766.316700px;}
.y14_c00442{bottom:766.334700px;}
.y6_c00442{bottom:796.322700px;}
.y13_c00442{bottom:796.334700px;}
.y5_c00442{bottom:826.328700px;}
.y12_c00442{bottom:826.334700px;}
.y4_c00442{bottom:856.334700px;}
.y11_c00442{bottom:856.376100px;}
.y3_c00442{bottom:916.334700px;}
.y2_c00442{bottom:1006.334700px;}
.h6_c00442{height:50.292000px;}
.h2_c00442{height:54.000000px;}
.h5_c00442{height:64.800000px;}
.h4_c00442{height:78.540000px;}
.h3_c00442{height:100.980000px;}
.h0_c00442{height:1262.835000px;}
.h1_c00442{height:1263.000000px;}
.w0_c00442{width:892.914000px;}
.w1_c00442{width:893.250000px;}
.x0_c00442{left:0.000000px;}
.x2_c00442{left:82.500000px;}
.x3_c00442{left:90.000000px;}
.x4_c00442{left:106.500000px;}
.x5_c00442{left:675.611100px;}
.x1_c00442{left:785.738850px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls5_c00442{letter-spacing:-0.288000pt;}
.ls6_c00442{letter-spacing:-0.266667pt;}
.ls4_c00442{letter-spacing:0.000000pt;}
.ls0_c00442{letter-spacing:0.640000pt;}
.ls1_c00442{letter-spacing:0.746667pt;}
.ls3_c00442{letter-spacing:1.333333pt;}
.ls2_c00442{letter-spacing:1.466667pt;}
.ws1_c00442{word-spacing:-18.912000pt;}
.ws2_c00442{word-spacing:-15.680000pt;}
.ws3_c00442{word-spacing:-13.200000pt;}
.ws0_c00442{word-spacing:-9.066667pt;}
.ws4_c00442{word-spacing:-8.800000pt;}
.ws9_c00442{word-spacing:-1.728000pt;}
.ws11_c00442{word-spacing:-1.333333pt;}
.ws6_c00442{word-spacing:-0.746667pt;}
.ws8_c00442{word-spacing:-0.576000pt;}
.ws5_c00442{word-spacing:0.000000pt;}
.ws7_c00442{word-spacing:0.768000pt;}
.wsd_c00442{word-spacing:1.344000pt;}
.wse_c00442{word-spacing:4.160000pt;}
.ws10_c00442{word-spacing:4.352000pt;}
.wsa_c00442{word-spacing:5.696000pt;}
.wsb_c00442{word-spacing:6.016000pt;}
.wsf_c00442{word-spacing:8.064000pt;}
.wsc_c00442{word-spacing:12.032000pt;}
._0_c00442{margin-left:-426.966400pt;}
._4_c00442{margin-left:-6.449067pt;}
._5_c00442{margin-left:-5.132800pt;}
._1_c00442{margin-left:-3.733333pt;}
._3_c00442{margin-left:-1.920000pt;}
._2_c00442{margin-left:-1.008000pt;}
._6_c00442{width:1.600000pt;}
.fs1_c00442{font-size:37.333333pt;}
.fs0_c00442{font-size:53.333333pt;}
.fs5_c00442{font-size:58.666667pt;}
.fs4_c00442{font-size:64.000000pt;}
.fs3_c00442{font-size:74.666667pt;}
.fs2_c00442{font-size:96.000000pt;}
.y0_c00442{bottom:0.000000pt;}
.y1_c00442{bottom:36.666667pt;}
.y10_c00442{bottom:361.175733pt;}
.yf_c00442{bottom:387.847733pt;}
.ye_c00442{bottom:414.519733pt;}
.yd_c00442{bottom:467.853067pt;}
.yc_c00442{bottom:547.810400pt;}
.yb_c00442{bottom:574.482400pt;}
.ya_c00442{bottom:601.154400pt;}
.y17_c00442{bottom:601.186400pt;}
.y9_c00442{bottom:627.826400pt;}
.y16_c00442{bottom:627.853067pt;}
.y8_c00442{bottom:654.498400pt;}
.y15_c00442{bottom:654.519733pt;}
.y7_c00442{bottom:681.170400pt;}
.y14_c00442{bottom:681.186400pt;}
.y6_c00442{bottom:707.842400pt;}
.y13_c00442{bottom:707.853067pt;}
.y5_c00442{bottom:734.514400pt;}
.y12_c00442{bottom:734.519733pt;}
.y4_c00442{bottom:761.186400pt;}
.y11_c00442{bottom:761.223200pt;}
.y3_c00442{bottom:814.519733pt;}
.y2_c00442{bottom:894.519733pt;}
.h6_c00442{height:44.704000pt;}
.h2_c00442{height:48.000000pt;}
.h5_c00442{height:57.600000pt;}
.h4_c00442{height:69.813333pt;}
.h3_c00442{height:89.760000pt;}
.h0_c00442{height:1122.520000pt;}
.h1_c00442{height:1122.666667pt;}
.w0_c00442{width:793.701333pt;}
.w1_c00442{width:794.000000pt;}
.x0_c00442{left:0.000000pt;}
.x2_c00442{left:73.333333pt;}
.x3_c00442{left:80.000000pt;}
.x4_c00442{left:94.666667pt;}
.x5_c00442{left:600.543200pt;}
.x1_c00442{left:698.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.199000;font-style: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);}
.m1_c00443{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls1_c00443{letter-spacing:0.000000px;}
.ls0_c00443{letter-spacing:0.720000px;}
.ls2_c00443{letter-spacing:0.840000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00443{word-spacing:-12.960000px;}
.ws0_c00443{word-spacing:-10.200000px;}
.ws8_c00443{word-spacing:-4.464000px;}
.ws5_c00443{word-spacing:-4.320000px;}
.ws7_c00443{word-spacing:-2.016000px;}
.ws3_c00443{word-spacing:-0.840000px;}
.wsb_c00443{word-spacing:-0.576000px;}
.ws2_c00443{word-spacing:0.000000px;}
.ws4_c00443{word-spacing:1.368000px;}
.ws11_c00443{word-spacing:1.800000px;}
.ws9_c00443{word-spacing:1.944000px;}
.ws12_c00443{word-spacing:2.808000px;}
.ws6_c00443{word-spacing:3.096000px;}
.wsc_c00443{word-spacing:4.176000px;}
.ws10_c00443{word-spacing:4.968000px;}
.wsd_c00443{word-spacing:5.328000px;}
.wse_c00443{word-spacing:8.064000px;}
.wsa_c00443{word-spacing:9.288000px;}
.wsf_c00443{word-spacing:9.864000px;}
._0_c00443{margin-left:-480.337200px;}
._8_c00443{margin-left:-7.032000px;}
._7_c00443{margin-left:-5.256000px;}
._1_c00443{margin-left:-4.200000px;}
._5_c00443{margin-left:-2.296800px;}
._3_c00443{margin-left:-1.080000px;}
._2_c00443{width:1.288800px;}
._4_c00443{width:2.592000px;}
._6_c00443{width:4.514400px;}
.fc2_c00443{color:rgb(32,32,32);}
.fc1_c00443{color:rgb(232,86,17);}
.fc0_c00443{color:rgb(60,60,59);}
.fs1_c00443{font-size:42.000000px;}
.fs0_c00443{font-size:60.000000px;}
.fs3_c00443{font-size:72.000000px;}
.fs2_c00443{font-size:84.000000px;}
.y0_c00443{bottom:0.000000px;}
.y1_c00443{bottom:41.250000px;}
.y16_c00443{bottom:196.310700px;}
.y15_c00443{bottom:226.316700px;}
.y14_c00443{bottom:256.322700px;}
.y13_c00443{bottom:286.328700px;}
.y12_c00443{bottom:316.334700px;}
.y11_c00443{bottom:376.334700px;}
.y10_c00443{bottom:466.292700px;}
.yf_c00443{bottom:496.298700px;}
.ye_c00443{bottom:526.304700px;}
.yd_c00443{bottom:556.310700px;}
.yc_c00443{bottom:586.316700px;}
.yb_c00443{bottom:616.322700px;}
.ya_c00443{bottom:646.328700px;}
.y9_c00443{bottom:676.334700px;}
.y8_c00443{bottom:736.334700px;}
.y7_c00443{bottom:826.310700px;}
.y6_c00443{bottom:856.316700px;}
.y5_c00443{bottom:886.322700px;}
.y4_c00443{bottom:916.328700px;}
.y3_c00443{bottom:946.334700px;}
.y2_c00443{bottom:1006.334700px;}
.h2_c00443{height:54.000000px;}
.h4_c00443{height:64.800000px;}
.h3_c00443{height:78.540000px;}
.h0_c00443{height:1262.835000px;}
.h1_c00443{height:1263.000000px;}
.w0_c00443{width:892.914000px;}
.w1_c00443{width:893.250000px;}
.x0_c00443{left:0.000000px;}
.x2_c00443{left:90.000000px;}
.x3_c00443{left:106.500000px;}
.x1_c00443{left:784.763850px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls1_c00443{letter-spacing:0.000000pt;}
.ls0_c00443{letter-spacing:0.640000pt;}
.ls2_c00443{letter-spacing:0.746667pt;}
.ws1_c00443{word-spacing:-11.520000pt;}
.ws0_c00443{word-spacing:-9.066667pt;}
.ws8_c00443{word-spacing:-3.968000pt;}
.ws5_c00443{word-spacing:-3.840000pt;}
.ws7_c00443{word-spacing:-1.792000pt;}
.ws3_c00443{word-spacing:-0.746667pt;}
.wsb_c00443{word-spacing:-0.512000pt;}
.ws2_c00443{word-spacing:0.000000pt;}
.ws4_c00443{word-spacing:1.216000pt;}
.ws11_c00443{word-spacing:1.600000pt;}
.ws9_c00443{word-spacing:1.728000pt;}
.ws12_c00443{word-spacing:2.496000pt;}
.ws6_c00443{word-spacing:2.752000pt;}
.wsc_c00443{word-spacing:3.712000pt;}
.ws10_c00443{word-spacing:4.416000pt;}
.wsd_c00443{word-spacing:4.736000pt;}
.wse_c00443{word-spacing:7.168000pt;}
.wsa_c00443{word-spacing:8.256000pt;}
.wsf_c00443{word-spacing:8.768000pt;}
._0_c00443{margin-left:-426.966400pt;}
._8_c00443{margin-left:-6.250667pt;}
._7_c00443{margin-left:-4.672000pt;}
._1_c00443{margin-left:-3.733333pt;}
._5_c00443{margin-left:-2.041600pt;}
._3_c00443{margin-left:-0.960000pt;}
._2_c00443{width:1.145600pt;}
._4_c00443{width:2.304000pt;}
._6_c00443{width:4.012800pt;}
.fs1_c00443{font-size:37.333333pt;}
.fs0_c00443{font-size:53.333333pt;}
.fs3_c00443{font-size:64.000000pt;}
.fs2_c00443{font-size:74.666667pt;}
.y0_c00443{bottom:0.000000pt;}
.y1_c00443{bottom:36.666667pt;}
.y16_c00443{bottom:174.498400pt;}
.y15_c00443{bottom:201.170400pt;}
.y14_c00443{bottom:227.842400pt;}
.y13_c00443{bottom:254.514400pt;}
.y12_c00443{bottom:281.186400pt;}
.y11_c00443{bottom:334.519733pt;}
.y10_c00443{bottom:414.482400pt;}
.yf_c00443{bottom:441.154400pt;}
.ye_c00443{bottom:467.826400pt;}
.yd_c00443{bottom:494.498400pt;}
.yc_c00443{bottom:521.170400pt;}
.yb_c00443{bottom:547.842400pt;}
.ya_c00443{bottom:574.514400pt;}
.y9_c00443{bottom:601.186400pt;}
.y8_c00443{bottom:654.519733pt;}
.y7_c00443{bottom:734.498400pt;}
.y6_c00443{bottom:761.170400pt;}
.y5_c00443{bottom:787.842400pt;}
.y4_c00443{bottom:814.514400pt;}
.y3_c00443{bottom:841.186400pt;}
.y2_c00443{bottom:894.519733pt;}
.h2_c00443{height:48.000000pt;}
.h4_c00443{height:57.600000pt;}
.h3_c00443{height:69.813333pt;}
.h0_c00443{height:1122.520000pt;}
.h1_c00443{height:1122.666667pt;}
.w0_c00443{width:793.701333pt;}
.w1_c00443{width:794.000000pt;}
.x0_c00443{left:0.000000pt;}
.x2_c00443{left:80.000000pt;}
.x3_c00443{left:94.666667pt;}
.x1_c00443{left:697.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:1.185000;font-style:normal;font-weight:normal;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_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:1.155000;font-style: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);}
.m1_c00444{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls2_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:0.864000px;}
.ls1_c00444{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00444{word-spacing:-13.104000px;}
.ws0_c00444{word-spacing:-10.200000px;}
.ws4_c00444{word-spacing:-5.880000px;}
.ws3_c00444{word-spacing:-0.864000px;}
.ws2_c00444{word-spacing:0.000000px;}
._0_c00444{margin-left:-480.336600px;}
._5_c00444{margin-left:-10.200000px;}
._1_c00444{margin-left:-4.200000px;}
._3_c00444{margin-left:-3.000000px;}
._2_c00444{margin-left:-1.440000px;}
._4_c00444{width:3.480000px;}
.fc3_c00444{color:rgb(255,255,255);}
.fc2_c00444{color:rgb(233,83,14);}
.fc1_c00444{color:rgb(232,86,17);}
.fc0_c00444{color:rgb(60,60,59);}
.fs1_c00444{font-size:42.000000px;}
.fs0_c00444{font-size:60.000000px;}
.fs3_c00444{font-size:72.000000px;}
.fs4_c00444{font-size:120.000000px;}
.fs2_c00444{font-size:360.000000px;}
.y0_c00444{bottom:0.000000px;}
.y1_c00444{bottom:41.250000px;}
.y13_c00444{bottom:283.250700px;}
.y12_c00444{bottom:304.256700px;}
.y11_c00444{bottom:325.262700px;}
.y10_c00444{bottom:346.268700px;}
.yf_c00444{bottom:403.274700px;}
.ye_c00444{bottom:424.280700px;}
.yd_c00444{bottom:445.286700px;}
.yc_c00444{bottom:466.292700px;}
.yb_c00444{bottom:523.298700px;}
.ya_c00444{bottom:544.304700px;}
.y9_c00444{bottom:565.310700px;}
.y8_c00444{bottom:586.316700px;}
.y7_c00444{bottom:643.322700px;}
.y6_c00444{bottom:664.328700px;}
.y5_c00444{bottom:685.334700px;}
.y4_c00444{bottom:706.340700px;}
.y3_c00444{bottom:752.834700px;}
.y18_c00444{bottom:886.334700px;}
.y17_c00444{bottom:916.334700px;}
.y16_c00444{bottom:946.334700px;}
.y15_c00444{bottom:976.334700px;}
.y14_c00444{bottom:1006.334700px;}
.y2_c00444{bottom:1093.526700px;}
.h2_c00444{height:54.000000px;}
.h5_c00444{height:64.800000px;}
.h4_c00444{height:66.456000px;}
.h6_c00444{height:112.200000px;}
.h3_c00444{height:324.000000px;}
.h0_c00444{height:1262.835000px;}
.h1_c00444{height:1263.000000px;}
.w0_c00444{width:892.914000px;}
.w1_c00444{width:893.250000px;}
.x0_c00444{left:0.000000px;}
.x2_c00444{left:81.290250px;}
.x3_c00444{left:82.393650px;}
.x5_c00444{left:112.287450px;}
.x4_c00444{left:127.393650px;}
.x1_c00444{left:785.813700px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls2_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:0.768000pt;}
.ls1_c00444{letter-spacing:1.066667pt;}
.ws1_c00444{word-spacing:-11.648000pt;}
.ws0_c00444{word-spacing:-9.066667pt;}
.ws4_c00444{word-spacing:-5.226667pt;}
.ws3_c00444{word-spacing:-0.768000pt;}
.ws2_c00444{word-spacing:0.000000pt;}
._0_c00444{margin-left:-426.965867pt;}
._5_c00444{margin-left:-9.066667pt;}
._1_c00444{margin-left:-3.733333pt;}
._3_c00444{margin-left:-2.666667pt;}
._2_c00444{margin-left:-1.280000pt;}
._4_c00444{width:3.093333pt;}
.fs1_c00444{font-size:37.333333pt;}
.fs0_c00444{font-size:53.333333pt;}
.fs3_c00444{font-size:64.000000pt;}
.fs4_c00444{font-size:106.666667pt;}
.fs2_c00444{font-size:320.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.y1_c00444{bottom:36.666667pt;}
.y13_c00444{bottom:251.778400pt;}
.y12_c00444{bottom:270.450400pt;}
.y11_c00444{bottom:289.122400pt;}
.y10_c00444{bottom:307.794400pt;}
.yf_c00444{bottom:358.466400pt;}
.ye_c00444{bottom:377.138400pt;}
.yd_c00444{bottom:395.810400pt;}
.yc_c00444{bottom:414.482400pt;}
.yb_c00444{bottom:465.154400pt;}
.ya_c00444{bottom:483.826400pt;}
.y9_c00444{bottom:502.498400pt;}
.y8_c00444{bottom:521.170400pt;}
.y7_c00444{bottom:571.842400pt;}
.y6_c00444{bottom:590.514400pt;}
.y5_c00444{bottom:609.186400pt;}
.y4_c00444{bottom:627.858400pt;}
.y3_c00444{bottom:669.186400pt;}
.y18_c00444{bottom:787.853067pt;}
.y17_c00444{bottom:814.519733pt;}
.y16_c00444{bottom:841.186400pt;}
.y15_c00444{bottom:867.853067pt;}
.y14_c00444{bottom:894.519733pt;}
.y2_c00444{bottom:972.023733pt;}
.h2_c00444{height:48.000000pt;}
.h5_c00444{height:57.600000pt;}
.h4_c00444{height:59.072000pt;}
.h6_c00444{height:99.733333pt;}
.h3_c00444{height:288.000000pt;}
.h0_c00444{height:1122.520000pt;}
.h1_c00444{height:1122.666667pt;}
.w0_c00444{width:793.701333pt;}
.w1_c00444{width:794.000000pt;}
.x0_c00444{left:0.000000pt;}
.x2_c00444{left:72.258000pt;}
.x3_c00444{left:73.238800pt;}
.x5_c00444{left:99.811067pt;}
.x4_c00444{left:113.238800pt;}
.x1_c00444{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.024000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.161000;font-style: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);}
.m1_c00445{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls5_c00445{letter-spacing:-0.540000px;}
.ls4_c00445{letter-spacing:0.000000px;}
.ls0_c00445{letter-spacing:0.720000px;}
.ls1_c00445{letter-spacing:0.840000px;}
.ls3_c00445{letter-spacing:1.500000px;}
.ls2_c00445{letter-spacing:1.650000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00445{word-spacing:-21.060000px;}
.ws2_c00445{word-spacing:-17.640000px;}
.ws0_c00445{word-spacing:-10.200000px;}
.wse_c00445{word-spacing:-1.872000px;}
.ws10_c00445{word-spacing:-1.500000px;}
.wsf_c00445{word-spacing:-1.080000px;}
.ws4_c00445{word-spacing:-0.840000px;}
.ws3_c00445{word-spacing:0.000000px;}
.wsd_c00445{word-spacing:1.656000px;}
.wsa_c00445{word-spacing:2.232000px;}
.ws7_c00445{word-spacing:5.328000px;}
.wsc_c00445{word-spacing:5.688000px;}
.wsb_c00445{word-spacing:5.904000px;}
.ws9_c00445{word-spacing:7.272000px;}
.ws6_c00445{word-spacing:7.416000px;}
.ws8_c00445{word-spacing:14.256000px;}
.ws5_c00445{word-spacing:15.624000px;}
._0_c00445{margin-left:-480.337200px;}
._1_c00445{margin-left:-4.200000px;}
._6_c00445{margin-left:-2.803200px;}
._2_c00445{margin-left:-1.574400px;}
._4_c00445{width:1.000800px;}
._3_c00445{width:2.642400px;}
._5_c00445{width:3.864000px;}
.fc3_c00445{color:rgb(32,32,32);}
.fc2_c00445{color:rgb(233,83,14);}
.fc1_c00445{color:rgb(232,86,17);}
.fc4_c00445{color:rgb(157,157,156);}
.fc0_c00445{color:rgb(60,60,59);}
.fs1_c00445{font-size:42.000000px;}
.fs0_c00445{font-size:60.000000px;}
.fs5_c00445{font-size:66.000000px;}
.fs4_c00445{font-size:72.000000px;}
.fs3_c00445{font-size:84.000000px;}
.fs2_c00445{font-size:108.000000px;}
.y0_c00445{bottom:0.000000px;}
.y1_c00445{bottom:41.250000px;}
.y11_c00445{bottom:376.316700px;}
.y10_c00445{bottom:406.322700px;}
.yf_c00445{bottom:436.328700px;}
.ye_c00445{bottom:466.334700px;}
.yd_c00445{bottom:526.334700px;}
.yc_c00445{bottom:616.286700px;}
.yb_c00445{bottom:646.292700px;}
.ya_c00445{bottom:676.298700px;}
.y9_c00445{bottom:706.304700px;}
.y8_c00445{bottom:736.310700px;}
.y7_c00445{bottom:766.316700px;}
.y15_c00445{bottom:766.334700px;}
.y6_c00445{bottom:796.322700px;}
.y14_c00445{bottom:796.334700px;}
.y5_c00445{bottom:826.328700px;}
.y13_c00445{bottom:826.334700px;}
.y4_c00445{bottom:856.334700px;}
.y12_c00445{bottom:856.376100px;}
.y3_c00445{bottom:916.334700px;}
.y2_c00445{bottom:1006.334700px;}
.h6_c00445{height:50.292000px;}
.h2_c00445{height:54.000000px;}
.h5_c00445{height:64.800000px;}
.h4_c00445{height:78.540000px;}
.h3_c00445{height:100.980000px;}
.h0_c00445{height:1262.835000px;}
.h1_c00445{height:1263.000000px;}
.w0_c00445{width:892.914000px;}
.w1_c00445{width:893.250000px;}
.x0_c00445{left:0.000000px;}
.x2_c00445{left:82.500000px;}
.x3_c00445{left:90.000000px;}
.x4_c00445{left:106.500000px;}
.x5_c00445{left:675.611100px;}
.x1_c00445{left:784.688850px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls5_c00445{letter-spacing:-0.480000pt;}
.ls4_c00445{letter-spacing:0.000000pt;}
.ls0_c00445{letter-spacing:0.640000pt;}
.ls1_c00445{letter-spacing:0.746667pt;}
.ls3_c00445{letter-spacing:1.333333pt;}
.ls2_c00445{letter-spacing:1.466667pt;}
.ws1_c00445{word-spacing:-18.720000pt;}
.ws2_c00445{word-spacing:-15.680000pt;}
.ws0_c00445{word-spacing:-9.066667pt;}
.wse_c00445{word-spacing:-1.664000pt;}
.ws10_c00445{word-spacing:-1.333333pt;}
.wsf_c00445{word-spacing:-0.960000pt;}
.ws4_c00445{word-spacing:-0.746667pt;}
.ws3_c00445{word-spacing:0.000000pt;}
.wsd_c00445{word-spacing:1.472000pt;}
.wsa_c00445{word-spacing:1.984000pt;}
.ws7_c00445{word-spacing:4.736000pt;}
.wsc_c00445{word-spacing:5.056000pt;}
.wsb_c00445{word-spacing:5.248000pt;}
.ws9_c00445{word-spacing:6.464000pt;}
.ws6_c00445{word-spacing:6.592000pt;}
.ws8_c00445{word-spacing:12.672000pt;}
.ws5_c00445{word-spacing:13.888000pt;}
._0_c00445{margin-left:-426.966400pt;}
._1_c00445{margin-left:-3.733333pt;}
._6_c00445{margin-left:-2.491733pt;}
._2_c00445{margin-left:-1.399467pt;}
._4_c00445{width:0.889600pt;}
._3_c00445{width:2.348800pt;}
._5_c00445{width:3.434667pt;}
.fs1_c00445{font-size:37.333333pt;}
.fs0_c00445{font-size:53.333333pt;}
.fs5_c00445{font-size:58.666667pt;}
.fs4_c00445{font-size:64.000000pt;}
.fs3_c00445{font-size:74.666667pt;}
.fs2_c00445{font-size:96.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y1_c00445{bottom:36.666667pt;}
.y11_c00445{bottom:334.503733pt;}
.y10_c00445{bottom:361.175733pt;}
.yf_c00445{bottom:387.847733pt;}
.ye_c00445{bottom:414.519733pt;}
.yd_c00445{bottom:467.853067pt;}
.yc_c00445{bottom:547.810400pt;}
.yb_c00445{bottom:574.482400pt;}
.ya_c00445{bottom:601.154400pt;}
.y9_c00445{bottom:627.826400pt;}
.y8_c00445{bottom:654.498400pt;}
.y7_c00445{bottom:681.170400pt;}
.y15_c00445{bottom:681.186400pt;}
.y6_c00445{bottom:707.842400pt;}
.y14_c00445{bottom:707.853067pt;}
.y5_c00445{bottom:734.514400pt;}
.y13_c00445{bottom:734.519733pt;}
.y4_c00445{bottom:761.186400pt;}
.y12_c00445{bottom:761.223200pt;}
.y3_c00445{bottom:814.519733pt;}
.y2_c00445{bottom:894.519733pt;}
.h6_c00445{height:44.704000pt;}
.h2_c00445{height:48.000000pt;}
.h5_c00445{height:57.600000pt;}
.h4_c00445{height:69.813333pt;}
.h3_c00445{height:89.760000pt;}
.h0_c00445{height:1122.520000pt;}
.h1_c00445{height:1122.666667pt;}
.w0_c00445{width:793.701333pt;}
.w1_c00445{width:794.000000pt;}
.x0_c00445{left:0.000000pt;}
.x2_c00445{left:73.333333pt;}
.x3_c00445{left:80.000000pt;}
.x4_c00445{left:94.666667pt;}
.x5_c00445{left:600.543200pt;}
.x1_c00445{left:697.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.199000;font-style: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);}
.m1_c00446{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls1_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:0.720000px;}
.ls2_c00446{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsa_c00446{word-spacing:-2.736000px;}
.ws2_c00446{word-spacing:-0.840000px;}
.wsf_c00446{word-spacing:-0.720000px;}
.ws4_c00446{word-spacing:-0.432000px;}
.ws1_c00446{word-spacing:0.000000px;}
.ws6_c00446{word-spacing:0.216000px;}
.ws12_c00446{word-spacing:2.016000px;}
.wse_c00446{word-spacing:3.024000px;}
.ws14_c00446{word-spacing:3.456000px;}
.ws8_c00446{word-spacing:3.600000px;}
.ws13_c00446{word-spacing:3.816000px;}
.wsc_c00446{word-spacing:3.960000px;}
.ws5_c00446{word-spacing:4.248000px;}
.ws7_c00446{word-spacing:5.616000px;}
.wsb_c00446{word-spacing:6.552000px;}
.ws11_c00446{word-spacing:8.064000px;}
.ws3_c00446{word-spacing:10.224000px;}
.wsd_c00446{word-spacing:10.584000px;}
.ws9_c00446{word-spacing:11.232000px;}
.ws10_c00446{word-spacing:11.736000px;}
._0_c00446{margin-left:-480.336600px;}
._1_c00446{margin-left:-4.200000px;}
._3_c00446{margin-left:-2.712000px;}
._2_c00446{margin-left:-1.538400px;}
._4_c00446{width:1.521600px;}
._6_c00446{width:4.946400px;}
._7_c00446{width:6.232800px;}
._5_c00446{width:13.800000px;}
.fc2_c00446{color:rgb(32,32,32);}
.fc1_c00446{color:rgb(232,86,17);}
.fc0_c00446{color:rgb(60,60,59);}
.fs1_c00446{font-size:42.000000px;}
.fs0_c00446{font-size:60.000000px;}
.fs3_c00446{font-size:72.000000px;}
.fs2_c00446{font-size:84.000000px;}
.y0_c00446{bottom:0.000000px;}
.y1_c00446{bottom:41.250000px;}
.y18_c00446{bottom:136.304700px;}
.y17_c00446{bottom:166.310700px;}
.y16_c00446{bottom:196.316700px;}
.y15_c00446{bottom:226.322700px;}
.y14_c00446{bottom:256.328700px;}
.y13_c00446{bottom:286.334700px;}
.y12_c00446{bottom:346.334700px;}
.y11_c00446{bottom:436.292700px;}
.y10_c00446{bottom:466.298700px;}
.yf_c00446{bottom:496.304700px;}
.ye_c00446{bottom:526.310700px;}
.yd_c00446{bottom:556.316700px;}
.yc_c00446{bottom:586.322700px;}
.yb_c00446{bottom:616.328700px;}
.ya_c00446{bottom:646.334700px;}
.y9_c00446{bottom:706.334700px;}
.y8_c00446{bottom:796.304700px;}
.y7_c00446{bottom:826.310700px;}
.y6_c00446{bottom:856.316700px;}
.y5_c00446{bottom:886.322700px;}
.y4_c00446{bottom:916.328700px;}
.y3_c00446{bottom:946.334700px;}
.y2_c00446{bottom:1006.334700px;}
.h2_c00446{height:54.000000px;}
.h4_c00446{height:64.800000px;}
.h3_c00446{height:78.540000px;}
.h0_c00446{height:1262.835000px;}
.h1_c00446{height:1263.000000px;}
.w0_c00446{width:892.914000px;}
.w1_c00446{width:893.250000px;}
.x0_c00446{left:0.000000px;}
.x2_c00446{left:90.000000px;}
.x3_c00446{left:106.500000px;}
.x1_c00446{left:786.788700px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls1_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:0.640000pt;}
.ls2_c00446{letter-spacing:0.746667pt;}
.ws0_c00446{word-spacing:-9.066667pt;}
.wsa_c00446{word-spacing:-2.432000pt;}
.ws2_c00446{word-spacing:-0.746667pt;}
.wsf_c00446{word-spacing:-0.640000pt;}
.ws4_c00446{word-spacing:-0.384000pt;}
.ws1_c00446{word-spacing:0.000000pt;}
.ws6_c00446{word-spacing:0.192000pt;}
.ws12_c00446{word-spacing:1.792000pt;}
.wse_c00446{word-spacing:2.688000pt;}
.ws14_c00446{word-spacing:3.072000pt;}
.ws8_c00446{word-spacing:3.200000pt;}
.ws13_c00446{word-spacing:3.392000pt;}
.wsc_c00446{word-spacing:3.520000pt;}
.ws5_c00446{word-spacing:3.776000pt;}
.ws7_c00446{word-spacing:4.992000pt;}
.wsb_c00446{word-spacing:5.824000pt;}
.ws11_c00446{word-spacing:7.168000pt;}
.ws3_c00446{word-spacing:9.088000pt;}
.wsd_c00446{word-spacing:9.408000pt;}
.ws9_c00446{word-spacing:9.984000pt;}
.ws10_c00446{word-spacing:10.432000pt;}
._0_c00446{margin-left:-426.965867pt;}
._1_c00446{margin-left:-3.733333pt;}
._3_c00446{margin-left:-2.410667pt;}
._2_c00446{margin-left:-1.367467pt;}
._4_c00446{width:1.352533pt;}
._6_c00446{width:4.396800pt;}
._7_c00446{width:5.540267pt;}
._5_c00446{width:12.266667pt;}
.fs1_c00446{font-size:37.333333pt;}
.fs0_c00446{font-size:53.333333pt;}
.fs3_c00446{font-size:64.000000pt;}
.fs2_c00446{font-size:74.666667pt;}
.y0_c00446{bottom:0.000000pt;}
.y1_c00446{bottom:36.666667pt;}
.y18_c00446{bottom:121.159733pt;}
.y17_c00446{bottom:147.831733pt;}
.y16_c00446{bottom:174.503733pt;}
.y15_c00446{bottom:201.175733pt;}
.y14_c00446{bottom:227.847733pt;}
.y13_c00446{bottom:254.519733pt;}
.y12_c00446{bottom:307.853067pt;}
.y11_c00446{bottom:387.815733pt;}
.y10_c00446{bottom:414.487733pt;}
.yf_c00446{bottom:441.159733pt;}
.ye_c00446{bottom:467.831733pt;}
.yd_c00446{bottom:494.503733pt;}
.yc_c00446{bottom:521.175733pt;}
.yb_c00446{bottom:547.847733pt;}
.ya_c00446{bottom:574.519733pt;}
.y9_c00446{bottom:627.853067pt;}
.y8_c00446{bottom:707.826400pt;}
.y7_c00446{bottom:734.498400pt;}
.y6_c00446{bottom:761.170400pt;}
.y5_c00446{bottom:787.842400pt;}
.y4_c00446{bottom:814.514400pt;}
.y3_c00446{bottom:841.186400pt;}
.y2_c00446{bottom:894.519733pt;}
.h2_c00446{height:48.000000pt;}
.h4_c00446{height:57.600000pt;}
.h3_c00446{height:69.813333pt;}
.h0_c00446{height:1122.520000pt;}
.h1_c00446{height:1122.666667pt;}
.w0_c00446{width:793.701333pt;}
.w1_c00446{width:794.000000pt;}
.x0_c00446{left:0.000000pt;}
.x2_c00446{left:80.000000pt;}
.x3_c00446{left:94.666667pt;}
.x1_c00446{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.024000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:1.161000;font-style: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);}
.m1_c00447{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls5_c00447{letter-spacing:-0.324000px;}
.ls4_c00447{letter-spacing:0.000000px;}
.ls0_c00447{letter-spacing:0.720000px;}
.ls1_c00447{letter-spacing:0.840000px;}
.ls3_c00447{letter-spacing:1.500000px;}
.ls2_c00447{letter-spacing:1.650000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00447{word-spacing:-21.276000px;}
.ws2_c00447{word-spacing:-17.640000px;}
.ws3_c00447{word-spacing:-14.850000px;}
.ws0_c00447{word-spacing:-10.200000px;}
.wsb_c00447{word-spacing:-3.888000px;}
.wsd_c00447{word-spacing:-2.736000px;}
.ws10_c00447{word-spacing:-1.512000px;}
.ws14_c00447{word-spacing:-1.500000px;}
.ws6_c00447{word-spacing:-1.224000px;}
.ws5_c00447{word-spacing:-0.840000px;}
.ws13_c00447{word-spacing:-0.720000px;}
.ws4_c00447{word-spacing:0.000000px;}
.ws8_c00447{word-spacing:1.656000px;}
.ws9_c00447{word-spacing:3.528000px;}
.wsc_c00447{word-spacing:5.904000px;}
.wsf_c00447{word-spacing:8.496000px;}
.ws12_c00447{word-spacing:10.512000px;}
.wsa_c00447{word-spacing:15.048000px;}
.ws11_c00447{word-spacing:18.792000px;}
.ws7_c00447{word-spacing:20.448000px;}
.wse_c00447{word-spacing:33.624000px;}
._0_c00447{margin-left:-480.337200px;}
._4_c00447{margin-left:-14.356800px;}
._1_c00447{margin-left:-4.200000px;}
._3_c00447{margin-left:-2.160000px;}
._2_c00447{margin-left:-1.134000px;}
._5_c00447{width:1.396800px;}
._6_c00447{width:3.462000px;}
.fc3_c00447{color:rgb(32,32,32);}
.fc2_c00447{color:rgb(233,83,14);}
.fc1_c00447{color:rgb(232,86,17);}
.fc4_c00447{color:rgb(157,157,156);}
.fc0_c00447{color:rgb(60,60,59);}
.fs1_c00447{font-size:42.000000px;}
.fs0_c00447{font-size:60.000000px;}
.fs5_c00447{font-size:66.000000px;}
.fs4_c00447{font-size:72.000000px;}
.fs3_c00447{font-size:84.000000px;}
.fs2_c00447{font-size:108.000000px;}
.y0_c00447{bottom:0.000000px;}
.y1_c00447{bottom:41.250000px;}
.y16_c00447{bottom:136.304700px;}
.y15_c00447{bottom:166.310700px;}
.y14_c00447{bottom:196.316700px;}
.y13_c00447{bottom:226.322700px;}
.y12_c00447{bottom:256.328700px;}
.y11_c00447{bottom:286.334700px;}
.y10_c00447{bottom:346.334700px;}
.yf_c00447{bottom:436.322700px;}
.ye_c00447{bottom:466.328700px;}
.yd_c00447{bottom:496.334700px;}
.yc_c00447{bottom:556.334700px;}
.yb_c00447{bottom:646.292700px;}
.ya_c00447{bottom:676.298700px;}
.y9_c00447{bottom:706.304700px;}
.y8_c00447{bottom:736.310700px;}
.y7_c00447{bottom:766.316700px;}
.y1a_c00447{bottom:766.334700px;}
.y6_c00447{bottom:796.322700px;}
.y19_c00447{bottom:796.334700px;}
.y5_c00447{bottom:826.328700px;}
.y18_c00447{bottom:826.334700px;}
.y4_c00447{bottom:856.334700px;}
.y17_c00447{bottom:856.376100px;}
.y3_c00447{bottom:916.334700px;}
.y2_c00447{bottom:1006.334700px;}
.h6_c00447{height:50.292000px;}
.h2_c00447{height:54.000000px;}
.h5_c00447{height:64.800000px;}
.h4_c00447{height:78.540000px;}
.h3_c00447{height:100.980000px;}
.h0_c00447{height:1262.835000px;}
.h1_c00447{height:1263.000000px;}
.w0_c00447{width:892.914000px;}
.w1_c00447{width:893.250000px;}
.x0_c00447{left:0.000000px;}
.x2_c00447{left:82.500000px;}
.x3_c00447{left:90.000000px;}
.x4_c00447{left:106.500000px;}
.x5_c00447{left:675.611100px;}
.x1_c00447{left:784.763850px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls5_c00447{letter-spacing:-0.288000pt;}
.ls4_c00447{letter-spacing:0.000000pt;}
.ls0_c00447{letter-spacing:0.640000pt;}
.ls1_c00447{letter-spacing:0.746667pt;}
.ls3_c00447{letter-spacing:1.333333pt;}
.ls2_c00447{letter-spacing:1.466667pt;}
.ws1_c00447{word-spacing:-18.912000pt;}
.ws2_c00447{word-spacing:-15.680000pt;}
.ws3_c00447{word-spacing:-13.200000pt;}
.ws0_c00447{word-spacing:-9.066667pt;}
.wsb_c00447{word-spacing:-3.456000pt;}
.wsd_c00447{word-spacing:-2.432000pt;}
.ws10_c00447{word-spacing:-1.344000pt;}
.ws14_c00447{word-spacing:-1.333333pt;}
.ws6_c00447{word-spacing:-1.088000pt;}
.ws5_c00447{word-spacing:-0.746667pt;}
.ws13_c00447{word-spacing:-0.640000pt;}
.ws4_c00447{word-spacing:0.000000pt;}
.ws8_c00447{word-spacing:1.472000pt;}
.ws9_c00447{word-spacing:3.136000pt;}
.wsc_c00447{word-spacing:5.248000pt;}
.wsf_c00447{word-spacing:7.552000pt;}
.ws12_c00447{word-spacing:9.344000pt;}
.wsa_c00447{word-spacing:13.376000pt;}
.ws11_c00447{word-spacing:16.704000pt;}
.ws7_c00447{word-spacing:18.176000pt;}
.wse_c00447{word-spacing:29.888000pt;}
._0_c00447{margin-left:-426.966400pt;}
._4_c00447{margin-left:-12.761600pt;}
._1_c00447{margin-left:-3.733333pt;}
._3_c00447{margin-left:-1.920000pt;}
._2_c00447{margin-left:-1.008000pt;}
._5_c00447{width:1.241600pt;}
._6_c00447{width:3.077333pt;}
.fs1_c00447{font-size:37.333333pt;}
.fs0_c00447{font-size:53.333333pt;}
.fs5_c00447{font-size:58.666667pt;}
.fs4_c00447{font-size:64.000000pt;}
.fs3_c00447{font-size:74.666667pt;}
.fs2_c00447{font-size:96.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y1_c00447{bottom:36.666667pt;}
.y16_c00447{bottom:121.159733pt;}
.y15_c00447{bottom:147.831733pt;}
.y14_c00447{bottom:174.503733pt;}
.y13_c00447{bottom:201.175733pt;}
.y12_c00447{bottom:227.847733pt;}
.y11_c00447{bottom:254.519733pt;}
.y10_c00447{bottom:307.853067pt;}
.yf_c00447{bottom:387.842400pt;}
.ye_c00447{bottom:414.514400pt;}
.yd_c00447{bottom:441.186400pt;}
.yc_c00447{bottom:494.519733pt;}
.yb_c00447{bottom:574.482400pt;}
.ya_c00447{bottom:601.154400pt;}
.y9_c00447{bottom:627.826400pt;}
.y8_c00447{bottom:654.498400pt;}
.y7_c00447{bottom:681.170400pt;}
.y1a_c00447{bottom:681.186400pt;}
.y6_c00447{bottom:707.842400pt;}
.y19_c00447{bottom:707.853067pt;}
.y5_c00447{bottom:734.514400pt;}
.y18_c00447{bottom:734.519733pt;}
.y4_c00447{bottom:761.186400pt;}
.y17_c00447{bottom:761.223200pt;}
.y3_c00447{bottom:814.519733pt;}
.y2_c00447{bottom:894.519733pt;}
.h6_c00447{height:44.704000pt;}
.h2_c00447{height:48.000000pt;}
.h5_c00447{height:57.600000pt;}
.h4_c00447{height:69.813333pt;}
.h3_c00447{height:89.760000pt;}
.h0_c00447{height:1122.520000pt;}
.h1_c00447{height:1122.666667pt;}
.w0_c00447{width:793.701333pt;}
.w1_c00447{width:794.000000pt;}
.x0_c00447{left:0.000000pt;}
.x2_c00447{left:73.333333pt;}
.x3_c00447{left:80.000000pt;}
.x4_c00447{left:94.666667pt;}
.x5_c00447{left:600.543200pt;}
.x1_c00447{left:697.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.199000;font-style: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);}
.m1_c00448{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls1_c00448{letter-spacing:0.000000px;}
.ls0_c00448{letter-spacing:0.720000px;}
.ls2_c00448{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws2_c00448{word-spacing:-0.840000px;}
.ws1_c00448{word-spacing:0.000000px;}
.ws4_c00448{word-spacing:0.576000px;}
.ws6_c00448{word-spacing:1.584000px;}
.ws5_c00448{word-spacing:2.880000px;}
.ws3_c00448{word-spacing:4.752000px;}
.ws9_c00448{word-spacing:4.824000px;}
.ws8_c00448{word-spacing:8.784000px;}
.ws7_c00448{word-spacing:11.376000px;}
.wsa_c00448{word-spacing:12.744000px;}
.wsb_c00448{word-spacing:16.704000px;}
._0_c00448{margin-left:-480.337200px;}
._4_c00448{margin-left:-5.760000px;}
._1_c00448{margin-left:-4.200000px;}
._3_c00448{margin-left:-2.923200px;}
._2_c00448{margin-left:-1.425600px;}
.fc2_c00448{color:rgb(32,32,32);}
.fc1_c00448{color:rgb(232,86,17);}
.fc0_c00448{color:rgb(60,60,59);}
.fs1_c00448{font-size:42.000000px;}
.fs0_c00448{font-size:60.000000px;}
.fs3_c00448{font-size:72.000000px;}
.fs2_c00448{font-size:84.000000px;}
.y0_c00448{bottom:0.000000px;}
.y1_c00448{bottom:41.250000px;}
.ye_c00448{bottom:526.310700px;}
.yd_c00448{bottom:556.316700px;}
.yc_c00448{bottom:586.322700px;}
.yb_c00448{bottom:616.328700px;}
.ya_c00448{bottom:646.334700px;}
.y9_c00448{bottom:706.334700px;}
.y8_c00448{bottom:796.304700px;}
.y7_c00448{bottom:826.310700px;}
.y6_c00448{bottom:856.316700px;}
.y5_c00448{bottom:886.322700px;}
.y4_c00448{bottom:916.328700px;}
.y3_c00448{bottom:946.334700px;}
.y2_c00448{bottom:1006.334700px;}
.h2_c00448{height:54.000000px;}
.h4_c00448{height:64.800000px;}
.h3_c00448{height:78.540000px;}
.h0_c00448{height:1262.835000px;}
.h1_c00448{height:1263.000000px;}
.w0_c00448{width:892.914000px;}
.w1_c00448{width:893.250000px;}
.x0_c00448{left:0.000000px;}
.x2_c00448{left:90.000000px;}
.x3_c00448{left:106.500000px;}
.x1_c00448{left:784.688850px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls1_c00448{letter-spacing:0.000000pt;}
.ls0_c00448{letter-spacing:0.640000pt;}
.ls2_c00448{letter-spacing:0.746667pt;}
.ws0_c00448{word-spacing:-9.066667pt;}
.ws2_c00448{word-spacing:-0.746667pt;}
.ws1_c00448{word-spacing:0.000000pt;}
.ws4_c00448{word-spacing:0.512000pt;}
.ws6_c00448{word-spacing:1.408000pt;}
.ws5_c00448{word-spacing:2.560000pt;}
.ws3_c00448{word-spacing:4.224000pt;}
.ws9_c00448{word-spacing:4.288000pt;}
.ws8_c00448{word-spacing:7.808000pt;}
.ws7_c00448{word-spacing:10.112000pt;}
.wsa_c00448{word-spacing:11.328000pt;}
.wsb_c00448{word-spacing:14.848000pt;}
._0_c00448{margin-left:-426.966400pt;}
._4_c00448{margin-left:-5.120000pt;}
._1_c00448{margin-left:-3.733333pt;}
._3_c00448{margin-left:-2.598400pt;}
._2_c00448{margin-left:-1.267200pt;}
.fs1_c00448{font-size:37.333333pt;}
.fs0_c00448{font-size:53.333333pt;}
.fs3_c00448{font-size:64.000000pt;}
.fs2_c00448{font-size:74.666667pt;}
.y0_c00448{bottom:0.000000pt;}
.y1_c00448{bottom:36.666667pt;}
.ye_c00448{bottom:467.831733pt;}
.yd_c00448{bottom:494.503733pt;}
.yc_c00448{bottom:521.175733pt;}
.yb_c00448{bottom:547.847733pt;}
.ya_c00448{bottom:574.519733pt;}
.y9_c00448{bottom:627.853067pt;}
.y8_c00448{bottom:707.826400pt;}
.y7_c00448{bottom:734.498400pt;}
.y6_c00448{bottom:761.170400pt;}
.y5_c00448{bottom:787.842400pt;}
.y4_c00448{bottom:814.514400pt;}
.y3_c00448{bottom:841.186400pt;}
.y2_c00448{bottom:894.519733pt;}
.h2_c00448{height:48.000000pt;}
.h4_c00448{height:57.600000pt;}
.h3_c00448{height:69.813333pt;}
.h0_c00448{height:1122.520000pt;}
.h1_c00448{height:1122.666667pt;}
.w0_c00448{width:793.701333pt;}
.w1_c00448{width:794.000000pt;}
.x0_c00448{left:0.000000pt;}
.x2_c00448{left:80.000000pt;}
.x3_c00448{left:94.666667pt;}
.x1_c00448{left:697.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00449;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00449;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00449{font-family:ff5_c00449;line-height:1.155000;font-style: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);}
.m1_c00449{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls4_c00449{letter-spacing:-0.864000px;}
.ls3_c00449{letter-spacing:-0.288000px;}
.ls2_c00449{letter-spacing:0.000000px;}
.ls0_c00449{letter-spacing:0.864000px;}
.ls1_c00449{letter-spacing:1.200000px;}
.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:-10.200000px;}
.ws6_c00449{word-spacing:-7.200000px;}
.ws2_c00449{word-spacing:-4.464000px;}
.ws5_c00449{word-spacing:-0.864000px;}
.ws1_c00449{word-spacing:0.000000px;}
.ws4_c00449{word-spacing:1.152000px;}
.ws3_c00449{word-spacing:4.104000px;}
._0_c00449{margin-left:-480.336600px;}
._8_c00449{margin-left:-12.960000px;}
._4_c00449{margin-left:-9.288000px;}
._3_c00449{margin-left:-7.200000px;}
._7_c00449{margin-left:-5.479200px;}
._1_c00449{margin-left:-4.200000px;}
._2_c00449{margin-left:-2.160000px;}
._5_c00449{margin-left:-1.008000px;}
._6_c00449{width:1.728000px;}
.fc3_c00449{color:rgb(255,255,255);}
.fc2_c00449{color:rgb(233,83,14);}
.fc1_c00449{color:rgb(232,86,17);}
.fc0_c00449{color:rgb(60,60,59);}
.fs1_c00449{font-size:42.000000px;}
.fs0_c00449{font-size:60.000000px;}
.fs3_c00449{font-size:72.000000px;}
.fs4_c00449{font-size:120.000000px;}
.fs2_c00449{font-size:360.000000px;}
.y0_c00449{bottom:0.000000px;}
.y1_c00449{bottom:41.250000px;}
.y13_c00449{bottom:283.250700px;}
.y12_c00449{bottom:304.256700px;}
.y11_c00449{bottom:325.262700px;}
.y10_c00449{bottom:346.268700px;}
.yf_c00449{bottom:430.274700px;}
.ye_c00449{bottom:451.280700px;}
.yd_c00449{bottom:472.286700px;}
.yc_c00449{bottom:493.292700px;}
.yb_c00449{bottom:514.298700px;}
.ya_c00449{bottom:535.304700px;}
.y9_c00449{bottom:556.310700px;}
.y8_c00449{bottom:622.316700px;}
.y7_c00449{bottom:643.322700px;}
.y6_c00449{bottom:664.328700px;}
.y5_c00449{bottom:685.334700px;}
.y4_c00449{bottom:706.340700px;}
.y3_c00449{bottom:752.834700px;}
.y17_c00449{bottom:916.334700px;}
.y16_c00449{bottom:946.334700px;}
.y15_c00449{bottom:976.334700px;}
.y14_c00449{bottom:1006.334700px;}
.y2_c00449{bottom:1093.526700px;}
.h2_c00449{height:54.000000px;}
.h5_c00449{height:64.800000px;}
.h4_c00449{height:66.456000px;}
.h6_c00449{height:112.200000px;}
.h3_c00449{height:324.000000px;}
.h0_c00449{height:1262.835000px;}
.h1_c00449{height:1263.000000px;}
.w0_c00449{width:892.914000px;}
.w1_c00449{width:893.250000px;}
.x0_c00449{left:0.000000px;}
.x2_c00449{left:81.290250px;}
.x3_c00449{left:82.393650px;}
.x5_c00449{left:112.287450px;}
.x4_c00449{left:127.393650px;}
.x1_c00449{left:785.753700px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls4_c00449{letter-spacing:-0.768000pt;}
.ls3_c00449{letter-spacing:-0.256000pt;}
.ls2_c00449{letter-spacing:0.000000pt;}
.ls0_c00449{letter-spacing:0.768000pt;}
.ls1_c00449{letter-spacing:1.066667pt;}
.ws0_c00449{word-spacing:-9.066667pt;}
.ws6_c00449{word-spacing:-6.400000pt;}
.ws2_c00449{word-spacing:-3.968000pt;}
.ws5_c00449{word-spacing:-0.768000pt;}
.ws1_c00449{word-spacing:0.000000pt;}
.ws4_c00449{word-spacing:1.024000pt;}
.ws3_c00449{word-spacing:3.648000pt;}
._0_c00449{margin-left:-426.965867pt;}
._8_c00449{margin-left:-11.520000pt;}
._4_c00449{margin-left:-8.256000pt;}
._3_c00449{margin-left:-6.400000pt;}
._7_c00449{margin-left:-4.870400pt;}
._1_c00449{margin-left:-3.733333pt;}
._2_c00449{margin-left:-1.920000pt;}
._5_c00449{margin-left:-0.896000pt;}
._6_c00449{width:1.536000pt;}
.fs1_c00449{font-size:37.333333pt;}
.fs0_c00449{font-size:53.333333pt;}
.fs3_c00449{font-size:64.000000pt;}
.fs4_c00449{font-size:106.666667pt;}
.fs2_c00449{font-size:320.000000pt;}
.y0_c00449{bottom:0.000000pt;}
.y1_c00449{bottom:36.666667pt;}
.y13_c00449{bottom:251.778400pt;}
.y12_c00449{bottom:270.450400pt;}
.y11_c00449{bottom:289.122400pt;}
.y10_c00449{bottom:307.794400pt;}
.yf_c00449{bottom:382.466400pt;}
.ye_c00449{bottom:401.138400pt;}
.yd_c00449{bottom:419.810400pt;}
.yc_c00449{bottom:438.482400pt;}
.yb_c00449{bottom:457.154400pt;}
.ya_c00449{bottom:475.826400pt;}
.y9_c00449{bottom:494.498400pt;}
.y8_c00449{bottom:553.170400pt;}
.y7_c00449{bottom:571.842400pt;}
.y6_c00449{bottom:590.514400pt;}
.y5_c00449{bottom:609.186400pt;}
.y4_c00449{bottom:627.858400pt;}
.y3_c00449{bottom:669.186400pt;}
.y17_c00449{bottom:814.519733pt;}
.y16_c00449{bottom:841.186400pt;}
.y15_c00449{bottom:867.853067pt;}
.y14_c00449{bottom:894.519733pt;}
.y2_c00449{bottom:972.023733pt;}
.h2_c00449{height:48.000000pt;}
.h5_c00449{height:57.600000pt;}
.h4_c00449{height:59.072000pt;}
.h6_c00449{height:99.733333pt;}
.h3_c00449{height:288.000000pt;}
.h0_c00449{height:1122.520000pt;}
.h1_c00449{height:1122.666667pt;}
.w0_c00449{width:793.701333pt;}
.w1_c00449{width:794.000000pt;}
.x0_c00449{left:0.000000pt;}
.x2_c00449{left:72.258000pt;}
.x3_c00449{left:73.238800pt;}
.x5_c00449{left:99.811067pt;}
.x4_c00449{left:113.238800pt;}
.x1_c00449{left:698.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00450;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls4_c00450{letter-spacing:-0.540000px;}
.ls3_c00450{letter-spacing:0.000000px;}
.ls0_c00450{letter-spacing:0.720000px;}
.ls2_c00450{letter-spacing:1.500000px;}
.ls1_c00450{letter-spacing:1.650000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00450{word-spacing:-21.060000px;}
.ws0_c00450{word-spacing:-10.200000px;}
.ws13_c00450{word-spacing:-3.600000px;}
.ws12_c00450{word-spacing:-3.024000px;}
.ws19_c00450{word-spacing:-1.872000px;}
.ws1e_c00450{word-spacing:-1.800000px;}
.wsa_c00450{word-spacing:-1.728000px;}
.ws1d_c00450{word-spacing:-1.500000px;}
.ws15_c00450{word-spacing:-1.368000px;}
.ws9_c00450{word-spacing:-0.720000px;}
.wsc_c00450{word-spacing:-0.432000px;}
.ws2_c00450{word-spacing:0.000000px;}
.ws1a_c00450{word-spacing:1.080000px;}
.wse_c00450{word-spacing:1.872000px;}
.ws5_c00450{word-spacing:2.016000px;}
.ws14_c00450{word-spacing:2.448000px;}
.ws1c_c00450{word-spacing:2.520000px;}
.wsf_c00450{word-spacing:2.664000px;}
.ws16_c00450{word-spacing:3.888000px;}
.ws18_c00450{word-spacing:3.960000px;}
.ws8_c00450{word-spacing:4.032000px;}
.ws3_c00450{word-spacing:4.104000px;}
.wsd_c00450{word-spacing:4.968000px;}
.ws17_c00450{word-spacing:5.112000px;}
.ws6_c00450{word-spacing:6.048000px;}
.ws7_c00450{word-spacing:6.336000px;}
.ws11_c00450{word-spacing:8.568000px;}
.ws4_c00450{word-spacing:10.872000px;}
.ws10_c00450{word-spacing:12.816000px;}
.wsb_c00450{word-spacing:15.192000px;}
.ws1b_c00450{word-spacing:19.584000px;}
._0_c00450{margin-left:-480.337200px;}
._5_c00450{margin-left:-5.760000px;}
._1_c00450{margin-left:-4.200000px;}
._4_c00450{margin-left:-2.973600px;}
._2_c00450{margin-left:-1.440000px;}
._3_c00450{width:1.468800px;}
._6_c00450{width:3.196800px;}
.fc3_c00450{color:rgb(32,32,32);}
.fc2_c00450{color:rgb(233,83,14);}
.fc1_c00450{color:rgb(232,86,17);}
.fc4_c00450{color:rgb(157,157,156);}
.fc0_c00450{color:rgb(60,60,59);}
.fs1_c00450{font-size:42.000000px;}
.fs0_c00450{font-size:60.000000px;}
.fs4_c00450{font-size:66.000000px;}
.fs3_c00450{font-size:72.000000px;}
.fs2_c00450{font-size:108.000000px;}
.y0_c00450{bottom:0.000000px;}
.y1_c00450{bottom:41.250000px;}
.y1f_c00450{bottom:106.166700px;}
.y1e_c00450{bottom:136.172700px;}
.y1d_c00450{bottom:166.178700px;}
.y1c_c00450{bottom:196.184700px;}
.y1b_c00450{bottom:226.190700px;}
.y1a_c00450{bottom:256.196700px;}
.y19_c00450{bottom:286.202700px;}
.y18_c00450{bottom:316.208700px;}
.y17_c00450{bottom:346.214700px;}
.y16_c00450{bottom:376.220700px;}
.y15_c00450{bottom:406.226700px;}
.y14_c00450{bottom:436.232700px;}
.y13_c00450{bottom:466.238700px;}
.y12_c00450{bottom:496.244700px;}
.y11_c00450{bottom:526.250700px;}
.y10_c00450{bottom:556.256700px;}
.yf_c00450{bottom:586.262700px;}
.ye_c00450{bottom:616.268700px;}
.yd_c00450{bottom:646.274700px;}
.yc_c00450{bottom:676.280700px;}
.yb_c00450{bottom:706.286700px;}
.y28_c00450{bottom:706.334700px;}
.ya_c00450{bottom:736.292700px;}
.y27_c00450{bottom:736.334700px;}
.y9_c00450{bottom:766.298700px;}
.y26_c00450{bottom:766.334700px;}
.y8_c00450{bottom:796.304700px;}
.y25_c00450{bottom:796.334700px;}
.y7_c00450{bottom:826.310700px;}
.y24_c00450{bottom:826.334700px;}
.y6_c00450{bottom:856.316700px;}
.y23_c00450{bottom:856.334700px;}
.y5_c00450{bottom:886.322700px;}
.y22_c00450{bottom:886.334700px;}
.y4_c00450{bottom:916.328700px;}
.y21_c00450{bottom:916.334700px;}
.y3_c00450{bottom:946.334700px;}
.y20_c00450{bottom:946.376100px;}
.y2_c00450{bottom:1006.334700px;}
.h5_c00450{height:50.292000px;}
.h2_c00450{height:54.000000px;}
.h4_c00450{height:64.800000px;}
.h3_c00450{height:100.980000px;}
.h0_c00450{height:1262.835000px;}
.h1_c00450{height:1263.000000px;}
.w0_c00450{width:892.914000px;}
.w1_c00450{width:893.250000px;}
.x0_c00450{left:0.000000px;}
.x2_c00450{left:82.500000px;}
.x3_c00450{left:106.500000px;}
.x4_c00450{left:675.611100px;}
.x1_c00450{left:789.413850px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls4_c00450{letter-spacing:-0.480000pt;}
.ls3_c00450{letter-spacing:0.000000pt;}
.ls0_c00450{letter-spacing:0.640000pt;}
.ls2_c00450{letter-spacing:1.333333pt;}
.ls1_c00450{letter-spacing:1.466667pt;}
.ws1_c00450{word-spacing:-18.720000pt;}
.ws0_c00450{word-spacing:-9.066667pt;}
.ws13_c00450{word-spacing:-3.200000pt;}
.ws12_c00450{word-spacing:-2.688000pt;}
.ws19_c00450{word-spacing:-1.664000pt;}
.ws1e_c00450{word-spacing:-1.600000pt;}
.wsa_c00450{word-spacing:-1.536000pt;}
.ws1d_c00450{word-spacing:-1.333333pt;}
.ws15_c00450{word-spacing:-1.216000pt;}
.ws9_c00450{word-spacing:-0.640000pt;}
.wsc_c00450{word-spacing:-0.384000pt;}
.ws2_c00450{word-spacing:0.000000pt;}
.ws1a_c00450{word-spacing:0.960000pt;}
.wse_c00450{word-spacing:1.664000pt;}
.ws5_c00450{word-spacing:1.792000pt;}
.ws14_c00450{word-spacing:2.176000pt;}
.ws1c_c00450{word-spacing:2.240000pt;}
.wsf_c00450{word-spacing:2.368000pt;}
.ws16_c00450{word-spacing:3.456000pt;}
.ws18_c00450{word-spacing:3.520000pt;}
.ws8_c00450{word-spacing:3.584000pt;}
.ws3_c00450{word-spacing:3.648000pt;}
.wsd_c00450{word-spacing:4.416000pt;}
.ws17_c00450{word-spacing:4.544000pt;}
.ws6_c00450{word-spacing:5.376000pt;}
.ws7_c00450{word-spacing:5.632000pt;}
.ws11_c00450{word-spacing:7.616000pt;}
.ws4_c00450{word-spacing:9.664000pt;}
.ws10_c00450{word-spacing:11.392000pt;}
.wsb_c00450{word-spacing:13.504000pt;}
.ws1b_c00450{word-spacing:17.408000pt;}
._0_c00450{margin-left:-426.966400pt;}
._5_c00450{margin-left:-5.120000pt;}
._1_c00450{margin-left:-3.733333pt;}
._4_c00450{margin-left:-2.643200pt;}
._2_c00450{margin-left:-1.280000pt;}
._3_c00450{width:1.305600pt;}
._6_c00450{width:2.841600pt;}
.fs1_c00450{font-size:37.333333pt;}
.fs0_c00450{font-size:53.333333pt;}
.fs4_c00450{font-size:58.666667pt;}
.fs3_c00450{font-size:64.000000pt;}
.fs2_c00450{font-size:96.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y1_c00450{bottom:36.666667pt;}
.y1f_c00450{bottom:94.370400pt;}
.y1e_c00450{bottom:121.042400pt;}
.y1d_c00450{bottom:147.714400pt;}
.y1c_c00450{bottom:174.386400pt;}
.y1b_c00450{bottom:201.058400pt;}
.y1a_c00450{bottom:227.730400pt;}
.y19_c00450{bottom:254.402400pt;}
.y18_c00450{bottom:281.074400pt;}
.y17_c00450{bottom:307.746400pt;}
.y16_c00450{bottom:334.418400pt;}
.y15_c00450{bottom:361.090400pt;}
.y14_c00450{bottom:387.762400pt;}
.y13_c00450{bottom:414.434400pt;}
.y12_c00450{bottom:441.106400pt;}
.y11_c00450{bottom:467.778400pt;}
.y10_c00450{bottom:494.450400pt;}
.yf_c00450{bottom:521.122400pt;}
.ye_c00450{bottom:547.794400pt;}
.yd_c00450{bottom:574.466400pt;}
.yc_c00450{bottom:601.138400pt;}
.yb_c00450{bottom:627.810400pt;}
.y28_c00450{bottom:627.853067pt;}
.ya_c00450{bottom:654.482400pt;}
.y27_c00450{bottom:654.519733pt;}
.y9_c00450{bottom:681.154400pt;}
.y26_c00450{bottom:681.186400pt;}
.y8_c00450{bottom:707.826400pt;}
.y25_c00450{bottom:707.853067pt;}
.y7_c00450{bottom:734.498400pt;}
.y24_c00450{bottom:734.519733pt;}
.y6_c00450{bottom:761.170400pt;}
.y23_c00450{bottom:761.186400pt;}
.y5_c00450{bottom:787.842400pt;}
.y22_c00450{bottom:787.853067pt;}
.y4_c00450{bottom:814.514400pt;}
.y21_c00450{bottom:814.519733pt;}
.y3_c00450{bottom:841.186400pt;}
.y20_c00450{bottom:841.223200pt;}
.y2_c00450{bottom:894.519733pt;}
.h5_c00450{height:44.704000pt;}
.h2_c00450{height:48.000000pt;}
.h4_c00450{height:57.600000pt;}
.h3_c00450{height:89.760000pt;}
.h0_c00450{height:1122.520000pt;}
.h1_c00450{height:1122.666667pt;}
.w0_c00450{width:793.701333pt;}
.w1_c00450{width:794.000000pt;}
.x0_c00450{left:0.000000pt;}
.x2_c00450{left:73.333333pt;}
.x3_c00450{left:94.666667pt;}
.x4_c00450{left:600.543200pt;}
.x1_c00450{left:701.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f08c7ce23c7def97997f978d.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:1.161000;font-style: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);}
.m1_c00451{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls4_c00451{letter-spacing:-0.324000px;}
.ls3_c00451{letter-spacing:0.000000px;}
.ls0_c00451{letter-spacing:0.720000px;}
.ls2_c00451{letter-spacing:1.500000px;}
.ls1_c00451{letter-spacing:1.650000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00451{word-spacing:-21.276000px;}
.ws2_c00451{word-spacing:-14.850000px;}
.ws0_c00451{word-spacing:-10.200000px;}
.ws1d_c00451{word-spacing:-2.304000px;}
.ws18_c00451{word-spacing:-2.232000px;}
.ws1e_c00451{word-spacing:-1.500000px;}
.ws3_c00451{word-spacing:0.000000px;}
.ws8_c00451{word-spacing:0.216000px;}
.ws1a_c00451{word-spacing:1.872000px;}
.ws4_c00451{word-spacing:2.088000px;}
.wsf_c00451{word-spacing:2.448000px;}
.wsd_c00451{word-spacing:4.104000px;}
.ws14_c00451{word-spacing:4.248000px;}
.ws1b_c00451{word-spacing:4.464000px;}
.ws7_c00451{word-spacing:5.040000px;}
.wse_c00451{word-spacing:5.328000px;}
.ws17_c00451{word-spacing:6.120000px;}
.ws1c_c00451{word-spacing:6.912000px;}
.ws12_c00451{word-spacing:7.488000px;}
.ws11_c00451{word-spacing:8.496000px;}
.wsa_c00451{word-spacing:8.712000px;}
.ws15_c00451{word-spacing:8.928000px;}
.wsc_c00451{word-spacing:9.000000px;}
.ws13_c00451{word-spacing:9.216000px;}
.ws19_c00451{word-spacing:9.360000px;}
.ws10_c00451{word-spacing:9.792000px;}
.ws9_c00451{word-spacing:9.936000px;}
.wsb_c00451{word-spacing:12.168000px;}
.ws5_c00451{word-spacing:16.200000px;}
.ws16_c00451{word-spacing:18.720000px;}
.ws6_c00451{word-spacing:18.864000px;}
._0_c00451{margin-left:-480.336000px;}
._4_c00451{margin-left:-5.904000px;}
._1_c00451{margin-left:-4.200000px;}
._3_c00451{margin-left:-2.246400px;}
._2_c00451{margin-left:-1.134000px;}
._5_c00451{width:1.339200px;}
._7_c00451{width:3.153600px;}
._6_c00451{width:4.752000px;}
.fc3_c00451{color:rgb(32,32,32);}
.fc2_c00451{color:rgb(233,83,14);}
.fc1_c00451{color:rgb(232,86,17);}
.fc4_c00451{color:rgb(157,157,156);}
.fc0_c00451{color:rgb(60,60,59);}
.fs1_c00451{font-size:42.000000px;}
.fs0_c00451{font-size:60.000000px;}
.fs4_c00451{font-size:66.000000px;}
.fs3_c00451{font-size:72.000000px;}
.fs2_c00451{font-size:108.000000px;}
.y0_c00451{bottom:0.000000px;}
.y1_c00451{bottom:41.250000px;}
.y1d_c00451{bottom:166.178700px;}
.y1c_c00451{bottom:196.184700px;}
.y1b_c00451{bottom:226.190700px;}
.y1a_c00451{bottom:256.196700px;}
.y19_c00451{bottom:286.202700px;}
.y18_c00451{bottom:316.208700px;}
.y17_c00451{bottom:346.214700px;}
.y16_c00451{bottom:376.220700px;}
.y15_c00451{bottom:406.226700px;}
.y14_c00451{bottom:436.232700px;}
.y13_c00451{bottom:466.238700px;}
.y12_c00451{bottom:496.244700px;}
.y11_c00451{bottom:526.250700px;}
.y10_c00451{bottom:556.256700px;}
.yf_c00451{bottom:586.262700px;}
.ye_c00451{bottom:616.268700px;}
.yd_c00451{bottom:646.274700px;}
.yc_c00451{bottom:676.280700px;}
.yb_c00451{bottom:706.286700px;}
.y26_c00451{bottom:706.334700px;}
.ya_c00451{bottom:736.292700px;}
.y25_c00451{bottom:736.334700px;}
.y9_c00451{bottom:766.298700px;}
.y24_c00451{bottom:766.334700px;}
.y8_c00451{bottom:796.304700px;}
.y23_c00451{bottom:796.334700px;}
.y7_c00451{bottom:826.310700px;}
.y22_c00451{bottom:826.334700px;}
.y6_c00451{bottom:856.316700px;}
.y21_c00451{bottom:856.334700px;}
.y5_c00451{bottom:886.322700px;}
.y20_c00451{bottom:886.334700px;}
.y4_c00451{bottom:916.328700px;}
.y1f_c00451{bottom:916.334700px;}
.y3_c00451{bottom:946.334700px;}
.y1e_c00451{bottom:946.376100px;}
.y2_c00451{bottom:1006.334700px;}
.h5_c00451{height:50.292000px;}
.h2_c00451{height:54.000000px;}
.h4_c00451{height:64.800000px;}
.h3_c00451{height:100.980000px;}
.h0_c00451{height:1262.835000px;}
.h1_c00451{height:1263.000000px;}
.w0_c00451{width:892.914000px;}
.w1_c00451{width:893.250000px;}
.x0_c00451{left:0.000000px;}
.x2_c00451{left:82.500000px;}
.x3_c00451{left:106.500000px;}
.x4_c00451{left:675.611100px;}
.x1_c00451{left:786.938550px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls4_c00451{letter-spacing:-0.288000pt;}
.ls3_c00451{letter-spacing:0.000000pt;}
.ls0_c00451{letter-spacing:0.640000pt;}
.ls2_c00451{letter-spacing:1.333333pt;}
.ls1_c00451{letter-spacing:1.466667pt;}
.ws1_c00451{word-spacing:-18.912000pt;}
.ws2_c00451{word-spacing:-13.200000pt;}
.ws0_c00451{word-spacing:-9.066667pt;}
.ws1d_c00451{word-spacing:-2.048000pt;}
.ws18_c00451{word-spacing:-1.984000pt;}
.ws1e_c00451{word-spacing:-1.333333pt;}
.ws3_c00451{word-spacing:0.000000pt;}
.ws8_c00451{word-spacing:0.192000pt;}
.ws1a_c00451{word-spacing:1.664000pt;}
.ws4_c00451{word-spacing:1.856000pt;}
.wsf_c00451{word-spacing:2.176000pt;}
.wsd_c00451{word-spacing:3.648000pt;}
.ws14_c00451{word-spacing:3.776000pt;}
.ws1b_c00451{word-spacing:3.968000pt;}
.ws7_c00451{word-spacing:4.480000pt;}
.wse_c00451{word-spacing:4.736000pt;}
.ws17_c00451{word-spacing:5.440000pt;}
.ws1c_c00451{word-spacing:6.144000pt;}
.ws12_c00451{word-spacing:6.656000pt;}
.ws11_c00451{word-spacing:7.552000pt;}
.wsa_c00451{word-spacing:7.744000pt;}
.ws15_c00451{word-spacing:7.936000pt;}
.wsc_c00451{word-spacing:8.000000pt;}
.ws13_c00451{word-spacing:8.192000pt;}
.ws19_c00451{word-spacing:8.320000pt;}
.ws10_c00451{word-spacing:8.704000pt;}
.ws9_c00451{word-spacing:8.832000pt;}
.wsb_c00451{word-spacing:10.816000pt;}
.ws5_c00451{word-spacing:14.400000pt;}
.ws16_c00451{word-spacing:16.640000pt;}
.ws6_c00451{word-spacing:16.768000pt;}
._0_c00451{margin-left:-426.965333pt;}
._4_c00451{margin-left:-5.248000pt;}
._1_c00451{margin-left:-3.733333pt;}
._3_c00451{margin-left:-1.996800pt;}
._2_c00451{margin-left:-1.008000pt;}
._5_c00451{width:1.190400pt;}
._7_c00451{width:2.803200pt;}
._6_c00451{width:4.224000pt;}
.fs1_c00451{font-size:37.333333pt;}
.fs0_c00451{font-size:53.333333pt;}
.fs4_c00451{font-size:58.666667pt;}
.fs3_c00451{font-size:64.000000pt;}
.fs2_c00451{font-size:96.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y1_c00451{bottom:36.666667pt;}
.y1d_c00451{bottom:147.714400pt;}
.y1c_c00451{bottom:174.386400pt;}
.y1b_c00451{bottom:201.058400pt;}
.y1a_c00451{bottom:227.730400pt;}
.y19_c00451{bottom:254.402400pt;}
.y18_c00451{bottom:281.074400pt;}
.y17_c00451{bottom:307.746400pt;}
.y16_c00451{bottom:334.418400pt;}
.y15_c00451{bottom:361.090400pt;}
.y14_c00451{bottom:387.762400pt;}
.y13_c00451{bottom:414.434400pt;}
.y12_c00451{bottom:441.106400pt;}
.y11_c00451{bottom:467.778400pt;}
.y10_c00451{bottom:494.450400pt;}
.yf_c00451{bottom:521.122400pt;}
.ye_c00451{bottom:547.794400pt;}
.yd_c00451{bottom:574.466400pt;}
.yc_c00451{bottom:601.138400pt;}
.yb_c00451{bottom:627.810400pt;}
.y26_c00451{bottom:627.853067pt;}
.ya_c00451{bottom:654.482400pt;}
.y25_c00451{bottom:654.519733pt;}
.y9_c00451{bottom:681.154400pt;}
.y24_c00451{bottom:681.186400pt;}
.y8_c00451{bottom:707.826400pt;}
.y23_c00451{bottom:707.853067pt;}
.y7_c00451{bottom:734.498400pt;}
.y22_c00451{bottom:734.519733pt;}
.y6_c00451{bottom:761.170400pt;}
.y21_c00451{bottom:761.186400pt;}
.y5_c00451{bottom:787.842400pt;}
.y20_c00451{bottom:787.853067pt;}
.y4_c00451{bottom:814.514400pt;}
.y1f_c00451{bottom:814.519733pt;}
.y3_c00451{bottom:841.186400pt;}
.y1e_c00451{bottom:841.223200pt;}
.y2_c00451{bottom:894.519733pt;}
.h5_c00451{height:44.704000pt;}
.h2_c00451{height:48.000000pt;}
.h4_c00451{height:57.600000pt;}
.h3_c00451{height:89.760000pt;}
.h0_c00451{height:1122.520000pt;}
.h1_c00451{height:1122.666667pt;}
.w0_c00451{width:793.701333pt;}
.w1_c00451{width:794.000000pt;}
.x0_c00451{left:0.000000pt;}
.x2_c00451{left:73.333333pt;}
.x3_c00451{left:94.666667pt;}
.x4_c00451{left:600.543200pt;}
.x1_c00451{left:699.500933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:1.185000;font-style:normal;font-weight:normal;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_33c67a7a21b3428d95d6a908.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.155000;font-style: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);}
.m1_c00452{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls3_c00452{letter-spacing:-0.360000px;}
.ls2_c00452{letter-spacing:0.000000px;}
.ls0_c00452{letter-spacing:0.864000px;}
.ls1_c00452{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00452{word-spacing:-13.104000px;}
.ws0_c00452{word-spacing:-10.200000px;}
.ws8_c00452{word-spacing:-7.200000px;}
.ws9_c00452{word-spacing:-6.000000px;}
.ws6_c00452{word-spacing:-4.752000px;}
.ws4_c00452{word-spacing:-1.728000px;}
.ws3_c00452{word-spacing:-1.440000px;}
.ws7_c00452{word-spacing:-1.200000px;}
.ws5_c00452{word-spacing:-0.864000px;}
.ws2_c00452{word-spacing:0.000000px;}
._0_c00452{margin-left:-480.336600px;}
._2_c00452{margin-left:-8.784000px;}
._4_c00452{margin-left:-7.056000px;}
._6_c00452{margin-left:-5.760000px;}
._1_c00452{margin-left:-4.200000px;}
._3_c00452{margin-left:-2.304000px;}
._9_c00452{margin-left:-1.200000px;}
._a_c00452{width:1.152000px;}
._5_c00452{width:2.304000px;}
._7_c00452{width:5.472000px;}
._8_c00452{width:7.200000px;}
.fc3_c00452{color:rgb(255,255,255);}
.fc2_c00452{color:rgb(233,83,14);}
.fc1_c00452{color:rgb(232,86,17);}
.fc0_c00452{color:rgb(60,60,59);}
.fs1_c00452{font-size:42.000000px;}
.fs0_c00452{font-size:60.000000px;}
.fs3_c00452{font-size:72.000000px;}
.fs4_c00452{font-size:120.000000px;}
.fs2_c00452{font-size:360.000000px;}
.y0_c00452{bottom:0.000000px;}
.y1_c00452{bottom:41.250000px;}
.yd_c00452{bottom:454.286700px;}
.yc_c00452{bottom:475.292700px;}
.yb_c00452{bottom:496.298700px;}
.ya_c00452{bottom:544.304700px;}
.y9_c00452{bottom:565.310700px;}
.y8_c00452{bottom:586.316700px;}
.y7_c00452{bottom:643.322700px;}
.y6_c00452{bottom:664.328700px;}
.y5_c00452{bottom:685.334700px;}
.y4_c00452{bottom:706.340700px;}
.y3_c00452{bottom:752.834700px;}
.y11_c00452{bottom:916.334700px;}
.y10_c00452{bottom:946.334700px;}
.yf_c00452{bottom:976.334700px;}
.ye_c00452{bottom:1006.334700px;}
.y2_c00452{bottom:1093.526700px;}
.h2_c00452{height:54.000000px;}
.h5_c00452{height:64.800000px;}
.h4_c00452{height:66.456000px;}
.h6_c00452{height:112.200000px;}
.h3_c00452{height:324.000000px;}
.h0_c00452{height:1262.835000px;}
.h1_c00452{height:1263.000000px;}
.w0_c00452{width:892.914000px;}
.w1_c00452{width:893.250000px;}
.x0_c00452{left:0.000000px;}
.x2_c00452{left:81.290250px;}
.x3_c00452{left:82.393650px;}
.x5_c00452{left:112.287450px;}
.x4_c00452{left:127.393650px;}
.x1_c00452{left:786.788700px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls3_c00452{letter-spacing:-0.320000pt;}
.ls2_c00452{letter-spacing:0.000000pt;}
.ls0_c00452{letter-spacing:0.768000pt;}
.ls1_c00452{letter-spacing:1.066667pt;}
.ws1_c00452{word-spacing:-11.648000pt;}
.ws0_c00452{word-spacing:-9.066667pt;}
.ws8_c00452{word-spacing:-6.400000pt;}
.ws9_c00452{word-spacing:-5.333333pt;}
.ws6_c00452{word-spacing:-4.224000pt;}
.ws4_c00452{word-spacing:-1.536000pt;}
.ws3_c00452{word-spacing:-1.280000pt;}
.ws7_c00452{word-spacing:-1.066667pt;}
.ws5_c00452{word-spacing:-0.768000pt;}
.ws2_c00452{word-spacing:0.000000pt;}
._0_c00452{margin-left:-426.965867pt;}
._2_c00452{margin-left:-7.808000pt;}
._4_c00452{margin-left:-6.272000pt;}
._6_c00452{margin-left:-5.120000pt;}
._1_c00452{margin-left:-3.733333pt;}
._3_c00452{margin-left:-2.048000pt;}
._9_c00452{margin-left:-1.066667pt;}
._a_c00452{width:1.024000pt;}
._5_c00452{width:2.048000pt;}
._7_c00452{width:4.864000pt;}
._8_c00452{width:6.400000pt;}
.fs1_c00452{font-size:37.333333pt;}
.fs0_c00452{font-size:53.333333pt;}
.fs3_c00452{font-size:64.000000pt;}
.fs4_c00452{font-size:106.666667pt;}
.fs2_c00452{font-size:320.000000pt;}
.y0_c00452{bottom:0.000000pt;}
.y1_c00452{bottom:36.666667pt;}
.yd_c00452{bottom:403.810400pt;}
.yc_c00452{bottom:422.482400pt;}
.yb_c00452{bottom:441.154400pt;}
.ya_c00452{bottom:483.826400pt;}
.y9_c00452{bottom:502.498400pt;}
.y8_c00452{bottom:521.170400pt;}
.y7_c00452{bottom:571.842400pt;}
.y6_c00452{bottom:590.514400pt;}
.y5_c00452{bottom:609.186400pt;}
.y4_c00452{bottom:627.858400pt;}
.y3_c00452{bottom:669.186400pt;}
.y11_c00452{bottom:814.519733pt;}
.y10_c00452{bottom:841.186400pt;}
.yf_c00452{bottom:867.853067pt;}
.ye_c00452{bottom:894.519733pt;}
.y2_c00452{bottom:972.023733pt;}
.h2_c00452{height:48.000000pt;}
.h5_c00452{height:57.600000pt;}
.h4_c00452{height:59.072000pt;}
.h6_c00452{height:99.733333pt;}
.h3_c00452{height:288.000000pt;}
.h0_c00452{height:1122.520000pt;}
.h1_c00452{height:1122.666667pt;}
.w0_c00452{width:793.701333pt;}
.w1_c00452{width:794.000000pt;}
.x0_c00452{left:0.000000pt;}
.x2_c00452{left:72.258000pt;}
.x3_c00452{left:73.238800pt;}
.x5_c00452{left:99.811067pt;}
.x4_c00452{left:113.238800pt;}
.x1_c00452{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.160000;font-style:normal;font-weight:normal;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_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.199000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00453;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls5_c00453{letter-spacing:-0.540000px;}
.ls4_c00453{letter-spacing:0.000000px;}
.ls0_c00453{letter-spacing:0.720000px;}
.ls1_c00453{letter-spacing:0.840000px;}
.ls3_c00453{letter-spacing:1.500000px;}
.ls2_c00453{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00453{word-spacing:-21.060000px;}
.ws2_c00453{word-spacing:-12.960000px;}
.ws0_c00453{word-spacing:-10.200000px;}
.wsa_c00453{word-spacing:-1.728000px;}
.ws12_c00453{word-spacing:-1.500000px;}
.ws4_c00453{word-spacing:-0.840000px;}
.ws7_c00453{word-spacing:-0.792000px;}
.ws3_c00453{word-spacing:0.000000px;}
.wsd_c00453{word-spacing:1.224000px;}
.wsb_c00453{word-spacing:3.168000px;}
.wse_c00453{word-spacing:3.384000px;}
.ws5_c00453{word-spacing:4.176000px;}
.wsf_c00453{word-spacing:5.328000px;}
.ws8_c00453{word-spacing:5.688000px;}
.ws11_c00453{word-spacing:5.904000px;}
.ws10_c00453{word-spacing:6.696000px;}
.ws6_c00453{word-spacing:6.768000px;}
.wsc_c00453{word-spacing:10.080000px;}
.ws9_c00453{word-spacing:14.112000px;}
._0_c00453{margin-left:-480.336600px;}
._1_c00453{margin-left:-4.200000px;}
._3_c00453{margin-left:-2.460000px;}
._2_c00453{margin-left:-1.440000px;}
.fc3_c00453{color:rgb(32,32,32);}
.fc2_c00453{color:rgb(233,83,14);}
.fc1_c00453{color:rgb(232,86,17);}
.fc4_c00453{color:rgb(157,157,156);}
.fc0_c00453{color:rgb(60,60,59);}
.fs1_c00453{font-size:42.000000px;}
.fs0_c00453{font-size:60.000000px;}
.fs5_c00453{font-size:66.000000px;}
.fs4_c00453{font-size:72.000000px;}
.fs3_c00453{font-size:84.000000px;}
.fs2_c00453{font-size:108.000000px;}
.y0_c00453{bottom:0.000000px;}
.y1_c00453{bottom:41.250000px;}
.y14_c00453{bottom:286.310700px;}
.y13_c00453{bottom:316.316700px;}
.y12_c00453{bottom:346.322700px;}
.y11_c00453{bottom:376.328700px;}
.y10_c00453{bottom:406.334700px;}
.yf_c00453{bottom:466.334700px;}
.ye_c00453{bottom:556.274700px;}
.yd_c00453{bottom:586.280700px;}
.yc_c00453{bottom:616.286700px;}
.yb_c00453{bottom:646.292700px;}
.y1c_c00453{bottom:646.334700px;}
.ya_c00453{bottom:676.298700px;}
.y1b_c00453{bottom:676.334700px;}
.y9_c00453{bottom:706.304700px;}
.y1a_c00453{bottom:706.334700px;}
.y8_c00453{bottom:736.310700px;}
.y19_c00453{bottom:736.334700px;}
.y7_c00453{bottom:766.316700px;}
.y18_c00453{bottom:766.334700px;}
.y6_c00453{bottom:796.322700px;}
.y17_c00453{bottom:796.334700px;}
.y5_c00453{bottom:826.328700px;}
.y16_c00453{bottom:826.334700px;}
.y4_c00453{bottom:856.334700px;}
.y15_c00453{bottom:856.376100px;}
.y3_c00453{bottom:916.334700px;}
.y2_c00453{bottom:1006.334700px;}
.h6_c00453{height:50.292000px;}
.h2_c00453{height:54.000000px;}
.h5_c00453{height:64.800000px;}
.h4_c00453{height:78.540000px;}
.h3_c00453{height:100.980000px;}
.h0_c00453{height:1262.835000px;}
.h1_c00453{height:1263.000000px;}
.w0_c00453{width:892.914000px;}
.w1_c00453{width:893.250000px;}
.x0_c00453{left:0.000000px;}
.x2_c00453{left:82.500000px;}
.x3_c00453{left:90.000000px;}
.x4_c00453{left:106.500000px;}
.x5_c00453{left:675.611100px;}
.x1_c00453{left:785.813700px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls5_c00453{letter-spacing:-0.480000pt;}
.ls4_c00453{letter-spacing:0.000000pt;}
.ls0_c00453{letter-spacing:0.640000pt;}
.ls1_c00453{letter-spacing:0.746667pt;}
.ls3_c00453{letter-spacing:1.333333pt;}
.ls2_c00453{letter-spacing:1.466667pt;}
.ws1_c00453{word-spacing:-18.720000pt;}
.ws2_c00453{word-spacing:-11.520000pt;}
.ws0_c00453{word-spacing:-9.066667pt;}
.wsa_c00453{word-spacing:-1.536000pt;}
.ws12_c00453{word-spacing:-1.333333pt;}
.ws4_c00453{word-spacing:-0.746667pt;}
.ws7_c00453{word-spacing:-0.704000pt;}
.ws3_c00453{word-spacing:0.000000pt;}
.wsd_c00453{word-spacing:1.088000pt;}
.wsb_c00453{word-spacing:2.816000pt;}
.wse_c00453{word-spacing:3.008000pt;}
.ws5_c00453{word-spacing:3.712000pt;}
.wsf_c00453{word-spacing:4.736000pt;}
.ws8_c00453{word-spacing:5.056000pt;}
.ws11_c00453{word-spacing:5.248000pt;}
.ws10_c00453{word-spacing:5.952000pt;}
.ws6_c00453{word-spacing:6.016000pt;}
.wsc_c00453{word-spacing:8.960000pt;}
.ws9_c00453{word-spacing:12.544000pt;}
._0_c00453{margin-left:-426.965867pt;}
._1_c00453{margin-left:-3.733333pt;}
._3_c00453{margin-left:-2.186667pt;}
._2_c00453{margin-left:-1.280000pt;}
.fs1_c00453{font-size:37.333333pt;}
.fs0_c00453{font-size:53.333333pt;}
.fs5_c00453{font-size:58.666667pt;}
.fs4_c00453{font-size:64.000000pt;}
.fs3_c00453{font-size:74.666667pt;}
.fs2_c00453{font-size:96.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y1_c00453{bottom:36.666667pt;}
.y14_c00453{bottom:254.498400pt;}
.y13_c00453{bottom:281.170400pt;}
.y12_c00453{bottom:307.842400pt;}
.y11_c00453{bottom:334.514400pt;}
.y10_c00453{bottom:361.186400pt;}
.yf_c00453{bottom:414.519733pt;}
.ye_c00453{bottom:494.466400pt;}
.yd_c00453{bottom:521.138400pt;}
.yc_c00453{bottom:547.810400pt;}
.yb_c00453{bottom:574.482400pt;}
.y1c_c00453{bottom:574.519733pt;}
.ya_c00453{bottom:601.154400pt;}
.y1b_c00453{bottom:601.186400pt;}
.y9_c00453{bottom:627.826400pt;}
.y1a_c00453{bottom:627.853067pt;}
.y8_c00453{bottom:654.498400pt;}
.y19_c00453{bottom:654.519733pt;}
.y7_c00453{bottom:681.170400pt;}
.y18_c00453{bottom:681.186400pt;}
.y6_c00453{bottom:707.842400pt;}
.y17_c00453{bottom:707.853067pt;}
.y5_c00453{bottom:734.514400pt;}
.y16_c00453{bottom:734.519733pt;}
.y4_c00453{bottom:761.186400pt;}
.y15_c00453{bottom:761.223200pt;}
.y3_c00453{bottom:814.519733pt;}
.y2_c00453{bottom:894.519733pt;}
.h6_c00453{height:44.704000pt;}
.h2_c00453{height:48.000000pt;}
.h5_c00453{height:57.600000pt;}
.h4_c00453{height:69.813333pt;}
.h3_c00453{height:89.760000pt;}
.h0_c00453{height:1122.520000pt;}
.h1_c00453{height:1122.666667pt;}
.w0_c00453{width:793.701333pt;}
.w1_c00453{width:794.000000pt;}
.x0_c00453{left:0.000000pt;}
.x2_c00453{left:73.333333pt;}
.x3_c00453{left:80.000000pt;}
.x4_c00453{left:94.666667pt;}
.x5_c00453{left:600.543200pt;}
.x1_c00453{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.v1_c00454{vertical-align:12.024000px;}
.ls1_c00454{letter-spacing:0.000000px;}
.ls3_c00454{letter-spacing:0.420000px;}
.ls0_c00454{letter-spacing:0.720000px;}
.ls2_c00454{letter-spacing:0.840000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:-10.200000px;}
.wsc_c00454{word-spacing:-3.168000px;}
.ws9_c00454{word-spacing:-1.656000px;}
.ws8_c00454{word-spacing:-1.224000px;}
.ws2_c00454{word-spacing:-0.840000px;}
.ws12_c00454{word-spacing:-0.720000px;}
.ws5_c00454{word-spacing:-0.420000px;}
.ws1_c00454{word-spacing:0.000000px;}
.wse_c00454{word-spacing:0.072000px;}
.ws3_c00454{word-spacing:0.504000px;}
.wsf_c00454{word-spacing:0.936000px;}
.wsb_c00454{word-spacing:3.456000px;}
.ws7_c00454{word-spacing:4.608000px;}
.wsd_c00454{word-spacing:10.152000px;}
.ws6_c00454{word-spacing:11.016000px;}
.wsa_c00454{word-spacing:13.608000px;}
.ws4_c00454{word-spacing:14.328000px;}
.ws11_c00454{word-spacing:19.368000px;}
.ws10_c00454{word-spacing:37.008000px;}
._0_c00454{margin-left:-480.336000px;}
._5_c00454{margin-left:-10.080000px;}
._1_c00454{margin-left:-4.200000px;}
._4_c00454{margin-left:-2.736000px;}
._2_c00454{margin-left:-1.476000px;}
._3_c00454{width:9.184800px;}
.fc2_c00454{color:rgb(32,32,32);}
.fc1_c00454{color:rgb(232,86,17);}
.fc0_c00454{color:rgb(60,60,59);}
.fs1_c00454{font-size:42.000000px;}
.fs0_c00454{font-size:60.000000px;}
.fs3_c00454{font-size:72.000000px;}
.fs2_c00454{font-size:84.000000px;}
.y0_c00454{bottom:0.000000px;}
.y1_c00454{bottom:41.250000px;}
.y14_c00454{bottom:346.274700px;}
.y13_c00454{bottom:376.280700px;}
.y12_c00454{bottom:406.286700px;}
.y11_c00454{bottom:436.292700px;}
.y10_c00454{bottom:466.298700px;}
.yf_c00454{bottom:496.304700px;}
.ye_c00454{bottom:526.310700px;}
.yd_c00454{bottom:556.316700px;}
.yc_c00454{bottom:586.322700px;}
.yb_c00454{bottom:616.328700px;}
.ya_c00454{bottom:646.334700px;}
.y9_c00454{bottom:706.334700px;}
.y8_c00454{bottom:796.310700px;}
.y7_c00454{bottom:826.316700px;}
.y6_c00454{bottom:856.322700px;}
.y5_c00454{bottom:886.328700px;}
.y4_c00454{bottom:916.328700px;}
.y3_c00454{bottom:946.334700px;}
.y2_c00454{bottom:1006.334700px;}
.h2_c00454{height:54.000000px;}
.h4_c00454{height:64.800000px;}
.h5_c00454{height:64.824000px;}
.h6_c00454{height:64.896000px;}
.h3_c00454{height:78.540000px;}
.h0_c00454{height:1262.835000px;}
.h1_c00454{height:1263.000000px;}
.w0_c00454{width:892.914000px;}
.w1_c00454{width:893.250000px;}
.x0_c00454{left:0.000000px;}
.x2_c00454{left:90.000000px;}
.x3_c00454{left:106.500000px;}
.x1_c00454{left:786.863550px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.v1_c00454{vertical-align:10.688000pt;}
.ls1_c00454{letter-spacing:0.000000pt;}
.ls3_c00454{letter-spacing:0.373333pt;}
.ls0_c00454{letter-spacing:0.640000pt;}
.ls2_c00454{letter-spacing:0.746667pt;}
.ws0_c00454{word-spacing:-9.066667pt;}
.wsc_c00454{word-spacing:-2.816000pt;}
.ws9_c00454{word-spacing:-1.472000pt;}
.ws8_c00454{word-spacing:-1.088000pt;}
.ws2_c00454{word-spacing:-0.746667pt;}
.ws12_c00454{word-spacing:-0.640000pt;}
.ws5_c00454{word-spacing:-0.373333pt;}
.ws1_c00454{word-spacing:0.000000pt;}
.wse_c00454{word-spacing:0.064000pt;}
.ws3_c00454{word-spacing:0.448000pt;}
.wsf_c00454{word-spacing:0.832000pt;}
.wsb_c00454{word-spacing:3.072000pt;}
.ws7_c00454{word-spacing:4.096000pt;}
.wsd_c00454{word-spacing:9.024000pt;}
.ws6_c00454{word-spacing:9.792000pt;}
.wsa_c00454{word-spacing:12.096000pt;}
.ws4_c00454{word-spacing:12.736000pt;}
.ws11_c00454{word-spacing:17.216000pt;}
.ws10_c00454{word-spacing:32.896000pt;}
._0_c00454{margin-left:-426.965333pt;}
._5_c00454{margin-left:-8.960000pt;}
._1_c00454{margin-left:-3.733333pt;}
._4_c00454{margin-left:-2.432000pt;}
._2_c00454{margin-left:-1.312000pt;}
._3_c00454{width:8.164267pt;}
.fs1_c00454{font-size:37.333333pt;}
.fs0_c00454{font-size:53.333333pt;}
.fs3_c00454{font-size:64.000000pt;}
.fs2_c00454{font-size:74.666667pt;}
.y0_c00454{bottom:0.000000pt;}
.y1_c00454{bottom:36.666667pt;}
.y14_c00454{bottom:307.799733pt;}
.y13_c00454{bottom:334.471733pt;}
.y12_c00454{bottom:361.143733pt;}
.y11_c00454{bottom:387.815733pt;}
.y10_c00454{bottom:414.487733pt;}
.yf_c00454{bottom:441.159733pt;}
.ye_c00454{bottom:467.831733pt;}
.yd_c00454{bottom:494.503733pt;}
.yc_c00454{bottom:521.175733pt;}
.yb_c00454{bottom:547.847733pt;}
.ya_c00454{bottom:574.519733pt;}
.y9_c00454{bottom:627.853067pt;}
.y8_c00454{bottom:707.831733pt;}
.y7_c00454{bottom:734.503733pt;}
.y6_c00454{bottom:761.175733pt;}
.y5_c00454{bottom:787.847733pt;}
.y4_c00454{bottom:814.514400pt;}
.y3_c00454{bottom:841.186400pt;}
.y2_c00454{bottom:894.519733pt;}
.h2_c00454{height:48.000000pt;}
.h4_c00454{height:57.600000pt;}
.h5_c00454{height:57.621333pt;}
.h6_c00454{height:57.685333pt;}
.h3_c00454{height:69.813333pt;}
.h0_c00454{height:1122.520000pt;}
.h1_c00454{height:1122.666667pt;}
.w0_c00454{width:793.701333pt;}
.w1_c00454{width:794.000000pt;}
.x0_c00454{left:0.000000pt;}
.x2_c00454{left:80.000000pt;}
.x3_c00454{left:94.666667pt;}
.x1_c00454{left:699.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00455;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00455;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00455{font-family:ff5_c00455;line-height:1.155000;font-style: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);}
.m1_c00455{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls2_c00455{letter-spacing:0.000000px;}
.ls0_c00455{letter-spacing:0.864000px;}
.ls1_c00455{letter-spacing:1.200000px;}
.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:-10.200000px;}
.ws1_c00455{word-spacing:0.000000px;}
._0_c00455{margin-left:-480.336000px;}
._6_c00455{margin-left:-12.000000px;}
._3_c00455{margin-left:-9.000000px;}
._7_c00455{margin-left:-7.200000px;}
._5_c00455{margin-left:-6.000000px;}
._1_c00455{margin-left:-4.200000px;}
._2_c00455{margin-left:-1.800000px;}
._4_c00455{width:1.800000px;}
.fc3_c00455{color:rgb(255,255,255);}
.fc2_c00455{color:rgb(233,83,14);}
.fc1_c00455{color:rgb(232,86,17);}
.fc0_c00455{color:rgb(60,60,59);}
.fs1_c00455{font-size:42.000000px;}
.fs0_c00455{font-size:60.000000px;}
.fs3_c00455{font-size:72.000000px;}
.fs4_c00455{font-size:120.000000px;}
.fs2_c00455{font-size:360.000000px;}
.y0_c00455{bottom:0.000000px;}
.y1_c00455{bottom:41.250000px;}
.y6_c00455{bottom:664.328700px;}
.y5_c00455{bottom:685.334700px;}
.y4_c00455{bottom:706.340700px;}
.y3_c00455{bottom:752.834700px;}
.yb_c00455{bottom:886.334700px;}
.ya_c00455{bottom:916.334700px;}
.y9_c00455{bottom:946.334700px;}
.y8_c00455{bottom:976.334700px;}
.y7_c00455{bottom:1006.334700px;}
.y2_c00455{bottom:1093.526700px;}
.h2_c00455{height:54.000000px;}
.h5_c00455{height:64.800000px;}
.h4_c00455{height:66.456000px;}
.h6_c00455{height:112.200000px;}
.h3_c00455{height:324.000000px;}
.h0_c00455{height:1262.835000px;}
.h1_c00455{height:1263.000000px;}
.w0_c00455{width:892.914000px;}
.w1_c00455{width:893.250000px;}
.x0_c00455{left:0.000000px;}
.x2_c00455{left:81.290250px;}
.x3_c00455{left:82.393650px;}
.x5_c00455{left:112.287450px;}
.x4_c00455{left:127.393650px;}
.x1_c00455{left:785.738550px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls2_c00455{letter-spacing:0.000000pt;}
.ls0_c00455{letter-spacing:0.768000pt;}
.ls1_c00455{letter-spacing:1.066667pt;}
.ws0_c00455{word-spacing:-9.066667pt;}
.ws1_c00455{word-spacing:0.000000pt;}
._0_c00455{margin-left:-426.965333pt;}
._6_c00455{margin-left:-10.666667pt;}
._3_c00455{margin-left:-8.000000pt;}
._7_c00455{margin-left:-6.400000pt;}
._5_c00455{margin-left:-5.333333pt;}
._1_c00455{margin-left:-3.733333pt;}
._2_c00455{margin-left:-1.600000pt;}
._4_c00455{width:1.600000pt;}
.fs1_c00455{font-size:37.333333pt;}
.fs0_c00455{font-size:53.333333pt;}
.fs3_c00455{font-size:64.000000pt;}
.fs4_c00455{font-size:106.666667pt;}
.fs2_c00455{font-size:320.000000pt;}
.y0_c00455{bottom:0.000000pt;}
.y1_c00455{bottom:36.666667pt;}
.y6_c00455{bottom:590.514400pt;}
.y5_c00455{bottom:609.186400pt;}
.y4_c00455{bottom:627.858400pt;}
.y3_c00455{bottom:669.186400pt;}
.yb_c00455{bottom:787.853067pt;}
.ya_c00455{bottom:814.519733pt;}
.y9_c00455{bottom:841.186400pt;}
.y8_c00455{bottom:867.853067pt;}
.y7_c00455{bottom:894.519733pt;}
.y2_c00455{bottom:972.023733pt;}
.h2_c00455{height:48.000000pt;}
.h5_c00455{height:57.600000pt;}
.h4_c00455{height:59.072000pt;}
.h6_c00455{height:99.733333pt;}
.h3_c00455{height:288.000000pt;}
.h0_c00455{height:1122.520000pt;}
.h1_c00455{height:1122.666667pt;}
.w0_c00455{width:793.701333pt;}
.w1_c00455{width:794.000000pt;}
.x0_c00455{left:0.000000pt;}
.x2_c00455{left:72.258000pt;}
.x3_c00455{left:73.238800pt;}
.x5_c00455{left:99.811067pt;}
.x4_c00455{left:113.238800pt;}
.x1_c00455{left:698.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00456;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00456{font-family:ff4_c00456;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls5_c00456{letter-spacing:-0.540000px;}
.ls4_c00456{letter-spacing:0.000000px;}
.ls0_c00456{letter-spacing:0.720000px;}
.ls1_c00456{letter-spacing:0.840000px;}
.ls3_c00456{letter-spacing:1.500000px;}
.ls2_c00456{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00456{word-spacing:-21.060000px;}
.ws2_c00456{word-spacing:-17.640000px;}
.ws0_c00456{word-spacing:-10.200000px;}
.wsf_c00456{word-spacing:-1.500000px;}
.wsd_c00456{word-spacing:-1.296000px;}
.ws4_c00456{word-spacing:-0.840000px;}
.ws3_c00456{word-spacing:0.000000px;}
.wsc_c00456{word-spacing:1.656000px;}
.wsa_c00456{word-spacing:6.264000px;}
.wsb_c00456{word-spacing:7.416000px;}
.ws8_c00456{word-spacing:8.856000px;}
.ws6_c00456{word-spacing:10.224000px;}
.wse_c00456{word-spacing:12.240000px;}
.ws5_c00456{word-spacing:15.408000px;}
.ws9_c00456{word-spacing:16.272000px;}
.ws7_c00456{word-spacing:26.712000px;}
._0_c00456{margin-left:-480.336000px;}
._3_c00456{margin-left:-11.160000px;}
._1_c00456{margin-left:-4.200000px;}
._2_c00456{margin-left:-1.440000px;}
.fc3_c00456{color:rgb(32,32,32);}
.fc2_c00456{color:rgb(233,83,14);}
.fc1_c00456{color:rgb(232,86,17);}
.fc4_c00456{color:rgb(157,157,156);}
.fc0_c00456{color:rgb(60,60,59);}
.fs1_c00456{font-size:42.000000px;}
.fs0_c00456{font-size:60.000000px;}
.fs5_c00456{font-size:66.000000px;}
.fs4_c00456{font-size:72.000000px;}
.fs3_c00456{font-size:84.000000px;}
.fs2_c00456{font-size:108.000000px;}
.y0_c00456{bottom:0.000000px;}
.y1_c00456{bottom:41.250000px;}
.y10_c00456{bottom:406.322700px;}
.yf_c00456{bottom:436.328700px;}
.ye_c00456{bottom:466.334700px;}
.yd_c00456{bottom:526.334700px;}
.yc_c00456{bottom:616.286700px;}
.yb_c00456{bottom:646.292700px;}
.ya_c00456{bottom:676.298700px;}
.y9_c00456{bottom:706.304700px;}
.y8_c00456{bottom:736.310700px;}
.y15_c00456{bottom:736.334700px;}
.y7_c00456{bottom:766.316700px;}
.y14_c00456{bottom:766.334700px;}
.y6_c00456{bottom:796.322700px;}
.y13_c00456{bottom:796.334700px;}
.y5_c00456{bottom:826.328700px;}
.y12_c00456{bottom:826.334700px;}
.y4_c00456{bottom:856.334700px;}
.y11_c00456{bottom:856.376100px;}
.y3_c00456{bottom:916.334700px;}
.y2_c00456{bottom:1006.334700px;}
.h6_c00456{height:50.292000px;}
.h2_c00456{height:54.000000px;}
.h5_c00456{height:64.800000px;}
.h4_c00456{height:78.540000px;}
.h3_c00456{height:100.980000px;}
.h0_c00456{height:1262.835000px;}
.h1_c00456{height:1263.000000px;}
.w0_c00456{width:892.914000px;}
.w1_c00456{width:893.250000px;}
.x0_c00456{left:0.000000px;}
.x2_c00456{left:82.500000px;}
.x3_c00456{left:90.000000px;}
.x4_c00456{left:106.500000px;}
.x5_c00456{left:675.611100px;}
.x1_c00456{left:787.838550px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls5_c00456{letter-spacing:-0.480000pt;}
.ls4_c00456{letter-spacing:0.000000pt;}
.ls0_c00456{letter-spacing:0.640000pt;}
.ls1_c00456{letter-spacing:0.746667pt;}
.ls3_c00456{letter-spacing:1.333333pt;}
.ls2_c00456{letter-spacing:1.466667pt;}
.ws1_c00456{word-spacing:-18.720000pt;}
.ws2_c00456{word-spacing:-15.680000pt;}
.ws0_c00456{word-spacing:-9.066667pt;}
.wsf_c00456{word-spacing:-1.333333pt;}
.wsd_c00456{word-spacing:-1.152000pt;}
.ws4_c00456{word-spacing:-0.746667pt;}
.ws3_c00456{word-spacing:0.000000pt;}
.wsc_c00456{word-spacing:1.472000pt;}
.wsa_c00456{word-spacing:5.568000pt;}
.wsb_c00456{word-spacing:6.592000pt;}
.ws8_c00456{word-spacing:7.872000pt;}
.ws6_c00456{word-spacing:9.088000pt;}
.wse_c00456{word-spacing:10.880000pt;}
.ws5_c00456{word-spacing:13.696000pt;}
.ws9_c00456{word-spacing:14.464000pt;}
.ws7_c00456{word-spacing:23.744000pt;}
._0_c00456{margin-left:-426.965333pt;}
._3_c00456{margin-left:-9.920000pt;}
._1_c00456{margin-left:-3.733333pt;}
._2_c00456{margin-left:-1.280000pt;}
.fs1_c00456{font-size:37.333333pt;}
.fs0_c00456{font-size:53.333333pt;}
.fs5_c00456{font-size:58.666667pt;}
.fs4_c00456{font-size:64.000000pt;}
.fs3_c00456{font-size:74.666667pt;}
.fs2_c00456{font-size:96.000000pt;}
.y0_c00456{bottom:0.000000pt;}
.y1_c00456{bottom:36.666667pt;}
.y10_c00456{bottom:361.175733pt;}
.yf_c00456{bottom:387.847733pt;}
.ye_c00456{bottom:414.519733pt;}
.yd_c00456{bottom:467.853067pt;}
.yc_c00456{bottom:547.810400pt;}
.yb_c00456{bottom:574.482400pt;}
.ya_c00456{bottom:601.154400pt;}
.y9_c00456{bottom:627.826400pt;}
.y8_c00456{bottom:654.498400pt;}
.y15_c00456{bottom:654.519733pt;}
.y7_c00456{bottom:681.170400pt;}
.y14_c00456{bottom:681.186400pt;}
.y6_c00456{bottom:707.842400pt;}
.y13_c00456{bottom:707.853067pt;}
.y5_c00456{bottom:734.514400pt;}
.y12_c00456{bottom:734.519733pt;}
.y4_c00456{bottom:761.186400pt;}
.y11_c00456{bottom:761.223200pt;}
.y3_c00456{bottom:814.519733pt;}
.y2_c00456{bottom:894.519733pt;}
.h6_c00456{height:44.704000pt;}
.h2_c00456{height:48.000000pt;}
.h5_c00456{height:57.600000pt;}
.h4_c00456{height:69.813333pt;}
.h3_c00456{height:89.760000pt;}
.h0_c00456{height:1122.520000pt;}
.h1_c00456{height:1122.666667pt;}
.w0_c00456{width:793.701333pt;}
.w1_c00456{width:794.000000pt;}
.x0_c00456{left:0.000000pt;}
.x2_c00456{left:73.333333pt;}
.x3_c00456{left:80.000000pt;}
.x4_c00456{left:94.666667pt;}
.x5_c00456{left:600.543200pt;}
.x1_c00456{left:700.300933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.199000;font-style: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);}
.m1_c00457{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls1_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:0.720000px;}
.ls2_c00457{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws10_c00457{word-spacing:-2.088000px;}
.ws9_c00457{word-spacing:-1.368000px;}
.ws2_c00457{word-spacing:-0.840000px;}
.ws13_c00457{word-spacing:-0.720000px;}
.ws1_c00457{word-spacing:0.000000px;}
.wsf_c00457{word-spacing:1.080000px;}
.ws11_c00457{word-spacing:1.296000px;}
.ws4_c00457{word-spacing:1.800000px;}
.wsa_c00457{word-spacing:2.088000px;}
.ws7_c00457{word-spacing:5.472000px;}
.ws5_c00457{word-spacing:6.120000px;}
.wse_c00457{word-spacing:6.408000px;}
.wsd_c00457{word-spacing:6.912000px;}
.ws6_c00457{word-spacing:6.984000px;}
.wsb_c00457{word-spacing:8.136000px;}
.ws8_c00457{word-spacing:9.072000px;}
.ws12_c00457{word-spacing:10.944000px;}
.ws3_c00457{word-spacing:12.456000px;}
.wsc_c00457{word-spacing:13.032000px;}
._0_c00457{margin-left:-480.336600px;}
._3_c00457{margin-left:-5.760000px;}
._1_c00457{margin-left:-4.200000px;}
._2_c00457{margin-left:-1.440000px;}
.fc2_c00457{color:rgb(32,32,32);}
.fc1_c00457{color:rgb(232,86,17);}
.fc0_c00457{color:rgb(60,60,59);}
.fs1_c00457{font-size:42.000000px;}
.fs0_c00457{font-size:60.000000px;}
.fs3_c00457{font-size:72.000000px;}
.fs2_c00457{font-size:84.000000px;}
.y0_c00457{bottom:0.000000px;}
.y1_c00457{bottom:41.250000px;}
.y17_c00457{bottom:166.316700px;}
.y16_c00457{bottom:196.322700px;}
.y15_c00457{bottom:226.328700px;}
.y14_c00457{bottom:256.334700px;}
.y13_c00457{bottom:316.334700px;}
.y12_c00457{bottom:406.304700px;}
.y11_c00457{bottom:436.310700px;}
.y10_c00457{bottom:466.316700px;}
.yf_c00457{bottom:496.322700px;}
.ye_c00457{bottom:526.328700px;}
.yd_c00457{bottom:556.334700px;}
.yc_c00457{bottom:616.334700px;}
.yb_c00457{bottom:706.286700px;}
.ya_c00457{bottom:736.292700px;}
.y9_c00457{bottom:766.298700px;}
.y8_c00457{bottom:796.304700px;}
.y7_c00457{bottom:826.310700px;}
.y6_c00457{bottom:856.316700px;}
.y5_c00457{bottom:886.322700px;}
.y4_c00457{bottom:916.328700px;}
.y3_c00457{bottom:946.334700px;}
.y2_c00457{bottom:1006.334700px;}
.h2_c00457{height:54.000000px;}
.h4_c00457{height:64.800000px;}
.h3_c00457{height:78.540000px;}
.h0_c00457{height:1262.835000px;}
.h1_c00457{height:1263.000000px;}
.w0_c00457{width:892.914000px;}
.w1_c00457{width:893.250000px;}
.x0_c00457{left:0.000000px;}
.x2_c00457{left:90.000000px;}
.x3_c00457{left:106.500000px;}
.x1_c00457{left:785.813700px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls1_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:0.640000pt;}
.ls2_c00457{letter-spacing:0.746667pt;}
.ws0_c00457{word-spacing:-9.066667pt;}
.ws10_c00457{word-spacing:-1.856000pt;}
.ws9_c00457{word-spacing:-1.216000pt;}
.ws2_c00457{word-spacing:-0.746667pt;}
.ws13_c00457{word-spacing:-0.640000pt;}
.ws1_c00457{word-spacing:0.000000pt;}
.wsf_c00457{word-spacing:0.960000pt;}
.ws11_c00457{word-spacing:1.152000pt;}
.ws4_c00457{word-spacing:1.600000pt;}
.wsa_c00457{word-spacing:1.856000pt;}
.ws7_c00457{word-spacing:4.864000pt;}
.ws5_c00457{word-spacing:5.440000pt;}
.wse_c00457{word-spacing:5.696000pt;}
.wsd_c00457{word-spacing:6.144000pt;}
.ws6_c00457{word-spacing:6.208000pt;}
.wsb_c00457{word-spacing:7.232000pt;}
.ws8_c00457{word-spacing:8.064000pt;}
.ws12_c00457{word-spacing:9.728000pt;}
.ws3_c00457{word-spacing:11.072000pt;}
.wsc_c00457{word-spacing:11.584000pt;}
._0_c00457{margin-left:-426.965867pt;}
._3_c00457{margin-left:-5.120000pt;}
._1_c00457{margin-left:-3.733333pt;}
._2_c00457{margin-left:-1.280000pt;}
.fs1_c00457{font-size:37.333333pt;}
.fs0_c00457{font-size:53.333333pt;}
.fs3_c00457{font-size:64.000000pt;}
.fs2_c00457{font-size:74.666667pt;}
.y0_c00457{bottom:0.000000pt;}
.y1_c00457{bottom:36.666667pt;}
.y17_c00457{bottom:147.837067pt;}
.y16_c00457{bottom:174.509067pt;}
.y15_c00457{bottom:201.181067pt;}
.y14_c00457{bottom:227.853067pt;}
.y13_c00457{bottom:281.186400pt;}
.y12_c00457{bottom:361.159733pt;}
.y11_c00457{bottom:387.831733pt;}
.y10_c00457{bottom:414.503733pt;}
.yf_c00457{bottom:441.175733pt;}
.ye_c00457{bottom:467.847733pt;}
.yd_c00457{bottom:494.519733pt;}
.yc_c00457{bottom:547.853067pt;}
.yb_c00457{bottom:627.810400pt;}
.ya_c00457{bottom:654.482400pt;}
.y9_c00457{bottom:681.154400pt;}
.y8_c00457{bottom:707.826400pt;}
.y7_c00457{bottom:734.498400pt;}
.y6_c00457{bottom:761.170400pt;}
.y5_c00457{bottom:787.842400pt;}
.y4_c00457{bottom:814.514400pt;}
.y3_c00457{bottom:841.186400pt;}
.y2_c00457{bottom:894.519733pt;}
.h2_c00457{height:48.000000pt;}
.h4_c00457{height:57.600000pt;}
.h3_c00457{height:69.813333pt;}
.h0_c00457{height:1122.520000pt;}
.h1_c00457{height:1122.666667pt;}
.w0_c00457{width:793.701333pt;}
.w1_c00457{width:794.000000pt;}
.x0_c00457{left:0.000000pt;}
.x2_c00457{left:80.000000pt;}
.x3_c00457{left:94.666667pt;}
.x1_c00457{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69d21ca045ca03b3182acdf3.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.160000;font-style:normal;font-weight:normal;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_3b83f3db97b338ca82fd3367.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:1.161000;font-style: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);}
.m1_c00458{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls5_c00458{letter-spacing:-0.324000px;}
.ls4_c00458{letter-spacing:0.000000px;}
.ls0_c00458{letter-spacing:0.720000px;}
.ls1_c00458{letter-spacing:0.840000px;}
.ls3_c00458{letter-spacing:1.500000px;}
.ls2_c00458{letter-spacing:1.650000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00458{word-spacing:-21.276000px;}
.ws2_c00458{word-spacing:-14.850000px;}
.ws3_c00458{word-spacing:-11.700000px;}
.ws0_c00458{word-spacing:-10.200000px;}
.wsb_c00458{word-spacing:-3.024000px;}
.wsf_c00458{word-spacing:-1.500000px;}
.wsc_c00458{word-spacing:-1.152000px;}
.ws5_c00458{word-spacing:-0.840000px;}
.wsa_c00458{word-spacing:-0.288000px;}
.ws4_c00458{word-spacing:0.000000px;}
.wse_c00458{word-spacing:2.232000px;}
.ws6_c00458{word-spacing:4.968000px;}
.wsd_c00458{word-spacing:7.776000px;}
.ws8_c00458{word-spacing:8.064000px;}
.ws7_c00458{word-spacing:17.928000px;}
.ws9_c00458{word-spacing:20.592000px;}
._0_c00458{margin-left:-480.336000px;}
._1_c00458{margin-left:-4.200000px;}
._3_c00458{margin-left:-2.160000px;}
._2_c00458{margin-left:-1.134000px;}
.fc3_c00458{color:rgb(32,32,32);}
.fc2_c00458{color:rgb(233,83,14);}
.fc1_c00458{color:rgb(232,86,17);}
.fc4_c00458{color:rgb(157,157,156);}
.fc0_c00458{color:rgb(60,60,59);}
.fs1_c00458{font-size:42.000000px;}
.fs0_c00458{font-size:60.000000px;}
.fs5_c00458{font-size:66.000000px;}
.fs4_c00458{font-size:72.000000px;}
.fs3_c00458{font-size:84.000000px;}
.fs2_c00458{font-size:108.000000px;}
.y0_c00458{bottom:0.000000px;}
.y1_c00458{bottom:41.250000px;}
.yf_c00458{bottom:436.322700px;}
.ye_c00458{bottom:466.328700px;}
.yd_c00458{bottom:496.334700px;}
.yc_c00458{bottom:556.334700px;}
.yb_c00458{bottom:646.292700px;}
.ya_c00458{bottom:676.298700px;}
.y9_c00458{bottom:706.304700px;}
.y8_c00458{bottom:736.310700px;}
.y14_c00458{bottom:736.334700px;}
.y7_c00458{bottom:766.316700px;}
.y13_c00458{bottom:766.334700px;}
.y6_c00458{bottom:796.322700px;}
.y12_c00458{bottom:796.334700px;}
.y5_c00458{bottom:826.328700px;}
.y11_c00458{bottom:826.334700px;}
.y4_c00458{bottom:856.334700px;}
.y10_c00458{bottom:856.376100px;}
.y3_c00458{bottom:916.334700px;}
.y2_c00458{bottom:1006.334700px;}
.h6_c00458{height:50.292000px;}
.h2_c00458{height:54.000000px;}
.h5_c00458{height:64.800000px;}
.h4_c00458{height:78.540000px;}
.h3_c00458{height:100.980000px;}
.h0_c00458{height:1262.835000px;}
.h1_c00458{height:1263.000000px;}
.w0_c00458{width:892.914000px;}
.w1_c00458{width:893.250000px;}
.x0_c00458{left:0.000000px;}
.x2_c00458{left:82.500000px;}
.x3_c00458{left:90.000000px;}
.x4_c00458{left:106.500000px;}
.x5_c00458{left:675.611100px;}
.x1_c00458{left:785.738550px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls5_c00458{letter-spacing:-0.288000pt;}
.ls4_c00458{letter-spacing:0.000000pt;}
.ls0_c00458{letter-spacing:0.640000pt;}
.ls1_c00458{letter-spacing:0.746667pt;}
.ls3_c00458{letter-spacing:1.333333pt;}
.ls2_c00458{letter-spacing:1.466667pt;}
.ws1_c00458{word-spacing:-18.912000pt;}
.ws2_c00458{word-spacing:-13.200000pt;}
.ws3_c00458{word-spacing:-10.400000pt;}
.ws0_c00458{word-spacing:-9.066667pt;}
.wsb_c00458{word-spacing:-2.688000pt;}
.wsf_c00458{word-spacing:-1.333333pt;}
.wsc_c00458{word-spacing:-1.024000pt;}
.ws5_c00458{word-spacing:-0.746667pt;}
.wsa_c00458{word-spacing:-0.256000pt;}
.ws4_c00458{word-spacing:0.000000pt;}
.wse_c00458{word-spacing:1.984000pt;}
.ws6_c00458{word-spacing:4.416000pt;}
.wsd_c00458{word-spacing:6.912000pt;}
.ws8_c00458{word-spacing:7.168000pt;}
.ws7_c00458{word-spacing:15.936000pt;}
.ws9_c00458{word-spacing:18.304000pt;}
._0_c00458{margin-left:-426.965333pt;}
._1_c00458{margin-left:-3.733333pt;}
._3_c00458{margin-left:-1.920000pt;}
._2_c00458{margin-left:-1.008000pt;}
.fs1_c00458{font-size:37.333333pt;}
.fs0_c00458{font-size:53.333333pt;}
.fs5_c00458{font-size:58.666667pt;}
.fs4_c00458{font-size:64.000000pt;}
.fs3_c00458{font-size:74.666667pt;}
.fs2_c00458{font-size:96.000000pt;}
.y0_c00458{bottom:0.000000pt;}
.y1_c00458{bottom:36.666667pt;}
.yf_c00458{bottom:387.842400pt;}
.ye_c00458{bottom:414.514400pt;}
.yd_c00458{bottom:441.186400pt;}
.yc_c00458{bottom:494.519733pt;}
.yb_c00458{bottom:574.482400pt;}
.ya_c00458{bottom:601.154400pt;}
.y9_c00458{bottom:627.826400pt;}
.y8_c00458{bottom:654.498400pt;}
.y14_c00458{bottom:654.519733pt;}
.y7_c00458{bottom:681.170400pt;}
.y13_c00458{bottom:681.186400pt;}
.y6_c00458{bottom:707.842400pt;}
.y12_c00458{bottom:707.853067pt;}
.y5_c00458{bottom:734.514400pt;}
.y11_c00458{bottom:734.519733pt;}
.y4_c00458{bottom:761.186400pt;}
.y10_c00458{bottom:761.223200pt;}
.y3_c00458{bottom:814.519733pt;}
.y2_c00458{bottom:894.519733pt;}
.h6_c00458{height:44.704000pt;}
.h2_c00458{height:48.000000pt;}
.h5_c00458{height:57.600000pt;}
.h4_c00458{height:69.813333pt;}
.h3_c00458{height:89.760000pt;}
.h0_c00458{height:1122.520000pt;}
.h1_c00458{height:1122.666667pt;}
.w0_c00458{width:793.701333pt;}
.w1_c00458{width:794.000000pt;}
.x0_c00458{left:0.000000pt;}
.x2_c00458{left:73.333333pt;}
.x3_c00458{left:80.000000pt;}
.x4_c00458{left:94.666667pt;}
.x5_c00458{left:600.543200pt;}
.x1_c00458{left:698.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2581d2ed290f9903b36e797.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.199000;font-style: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);}
.m1_c00459{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls1_c00459{letter-spacing:0.000000px;}
.ls0_c00459{letter-spacing:0.720000px;}
.ls2_c00459{letter-spacing:0.840000px;}
.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:-10.200000px;}
.wsb_c00459{word-spacing:-1.008000px;}
.ws2_c00459{word-spacing:-0.840000px;}
.wsf_c00459{word-spacing:-0.720000px;}
.ws1_c00459{word-spacing:0.000000px;}
.wse_c00459{word-spacing:1.152000px;}
.ws4_c00459{word-spacing:1.872000px;}
.wsa_c00459{word-spacing:2.520000px;}
.ws11_c00459{word-spacing:2.808000px;}
.wsd_c00459{word-spacing:4.032000px;}
.ws3_c00459{word-spacing:4.320000px;}
.ws9_c00459{word-spacing:5.040000px;}
.ws10_c00459{word-spacing:5.184000px;}
.ws7_c00459{word-spacing:5.904000px;}
.ws5_c00459{word-spacing:6.192000px;}
.ws8_c00459{word-spacing:6.408000px;}
.ws12_c00459{word-spacing:10.080000px;}
.wsc_c00459{word-spacing:10.584000px;}
.ws6_c00459{word-spacing:15.840000px;}
._0_c00459{margin-left:-480.336600px;}
._3_c00459{margin-left:-5.760000px;}
._1_c00459{margin-left:-4.200000px;}
._2_c00459{margin-left:-1.440000px;}
.fc2_c00459{color:rgb(32,32,32);}
.fc1_c00459{color:rgb(232,86,17);}
.fc0_c00459{color:rgb(60,60,59);}
.fs1_c00459{font-size:42.000000px;}
.fs0_c00459{font-size:60.000000px;}
.fs3_c00459{font-size:72.000000px;}
.fs2_c00459{font-size:84.000000px;}
.y0_c00459{bottom:0.000000px;}
.y1_c00459{bottom:41.250000px;}
.y16_c00459{bottom:196.316700px;}
.y15_c00459{bottom:226.322700px;}
.y14_c00459{bottom:256.328700px;}
.y13_c00459{bottom:286.334700px;}
.y12_c00459{bottom:346.334700px;}
.y11_c00459{bottom:436.304700px;}
.y10_c00459{bottom:466.310700px;}
.yf_c00459{bottom:496.316700px;}
.ye_c00459{bottom:526.322700px;}
.yd_c00459{bottom:556.328700px;}
.yc_c00459{bottom:586.334700px;}
.yb_c00459{bottom:646.334700px;}
.ya_c00459{bottom:736.292700px;}
.y9_c00459{bottom:766.298700px;}
.y8_c00459{bottom:796.304700px;}
.y7_c00459{bottom:826.310700px;}
.y6_c00459{bottom:856.316700px;}
.y5_c00459{bottom:886.322700px;}
.y4_c00459{bottom:916.328700px;}
.y3_c00459{bottom:946.334700px;}
.y2_c00459{bottom:1006.334700px;}
.h2_c00459{height:54.000000px;}
.h4_c00459{height:64.800000px;}
.h3_c00459{height:78.540000px;}
.h0_c00459{height:1262.835000px;}
.h1_c00459{height:1263.000000px;}
.w0_c00459{width:892.914000px;}
.w1_c00459{width:893.250000px;}
.x0_c00459{left:0.000000px;}
.x2_c00459{left:90.000000px;}
.x3_c00459{left:106.500000px;}
.x1_c00459{left:784.628700px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls1_c00459{letter-spacing:0.000000pt;}
.ls0_c00459{letter-spacing:0.640000pt;}
.ls2_c00459{letter-spacing:0.746667pt;}
.ws0_c00459{word-spacing:-9.066667pt;}
.wsb_c00459{word-spacing:-0.896000pt;}
.ws2_c00459{word-spacing:-0.746667pt;}
.wsf_c00459{word-spacing:-0.640000pt;}
.ws1_c00459{word-spacing:0.000000pt;}
.wse_c00459{word-spacing:1.024000pt;}
.ws4_c00459{word-spacing:1.664000pt;}
.wsa_c00459{word-spacing:2.240000pt;}
.ws11_c00459{word-spacing:2.496000pt;}
.wsd_c00459{word-spacing:3.584000pt;}
.ws3_c00459{word-spacing:3.840000pt;}
.ws9_c00459{word-spacing:4.480000pt;}
.ws10_c00459{word-spacing:4.608000pt;}
.ws7_c00459{word-spacing:5.248000pt;}
.ws5_c00459{word-spacing:5.504000pt;}
.ws8_c00459{word-spacing:5.696000pt;}
.ws12_c00459{word-spacing:8.960000pt;}
.wsc_c00459{word-spacing:9.408000pt;}
.ws6_c00459{word-spacing:14.080000pt;}
._0_c00459{margin-left:-426.965867pt;}
._3_c00459{margin-left:-5.120000pt;}
._1_c00459{margin-left:-3.733333pt;}
._2_c00459{margin-left:-1.280000pt;}
.fs1_c00459{font-size:37.333333pt;}
.fs0_c00459{font-size:53.333333pt;}
.fs3_c00459{font-size:64.000000pt;}
.fs2_c00459{font-size:74.666667pt;}
.y0_c00459{bottom:0.000000pt;}
.y1_c00459{bottom:36.666667pt;}
.y16_c00459{bottom:174.503733pt;}
.y15_c00459{bottom:201.175733pt;}
.y14_c00459{bottom:227.847733pt;}
.y13_c00459{bottom:254.519733pt;}
.y12_c00459{bottom:307.853067pt;}
.y11_c00459{bottom:387.826400pt;}
.y10_c00459{bottom:414.498400pt;}
.yf_c00459{bottom:441.170400pt;}
.ye_c00459{bottom:467.842400pt;}
.yd_c00459{bottom:494.514400pt;}
.yc_c00459{bottom:521.186400pt;}
.yb_c00459{bottom:574.519733pt;}
.ya_c00459{bottom:654.482400pt;}
.y9_c00459{bottom:681.154400pt;}
.y8_c00459{bottom:707.826400pt;}
.y7_c00459{bottom:734.498400pt;}
.y6_c00459{bottom:761.170400pt;}
.y5_c00459{bottom:787.842400pt;}
.y4_c00459{bottom:814.514400pt;}
.y3_c00459{bottom:841.186400pt;}
.y2_c00459{bottom:894.519733pt;}
.h2_c00459{height:48.000000pt;}
.h4_c00459{height:57.600000pt;}
.h3_c00459{height:69.813333pt;}
.h0_c00459{height:1122.520000pt;}
.h1_c00459{height:1122.666667pt;}
.w0_c00459{width:793.701333pt;}
.w1_c00459{width:794.000000pt;}
.x0_c00459{left:0.000000pt;}
.x2_c00459{left:80.000000pt;}
.x3_c00459{left:94.666667pt;}
.x1_c00459{left:697.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.160000;font-style:normal;font-weight:normal;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_d071661ec5c75d861a68aa6b.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00460;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;line-height:1.155000;font-style: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);}
.m1_c00460{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls2_c00460{letter-spacing:0.000000px;}
.ls0_c00460{letter-spacing:0.864000px;}
.ls1_c00460{letter-spacing:1.200000px;}
.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;}
}
.ws4_c00460{word-spacing:-13.200000px;}
.ws1_c00460{word-spacing:-13.104000px;}
.ws0_c00460{word-spacing:-10.200000px;}
.ws3_c00460{word-spacing:-1.728000px;}
.ws2_c00460{word-spacing:0.000000px;}
._0_c00460{margin-left:-480.337200px;}
._7_c00460{margin-left:-10.800000px;}
._6_c00460{margin-left:-9.600000px;}
._4_c00460{margin-left:-7.200000px;}
._1_c00460{margin-left:-4.200000px;}
._2_c00460{margin-left:-1.440000px;}
._3_c00460{width:1.728000px;}
._5_c00460{width:10.200000px;}
._8_c00460{width:13.200000px;}
.fc3_c00460{color:rgb(255,255,255);}
.fc2_c00460{color:rgb(233,83,14);}
.fc1_c00460{color:rgb(232,86,17);}
.fc0_c00460{color:rgb(60,60,59);}
.fs1_c00460{font-size:42.000000px;}
.fs0_c00460{font-size:60.000000px;}
.fs3_c00460{font-size:72.000000px;}
.fs4_c00460{font-size:120.000000px;}
.fs2_c00460{font-size:360.000000px;}
.y0_c00460{bottom:0.000000px;}
.y1_c00460{bottom:41.250000px;}
.y6_c00460{bottom:664.328700px;}
.y5_c00460{bottom:685.334700px;}
.y4_c00460{bottom:706.340700px;}
.y3_c00460{bottom:752.834700px;}
.y9_c00460{bottom:946.334700px;}
.y8_c00460{bottom:976.334700px;}
.y7_c00460{bottom:1006.334700px;}
.y2_c00460{bottom:1093.526700px;}
.h2_c00460{height:54.000000px;}
.h5_c00460{height:64.800000px;}
.h4_c00460{height:66.456000px;}
.h6_c00460{height:112.200000px;}
.h3_c00460{height:324.000000px;}
.h0_c00460{height:1262.835000px;}
.h1_c00460{height:1263.000000px;}
.w0_c00460{width:892.914000px;}
.w1_c00460{width:893.250000px;}
.x0_c00460{left:0.000000px;}
.x2_c00460{left:81.290250px;}
.x3_c00460{left:82.393650px;}
.x5_c00460{left:112.287450px;}
.x4_c00460{left:127.393650px;}
.x1_c00460{left:788.288850px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls2_c00460{letter-spacing:0.000000pt;}
.ls0_c00460{letter-spacing:0.768000pt;}
.ls1_c00460{letter-spacing:1.066667pt;}
.ws4_c00460{word-spacing:-11.733333pt;}
.ws1_c00460{word-spacing:-11.648000pt;}
.ws0_c00460{word-spacing:-9.066667pt;}
.ws3_c00460{word-spacing:-1.536000pt;}
.ws2_c00460{word-spacing:0.000000pt;}
._0_c00460{margin-left:-426.966400pt;}
._7_c00460{margin-left:-9.600000pt;}
._6_c00460{margin-left:-8.533333pt;}
._4_c00460{margin-left:-6.400000pt;}
._1_c00460{margin-left:-3.733333pt;}
._2_c00460{margin-left:-1.280000pt;}
._3_c00460{width:1.536000pt;}
._5_c00460{width:9.066667pt;}
._8_c00460{width:11.733333pt;}
.fs1_c00460{font-size:37.333333pt;}
.fs0_c00460{font-size:53.333333pt;}
.fs3_c00460{font-size:64.000000pt;}
.fs4_c00460{font-size:106.666667pt;}
.fs2_c00460{font-size:320.000000pt;}
.y0_c00460{bottom:0.000000pt;}
.y1_c00460{bottom:36.666667pt;}
.y6_c00460{bottom:590.514400pt;}
.y5_c00460{bottom:609.186400pt;}
.y4_c00460{bottom:627.858400pt;}
.y3_c00460{bottom:669.186400pt;}
.y9_c00460{bottom:841.186400pt;}
.y8_c00460{bottom:867.853067pt;}
.y7_c00460{bottom:894.519733pt;}
.y2_c00460{bottom:972.023733pt;}
.h2_c00460{height:48.000000pt;}
.h5_c00460{height:57.600000pt;}
.h4_c00460{height:59.072000pt;}
.h6_c00460{height:99.733333pt;}
.h3_c00460{height:288.000000pt;}
.h0_c00460{height:1122.520000pt;}
.h1_c00460{height:1122.666667pt;}
.w0_c00460{width:793.701333pt;}
.w1_c00460{width:794.000000pt;}
.x0_c00460{left:0.000000pt;}
.x2_c00460{left:72.258000pt;}
.x3_c00460{left:73.238800pt;}
.x5_c00460{left:99.811067pt;}
.x4_c00460{left:113.238800pt;}
.x1_c00460{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00461;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;line-height:1.161000;font-style: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);}
.m1_c00461{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls4_c00461{letter-spacing:-0.540000px;}
.ls3_c00461{letter-spacing:0.000000px;}
.ls0_c00461{letter-spacing:0.720000px;}
.ls2_c00461{letter-spacing:1.500000px;}
.ls1_c00461{letter-spacing:1.650000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00461{word-spacing:-21.060000px;}
.ws0_c00461{word-spacing:-10.200000px;}
.ws11_c00461{word-spacing:-1.080000px;}
.wsb_c00461{word-spacing:-0.792000px;}
.ws16_c00461{word-spacing:-0.216000px;}
.ws2_c00461{word-spacing:0.000000px;}
.wsa_c00461{word-spacing:0.432000px;}
.ws15_c00461{word-spacing:0.648000px;}
.ws9_c00461{word-spacing:0.720000px;}
.ws19_c00461{word-spacing:1.728000px;}
.ws3_c00461{word-spacing:1.872000px;}
.ws7_c00461{word-spacing:2.520000px;}
.ws14_c00461{word-spacing:3.600000px;}
.ws6_c00461{word-spacing:3.744000px;}
.wsf_c00461{word-spacing:4.896000px;}
.ws4_c00461{word-spacing:5.832000px;}
.ws8_c00461{word-spacing:6.192000px;}
.ws1a_c00461{word-spacing:6.840000px;}
.ws10_c00461{word-spacing:6.912000px;}
.wse_c00461{word-spacing:7.632000px;}
.ws13_c00461{word-spacing:9.144000px;}
.ws5_c00461{word-spacing:10.224000px;}
.ws17_c00461{word-spacing:13.680000px;}
.wsc_c00461{word-spacing:15.984000px;}
.ws12_c00461{word-spacing:18.720000px;}
.ws18_c00461{word-spacing:19.584000px;}
.wsd_c00461{word-spacing:29.736000px;}
._0_c00461{margin-left:-480.336600px;}
._4_c00461{margin-left:-12.168000px;}
._3_c00461{margin-left:-7.214400px;}
._1_c00461{margin-left:-4.200000px;}
._2_c00461{margin-left:-1.440000px;}
.fc3_c00461{color:rgb(32,32,32);}
.fc2_c00461{color:rgb(233,83,14);}
.fc1_c00461{color:rgb(232,86,17);}
.fc4_c00461{color:rgb(157,157,156);}
.fc0_c00461{color:rgb(60,60,59);}
.fs1_c00461{font-size:42.000000px;}
.fs0_c00461{font-size:60.000000px;}
.fs4_c00461{font-size:66.000000px;}
.fs3_c00461{font-size:72.000000px;}
.fs2_c00461{font-size:108.000000px;}
.y0_c00461{bottom:0.000000px;}
.y1_c00461{bottom:41.250000px;}
.y1d_c00461{bottom:106.202700px;}
.y1c_c00461{bottom:136.208700px;}
.y1b_c00461{bottom:166.214700px;}
.y1a_c00461{bottom:196.220700px;}
.y19_c00461{bottom:226.226700px;}
.y18_c00461{bottom:256.232700px;}
.y17_c00461{bottom:316.226700px;}
.y16_c00461{bottom:346.232700px;}
.y15_c00461{bottom:376.238700px;}
.y14_c00461{bottom:406.244700px;}
.y13_c00461{bottom:436.250700px;}
.y12_c00461{bottom:466.256700px;}
.y11_c00461{bottom:496.262700px;}
.y10_c00461{bottom:526.268700px;}
.yf_c00461{bottom:556.274700px;}
.ye_c00461{bottom:586.280700px;}
.yd_c00461{bottom:616.286700px;}
.yc_c00461{bottom:646.292700px;}
.yb_c00461{bottom:706.286700px;}
.ya_c00461{bottom:736.292700px;}
.y9_c00461{bottom:766.298700px;}
.y8_c00461{bottom:796.304700px;}
.y7_c00461{bottom:826.310700px;}
.y6_c00461{bottom:856.316700px;}
.y5_c00461{bottom:886.322700px;}
.y20_c00461{bottom:886.334700px;}
.y4_c00461{bottom:916.328700px;}
.y1f_c00461{bottom:916.334700px;}
.y3_c00461{bottom:946.334700px;}
.y1e_c00461{bottom:946.376100px;}
.y2_c00461{bottom:1006.334700px;}
.h5_c00461{height:50.292000px;}
.h2_c00461{height:54.000000px;}
.h4_c00461{height:64.800000px;}
.h3_c00461{height:100.980000px;}
.h0_c00461{height:1262.835000px;}
.h1_c00461{height:1263.000000px;}
.w0_c00461{width:892.914000px;}
.w1_c00461{width:893.250000px;}
.x0_c00461{left:0.000000px;}
.x2_c00461{left:82.500000px;}
.x3_c00461{left:106.500000px;}
.x4_c00461{left:675.611100px;}
.x1_c00461{left:785.813700px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls4_c00461{letter-spacing:-0.480000pt;}
.ls3_c00461{letter-spacing:0.000000pt;}
.ls0_c00461{letter-spacing:0.640000pt;}
.ls2_c00461{letter-spacing:1.333333pt;}
.ls1_c00461{letter-spacing:1.466667pt;}
.ws1_c00461{word-spacing:-18.720000pt;}
.ws0_c00461{word-spacing:-9.066667pt;}
.ws11_c00461{word-spacing:-0.960000pt;}
.wsb_c00461{word-spacing:-0.704000pt;}
.ws16_c00461{word-spacing:-0.192000pt;}
.ws2_c00461{word-spacing:0.000000pt;}
.wsa_c00461{word-spacing:0.384000pt;}
.ws15_c00461{word-spacing:0.576000pt;}
.ws9_c00461{word-spacing:0.640000pt;}
.ws19_c00461{word-spacing:1.536000pt;}
.ws3_c00461{word-spacing:1.664000pt;}
.ws7_c00461{word-spacing:2.240000pt;}
.ws14_c00461{word-spacing:3.200000pt;}
.ws6_c00461{word-spacing:3.328000pt;}
.wsf_c00461{word-spacing:4.352000pt;}
.ws4_c00461{word-spacing:5.184000pt;}
.ws8_c00461{word-spacing:5.504000pt;}
.ws1a_c00461{word-spacing:6.080000pt;}
.ws10_c00461{word-spacing:6.144000pt;}
.wse_c00461{word-spacing:6.784000pt;}
.ws13_c00461{word-spacing:8.128000pt;}
.ws5_c00461{word-spacing:9.088000pt;}
.ws17_c00461{word-spacing:12.160000pt;}
.wsc_c00461{word-spacing:14.208000pt;}
.ws12_c00461{word-spacing:16.640000pt;}
.ws18_c00461{word-spacing:17.408000pt;}
.wsd_c00461{word-spacing:26.432000pt;}
._0_c00461{margin-left:-426.965867pt;}
._4_c00461{margin-left:-10.816000pt;}
._3_c00461{margin-left:-6.412800pt;}
._1_c00461{margin-left:-3.733333pt;}
._2_c00461{margin-left:-1.280000pt;}
.fs1_c00461{font-size:37.333333pt;}
.fs0_c00461{font-size:53.333333pt;}
.fs4_c00461{font-size:58.666667pt;}
.fs3_c00461{font-size:64.000000pt;}
.fs2_c00461{font-size:96.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y1_c00461{bottom:36.666667pt;}
.y1d_c00461{bottom:94.402400pt;}
.y1c_c00461{bottom:121.074400pt;}
.y1b_c00461{bottom:147.746400pt;}
.y1a_c00461{bottom:174.418400pt;}
.y19_c00461{bottom:201.090400pt;}
.y18_c00461{bottom:227.762400pt;}
.y17_c00461{bottom:281.090400pt;}
.y16_c00461{bottom:307.762400pt;}
.y15_c00461{bottom:334.434400pt;}
.y14_c00461{bottom:361.106400pt;}
.y13_c00461{bottom:387.778400pt;}
.y12_c00461{bottom:414.450400pt;}
.y11_c00461{bottom:441.122400pt;}
.y10_c00461{bottom:467.794400pt;}
.yf_c00461{bottom:494.466400pt;}
.ye_c00461{bottom:521.138400pt;}
.yd_c00461{bottom:547.810400pt;}
.yc_c00461{bottom:574.482400pt;}
.yb_c00461{bottom:627.810400pt;}
.ya_c00461{bottom:654.482400pt;}
.y9_c00461{bottom:681.154400pt;}
.y8_c00461{bottom:707.826400pt;}
.y7_c00461{bottom:734.498400pt;}
.y6_c00461{bottom:761.170400pt;}
.y5_c00461{bottom:787.842400pt;}
.y20_c00461{bottom:787.853067pt;}
.y4_c00461{bottom:814.514400pt;}
.y1f_c00461{bottom:814.519733pt;}
.y3_c00461{bottom:841.186400pt;}
.y1e_c00461{bottom:841.223200pt;}
.y2_c00461{bottom:894.519733pt;}
.h5_c00461{height:44.704000pt;}
.h2_c00461{height:48.000000pt;}
.h4_c00461{height:57.600000pt;}
.h3_c00461{height:89.760000pt;}
.h0_c00461{height:1122.520000pt;}
.h1_c00461{height:1122.666667pt;}
.w0_c00461{width:793.701333pt;}
.w1_c00461{width:794.000000pt;}
.x0_c00461{left:0.000000pt;}
.x2_c00461{left:73.333333pt;}
.x3_c00461{left:94.666667pt;}
.x4_c00461{left:600.543200pt;}
.x1_c00461{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4137d757663df4958e67a2.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.161000;font-style: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);}
.m1_c00462{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls4_c00462{letter-spacing:-0.324000px;}
.ls3_c00462{letter-spacing:0.000000px;}
.ls0_c00462{letter-spacing:0.720000px;}
.ls2_c00462{letter-spacing:1.500000px;}
.ls1_c00462{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00462{word-spacing:-21.276000px;}
.ws3_c00462{word-spacing:-14.850000px;}
.ws2_c00462{word-spacing:-12.960000px;}
.ws0_c00462{word-spacing:-10.200000px;}
.ws16_c00462{word-spacing:-2.880000px;}
.ws6_c00462{word-spacing:-2.376000px;}
.ws9_c00462{word-spacing:-1.872000px;}
.wsa_c00462{word-spacing:-0.936000px;}
.ws19_c00462{word-spacing:-0.864000px;}
.ws12_c00462{word-spacing:-0.504000px;}
.ws4_c00462{word-spacing:0.000000px;}
.ws1a_c00462{word-spacing:0.216000px;}
.ws14_c00462{word-spacing:0.432000px;}
.wsb_c00462{word-spacing:1.368000px;}
.ws7_c00462{word-spacing:1.656000px;}
.wsf_c00462{word-spacing:2.520000px;}
.ws10_c00462{word-spacing:2.880000px;}
.ws15_c00462{word-spacing:3.600000px;}
.wsc_c00462{word-spacing:6.264000px;}
.ws17_c00462{word-spacing:7.056000px;}
.ws5_c00462{word-spacing:10.224000px;}
.ws8_c00462{word-spacing:11.520000px;}
.ws11_c00462{word-spacing:12.816000px;}
.wse_c00462{word-spacing:13.104000px;}
.ws18_c00462{word-spacing:14.112000px;}
.wsd_c00462{word-spacing:15.624000px;}
.ws13_c00462{word-spacing:19.152000px;}
._0_c00462{margin-left:-480.337200px;}
._4_c00462{margin-left:-6.480000px;}
._1_c00462{margin-left:-4.200000px;}
._3_c00462{margin-left:-2.793600px;}
._2_c00462{margin-left:-1.134000px;}
.fc3_c00462{color:rgb(32,32,32);}
.fc2_c00462{color:rgb(233,83,14);}
.fc1_c00462{color:rgb(232,86,17);}
.fc4_c00462{color:rgb(157,157,156);}
.fc0_c00462{color:rgb(60,60,59);}
.fs1_c00462{font-size:42.000000px;}
.fs0_c00462{font-size:60.000000px;}
.fs4_c00462{font-size:66.000000px;}
.fs3_c00462{font-size:72.000000px;}
.fs2_c00462{font-size:108.000000px;}
.y0_c00462{bottom:0.000000px;}
.y1_c00462{bottom:41.250000px;}
.y1d_c00462{bottom:106.202700px;}
.y1c_c00462{bottom:136.208700px;}
.y1b_c00462{bottom:166.214700px;}
.y1a_c00462{bottom:196.220700px;}
.y19_c00462{bottom:226.226700px;}
.y18_c00462{bottom:256.232700px;}
.y17_c00462{bottom:316.226700px;}
.y16_c00462{bottom:346.232700px;}
.y15_c00462{bottom:376.238700px;}
.y14_c00462{bottom:406.244700px;}
.y13_c00462{bottom:436.250700px;}
.y12_c00462{bottom:466.256700px;}
.y11_c00462{bottom:496.262700px;}
.y10_c00462{bottom:526.268700px;}
.yf_c00462{bottom:556.274700px;}
.ye_c00462{bottom:586.280700px;}
.yd_c00462{bottom:616.286700px;}
.yc_c00462{bottom:646.292700px;}
.yb_c00462{bottom:706.286700px;}
.ya_c00462{bottom:736.292700px;}
.y9_c00462{bottom:766.298700px;}
.y8_c00462{bottom:796.304700px;}
.y7_c00462{bottom:826.310700px;}
.y6_c00462{bottom:856.316700px;}
.y5_c00462{bottom:886.322700px;}
.y20_c00462{bottom:886.334700px;}
.y4_c00462{bottom:916.328700px;}
.y1f_c00462{bottom:916.334700px;}
.y3_c00462{bottom:946.334700px;}
.y1e_c00462{bottom:946.376100px;}
.y2_c00462{bottom:1006.334700px;}
.h5_c00462{height:50.292000px;}
.h2_c00462{height:54.000000px;}
.h4_c00462{height:64.800000px;}
.h3_c00462{height:100.980000px;}
.h0_c00462{height:1262.835000px;}
.h1_c00462{height:1263.000000px;}
.w0_c00462{width:892.914000px;}
.w1_c00462{width:893.250000px;}
.x0_c00462{left:0.000000px;}
.x2_c00462{left:82.500000px;}
.x3_c00462{left:106.500000px;}
.x4_c00462{left:675.611100px;}
.x1_c00462{left:785.663850px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls4_c00462{letter-spacing:-0.288000pt;}
.ls3_c00462{letter-spacing:0.000000pt;}
.ls0_c00462{letter-spacing:0.640000pt;}
.ls2_c00462{letter-spacing:1.333333pt;}
.ls1_c00462{letter-spacing:1.466667pt;}
.ws1_c00462{word-spacing:-18.912000pt;}
.ws3_c00462{word-spacing:-13.200000pt;}
.ws2_c00462{word-spacing:-11.520000pt;}
.ws0_c00462{word-spacing:-9.066667pt;}
.ws16_c00462{word-spacing:-2.560000pt;}
.ws6_c00462{word-spacing:-2.112000pt;}
.ws9_c00462{word-spacing:-1.664000pt;}
.wsa_c00462{word-spacing:-0.832000pt;}
.ws19_c00462{word-spacing:-0.768000pt;}
.ws12_c00462{word-spacing:-0.448000pt;}
.ws4_c00462{word-spacing:0.000000pt;}
.ws1a_c00462{word-spacing:0.192000pt;}
.ws14_c00462{word-spacing:0.384000pt;}
.wsb_c00462{word-spacing:1.216000pt;}
.ws7_c00462{word-spacing:1.472000pt;}
.wsf_c00462{word-spacing:2.240000pt;}
.ws10_c00462{word-spacing:2.560000pt;}
.ws15_c00462{word-spacing:3.200000pt;}
.wsc_c00462{word-spacing:5.568000pt;}
.ws17_c00462{word-spacing:6.272000pt;}
.ws5_c00462{word-spacing:9.088000pt;}
.ws8_c00462{word-spacing:10.240000pt;}
.ws11_c00462{word-spacing:11.392000pt;}
.wse_c00462{word-spacing:11.648000pt;}
.ws18_c00462{word-spacing:12.544000pt;}
.wsd_c00462{word-spacing:13.888000pt;}
.ws13_c00462{word-spacing:17.024000pt;}
._0_c00462{margin-left:-426.966400pt;}
._4_c00462{margin-left:-5.760000pt;}
._1_c00462{margin-left:-3.733333pt;}
._3_c00462{margin-left:-2.483200pt;}
._2_c00462{margin-left:-1.008000pt;}
.fs1_c00462{font-size:37.333333pt;}
.fs0_c00462{font-size:53.333333pt;}
.fs4_c00462{font-size:58.666667pt;}
.fs3_c00462{font-size:64.000000pt;}
.fs2_c00462{font-size:96.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y1_c00462{bottom:36.666667pt;}
.y1d_c00462{bottom:94.402400pt;}
.y1c_c00462{bottom:121.074400pt;}
.y1b_c00462{bottom:147.746400pt;}
.y1a_c00462{bottom:174.418400pt;}
.y19_c00462{bottom:201.090400pt;}
.y18_c00462{bottom:227.762400pt;}
.y17_c00462{bottom:281.090400pt;}
.y16_c00462{bottom:307.762400pt;}
.y15_c00462{bottom:334.434400pt;}
.y14_c00462{bottom:361.106400pt;}
.y13_c00462{bottom:387.778400pt;}
.y12_c00462{bottom:414.450400pt;}
.y11_c00462{bottom:441.122400pt;}
.y10_c00462{bottom:467.794400pt;}
.yf_c00462{bottom:494.466400pt;}
.ye_c00462{bottom:521.138400pt;}
.yd_c00462{bottom:547.810400pt;}
.yc_c00462{bottom:574.482400pt;}
.yb_c00462{bottom:627.810400pt;}
.ya_c00462{bottom:654.482400pt;}
.y9_c00462{bottom:681.154400pt;}
.y8_c00462{bottom:707.826400pt;}
.y7_c00462{bottom:734.498400pt;}
.y6_c00462{bottom:761.170400pt;}
.y5_c00462{bottom:787.842400pt;}
.y20_c00462{bottom:787.853067pt;}
.y4_c00462{bottom:814.514400pt;}
.y1f_c00462{bottom:814.519733pt;}
.y3_c00462{bottom:841.186400pt;}
.y1e_c00462{bottom:841.223200pt;}
.y2_c00462{bottom:894.519733pt;}
.h5_c00462{height:44.704000pt;}
.h2_c00462{height:48.000000pt;}
.h4_c00462{height:57.600000pt;}
.h3_c00462{height:89.760000pt;}
.h0_c00462{height:1122.520000pt;}
.h1_c00462{height:1122.666667pt;}
.w0_c00462{width:793.701333pt;}
.w1_c00462{width:794.000000pt;}
.x0_c00462{left:0.000000pt;}
.x2_c00462{left:73.333333pt;}
.x3_c00462{left:94.666667pt;}
.x4_c00462{left:600.543200pt;}
.x1_c00462{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.199000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00463;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00463{font-family:ff5_c00463;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls5_c00463{letter-spacing:-0.840000px;}
.ls4_c00463{letter-spacing:-0.648000px;}
.ls3_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:0.864000px;}
.ls2_c00463{letter-spacing:1.200000px;}
.ls1_c00463{letter-spacing:1.500000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00463{word-spacing:-13.104000px;}
.ws0_c00463{word-spacing:-10.200000px;}
.ws9_c00463{word-spacing:-8.280000px;}
.ws8_c00463{word-spacing:-7.128000px;}
.wsb_c00463{word-spacing:-6.720000px;}
.ws4_c00463{word-spacing:-5.040000px;}
.wsa_c00463{word-spacing:-2.820000px;}
.ws6_c00463{word-spacing:-2.664000px;}
.ws5_c00463{word-spacing:-0.864000px;}
.ws3_c00463{word-spacing:-0.288000px;}
.ws2_c00463{word-spacing:0.000000px;}
.ws7_c00463{word-spacing:1.512000px;}
.wsc_c00463{word-spacing:2.040000px;}
._0_c00463{margin-left:-480.337200px;}
._c_c00463{margin-left:-10.800000px;}
._7_c00463{margin-left:-7.704000px;}
._4_c00463{margin-left:-6.480000px;}
._b_c00463{margin-left:-5.424000px;}
._1_c00463{margin-left:-4.200000px;}
._9_c00463{margin-left:-2.448000px;}
._2_c00463{margin-left:-1.440000px;}
._a_c00463{width:1.188000px;}
._5_c00463{width:2.664000px;}
._3_c00463{width:5.040000px;}
._6_c00463{width:7.128000px;}
._8_c00463{width:8.280000px;}
.fc3_c00463{color:rgb(255,255,255);}
.fc2_c00463{color:rgb(233,83,14);}
.fc1_c00463{color:rgb(232,86,17);}
.fc0_c00463{color:rgb(60,60,59);}
.fs1_c00463{font-size:42.000000px;}
.fs0_c00463{font-size:60.000000px;}
.fs3_c00463{font-size:72.000000px;}
.fs4_c00463{font-size:120.000000px;}
.fs2_c00463{font-size:360.000000px;}
.y0_c00463{bottom:0.000000px;}
.y1_c00463{bottom:41.250000px;}
.y13_c00463{bottom:214.334700px;}
.y12_c00463{bottom:244.334700px;}
.y11_c00463{bottom:334.262700px;}
.y10_c00463{bottom:355.268700px;}
.yf_c00463{bottom:376.274700px;}
.ye_c00463{bottom:424.280700px;}
.yd_c00463{bottom:445.286700px;}
.yc_c00463{bottom:466.292700px;}
.yb_c00463{bottom:514.298700px;}
.ya_c00463{bottom:535.304700px;}
.y9_c00463{bottom:556.310700px;}
.y8_c00463{bottom:604.316700px;}
.y7_c00463{bottom:625.322700px;}
.y6_c00463{bottom:646.328700px;}
.y5_c00463{bottom:685.334700px;}
.y4_c00463{bottom:706.340700px;}
.y3_c00463{bottom:752.834700px;}
.y17_c00463{bottom:916.334700px;}
.y16_c00463{bottom:946.334700px;}
.y15_c00463{bottom:976.334700px;}
.y14_c00463{bottom:1006.334700px;}
.y2_c00463{bottom:1093.526700px;}
.h2_c00463{height:54.000000px;}
.h5_c00463{height:64.800000px;}
.h4_c00463{height:66.456000px;}
.h6_c00463{height:112.200000px;}
.h3_c00463{height:324.000000px;}
.h0_c00463{height:1262.835000px;}
.h1_c00463{height:1263.000000px;}
.w0_c00463{width:892.914000px;}
.w1_c00463{width:893.250000px;}
.x0_c00463{left:0.000000px;}
.x2_c00463{left:81.290250px;}
.x3_c00463{left:82.393650px;}
.x5_c00463{left:112.287450px;}
.x4_c00463{left:127.393650px;}
.x1_c00463{left:784.688850px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls5_c00463{letter-spacing:-0.746667pt;}
.ls4_c00463{letter-spacing:-0.576000pt;}
.ls3_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:0.768000pt;}
.ls2_c00463{letter-spacing:1.066667pt;}
.ls1_c00463{letter-spacing:1.333333pt;}
.ws1_c00463{word-spacing:-11.648000pt;}
.ws0_c00463{word-spacing:-9.066667pt;}
.ws9_c00463{word-spacing:-7.360000pt;}
.ws8_c00463{word-spacing:-6.336000pt;}
.wsb_c00463{word-spacing:-5.973333pt;}
.ws4_c00463{word-spacing:-4.480000pt;}
.wsa_c00463{word-spacing:-2.506667pt;}
.ws6_c00463{word-spacing:-2.368000pt;}
.ws5_c00463{word-spacing:-0.768000pt;}
.ws3_c00463{word-spacing:-0.256000pt;}
.ws2_c00463{word-spacing:0.000000pt;}
.ws7_c00463{word-spacing:1.344000pt;}
.wsc_c00463{word-spacing:1.813333pt;}
._0_c00463{margin-left:-426.966400pt;}
._c_c00463{margin-left:-9.600000pt;}
._7_c00463{margin-left:-6.848000pt;}
._4_c00463{margin-left:-5.760000pt;}
._b_c00463{margin-left:-4.821333pt;}
._1_c00463{margin-left:-3.733333pt;}
._9_c00463{margin-left:-2.176000pt;}
._2_c00463{margin-left:-1.280000pt;}
._a_c00463{width:1.056000pt;}
._5_c00463{width:2.368000pt;}
._3_c00463{width:4.480000pt;}
._6_c00463{width:6.336000pt;}
._8_c00463{width:7.360000pt;}
.fs1_c00463{font-size:37.333333pt;}
.fs0_c00463{font-size:53.333333pt;}
.fs3_c00463{font-size:64.000000pt;}
.fs4_c00463{font-size:106.666667pt;}
.fs2_c00463{font-size:320.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y1_c00463{bottom:36.666667pt;}
.y13_c00463{bottom:190.519733pt;}
.y12_c00463{bottom:217.186400pt;}
.y11_c00463{bottom:297.122400pt;}
.y10_c00463{bottom:315.794400pt;}
.yf_c00463{bottom:334.466400pt;}
.ye_c00463{bottom:377.138400pt;}
.yd_c00463{bottom:395.810400pt;}
.yc_c00463{bottom:414.482400pt;}
.yb_c00463{bottom:457.154400pt;}
.ya_c00463{bottom:475.826400pt;}
.y9_c00463{bottom:494.498400pt;}
.y8_c00463{bottom:537.170400pt;}
.y7_c00463{bottom:555.842400pt;}
.y6_c00463{bottom:574.514400pt;}
.y5_c00463{bottom:609.186400pt;}
.y4_c00463{bottom:627.858400pt;}
.y3_c00463{bottom:669.186400pt;}
.y17_c00463{bottom:814.519733pt;}
.y16_c00463{bottom:841.186400pt;}
.y15_c00463{bottom:867.853067pt;}
.y14_c00463{bottom:894.519733pt;}
.y2_c00463{bottom:972.023733pt;}
.h2_c00463{height:48.000000pt;}
.h5_c00463{height:57.600000pt;}
.h4_c00463{height:59.072000pt;}
.h6_c00463{height:99.733333pt;}
.h3_c00463{height:288.000000pt;}
.h0_c00463{height:1122.520000pt;}
.h1_c00463{height:1122.666667pt;}
.w0_c00463{width:793.701333pt;}
.w1_c00463{width:794.000000pt;}
.x0_c00463{left:0.000000pt;}
.x2_c00463{left:72.258000pt;}
.x3_c00463{left:73.238800pt;}
.x5_c00463{left:99.811067pt;}
.x4_c00463{left:113.238800pt;}
.x1_c00463{left:697.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.160000;font-style:normal;font-weight:normal;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_6e785f81a5e3b1a3d2599fd0.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.024000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls5_c00464{letter-spacing:-0.540000px;}
.ls4_c00464{letter-spacing:0.000000px;}
.ls0_c00464{letter-spacing:0.720000px;}
.ls1_c00464{letter-spacing:0.840000px;}
.ls3_c00464{letter-spacing:1.500000px;}
.ls2_c00464{letter-spacing:1.650000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00464{word-spacing:-21.060000px;}
.ws2_c00464{word-spacing:-11.700000px;}
.ws0_c00464{word-spacing:-10.200000px;}
.wsa_c00464{word-spacing:-2.592000px;}
.wsb_c00464{word-spacing:-1.656000px;}
.wsf_c00464{word-spacing:-1.500000px;}
.ws4_c00464{word-spacing:-0.840000px;}
.ws3_c00464{word-spacing:0.000000px;}
.ws8_c00464{word-spacing:0.936000px;}
.ws9_c00464{word-spacing:1.656000px;}
.ws6_c00464{word-spacing:2.376000px;}
.ws7_c00464{word-spacing:3.168000px;}
.ws5_c00464{word-spacing:3.672000px;}
.wsc_c00464{word-spacing:4.104000px;}
.wse_c00464{word-spacing:9.720000px;}
.wsd_c00464{word-spacing:10.656000px;}
._0_c00464{margin-left:-480.336000px;}
._3_c00464{margin-left:-7.207200px;}
._1_c00464{margin-left:-4.200000px;}
._2_c00464{margin-left:-1.440000px;}
.fc3_c00464{color:rgb(32,32,32);}
.fc2_c00464{color:rgb(233,83,14);}
.fc1_c00464{color:rgb(232,86,17);}
.fc4_c00464{color:rgb(157,157,156);}
.fc0_c00464{color:rgb(60,60,59);}
.fs1_c00464{font-size:42.000000px;}
.fs0_c00464{font-size:60.000000px;}
.fs5_c00464{font-size:66.000000px;}
.fs4_c00464{font-size:72.000000px;}
.fs3_c00464{font-size:84.000000px;}
.fs2_c00464{font-size:108.000000px;}
.y0_c00464{bottom:0.000000px;}
.y1_c00464{bottom:41.250000px;}
.y11_c00464{bottom:376.316700px;}
.y10_c00464{bottom:406.322700px;}
.yf_c00464{bottom:436.328700px;}
.ye_c00464{bottom:466.334700px;}
.yd_c00464{bottom:526.334700px;}
.yc_c00464{bottom:616.286700px;}
.yb_c00464{bottom:646.292700px;}
.ya_c00464{bottom:676.298700px;}
.y9_c00464{bottom:706.304700px;}
.y17_c00464{bottom:706.334700px;}
.y8_c00464{bottom:736.310700px;}
.y16_c00464{bottom:736.334700px;}
.y7_c00464{bottom:766.316700px;}
.y15_c00464{bottom:766.334700px;}
.y6_c00464{bottom:796.322700px;}
.y14_c00464{bottom:796.334700px;}
.y5_c00464{bottom:826.328700px;}
.y13_c00464{bottom:826.334700px;}
.y4_c00464{bottom:856.334700px;}
.y12_c00464{bottom:856.376100px;}
.y3_c00464{bottom:916.334700px;}
.y2_c00464{bottom:1006.334700px;}
.h6_c00464{height:50.292000px;}
.h2_c00464{height:54.000000px;}
.h5_c00464{height:64.800000px;}
.h4_c00464{height:78.540000px;}
.h3_c00464{height:100.980000px;}
.h0_c00464{height:1262.835000px;}
.h1_c00464{height:1263.000000px;}
.w0_c00464{width:892.914000px;}
.w1_c00464{width:893.250000px;}
.x0_c00464{left:0.000000px;}
.x2_c00464{left:82.500000px;}
.x3_c00464{left:90.000000px;}
.x4_c00464{left:106.500000px;}
.x5_c00464{left:675.611100px;}
.x1_c00464{left:785.738550px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls5_c00464{letter-spacing:-0.480000pt;}
.ls4_c00464{letter-spacing:0.000000pt;}
.ls0_c00464{letter-spacing:0.640000pt;}
.ls1_c00464{letter-spacing:0.746667pt;}
.ls3_c00464{letter-spacing:1.333333pt;}
.ls2_c00464{letter-spacing:1.466667pt;}
.ws1_c00464{word-spacing:-18.720000pt;}
.ws2_c00464{word-spacing:-10.400000pt;}
.ws0_c00464{word-spacing:-9.066667pt;}
.wsa_c00464{word-spacing:-2.304000pt;}
.wsb_c00464{word-spacing:-1.472000pt;}
.wsf_c00464{word-spacing:-1.333333pt;}
.ws4_c00464{word-spacing:-0.746667pt;}
.ws3_c00464{word-spacing:0.000000pt;}
.ws8_c00464{word-spacing:0.832000pt;}
.ws9_c00464{word-spacing:1.472000pt;}
.ws6_c00464{word-spacing:2.112000pt;}
.ws7_c00464{word-spacing:2.816000pt;}
.ws5_c00464{word-spacing:3.264000pt;}
.wsc_c00464{word-spacing:3.648000pt;}
.wse_c00464{word-spacing:8.640000pt;}
.wsd_c00464{word-spacing:9.472000pt;}
._0_c00464{margin-left:-426.965333pt;}
._3_c00464{margin-left:-6.406400pt;}
._1_c00464{margin-left:-3.733333pt;}
._2_c00464{margin-left:-1.280000pt;}
.fs1_c00464{font-size:37.333333pt;}
.fs0_c00464{font-size:53.333333pt;}
.fs5_c00464{font-size:58.666667pt;}
.fs4_c00464{font-size:64.000000pt;}
.fs3_c00464{font-size:74.666667pt;}
.fs2_c00464{font-size:96.000000pt;}
.y0_c00464{bottom:0.000000pt;}
.y1_c00464{bottom:36.666667pt;}
.y11_c00464{bottom:334.503733pt;}
.y10_c00464{bottom:361.175733pt;}
.yf_c00464{bottom:387.847733pt;}
.ye_c00464{bottom:414.519733pt;}
.yd_c00464{bottom:467.853067pt;}
.yc_c00464{bottom:547.810400pt;}
.yb_c00464{bottom:574.482400pt;}
.ya_c00464{bottom:601.154400pt;}
.y9_c00464{bottom:627.826400pt;}
.y17_c00464{bottom:627.853067pt;}
.y8_c00464{bottom:654.498400pt;}
.y16_c00464{bottom:654.519733pt;}
.y7_c00464{bottom:681.170400pt;}
.y15_c00464{bottom:681.186400pt;}
.y6_c00464{bottom:707.842400pt;}
.y14_c00464{bottom:707.853067pt;}
.y5_c00464{bottom:734.514400pt;}
.y13_c00464{bottom:734.519733pt;}
.y4_c00464{bottom:761.186400pt;}
.y12_c00464{bottom:761.223200pt;}
.y3_c00464{bottom:814.519733pt;}
.y2_c00464{bottom:894.519733pt;}
.h6_c00464{height:44.704000pt;}
.h2_c00464{height:48.000000pt;}
.h5_c00464{height:57.600000pt;}
.h4_c00464{height:69.813333pt;}
.h3_c00464{height:89.760000pt;}
.h0_c00464{height:1122.520000pt;}
.h1_c00464{height:1122.666667pt;}
.w0_c00464{width:793.701333pt;}
.w1_c00464{width:794.000000pt;}
.x0_c00464{left:0.000000pt;}
.x2_c00464{left:73.333333pt;}
.x3_c00464{left:80.000000pt;}
.x4_c00464{left:94.666667pt;}
.x5_c00464{left:600.543200pt;}
.x1_c00464{left:698.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00465{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls1_c00465{letter-spacing:0.000000px;}
.ls0_c00465{letter-spacing:0.720000px;}
.ls2_c00465{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws3_c00465{word-spacing:-2.448000px;}
.wsa_c00465{word-spacing:-1.728000px;}
.wsf_c00465{word-spacing:-1.440000px;}
.wsc_c00465{word-spacing:-0.936000px;}
.ws6_c00465{word-spacing:-0.864000px;}
.ws2_c00465{word-spacing:-0.840000px;}
.ws8_c00465{word-spacing:-0.648000px;}
.ws4_c00465{word-spacing:-0.216000px;}
.ws1_c00465{word-spacing:0.000000px;}
.ws9_c00465{word-spacing:1.440000px;}
.ws5_c00465{word-spacing:3.744000px;}
.wsb_c00465{word-spacing:4.032000px;}
.wse_c00465{word-spacing:4.896000px;}
.wsd_c00465{word-spacing:7.560000px;}
.ws7_c00465{word-spacing:15.696000px;}
._0_c00465{margin-left:-480.336600px;}
._1_c00465{margin-left:-4.200000px;}
._2_c00465{margin-left:-1.440000px;}
.fc2_c00465{color:rgb(32,32,32);}
.fc1_c00465{color:rgb(232,86,17);}
.fc0_c00465{color:rgb(60,60,59);}
.fs1_c00465{font-size:42.000000px;}
.fs0_c00465{font-size:60.000000px;}
.fs3_c00465{font-size:72.000000px;}
.fs2_c00465{font-size:84.000000px;}
.y0_c00465{bottom:0.000000px;}
.y1_c00465{bottom:41.250000px;}
.y12_c00465{bottom:406.304700px;}
.y11_c00465{bottom:436.310700px;}
.y10_c00465{bottom:466.316700px;}
.yf_c00465{bottom:496.322700px;}
.ye_c00465{bottom:526.328700px;}
.yd_c00465{bottom:556.334700px;}
.yc_c00465{bottom:616.334700px;}
.yb_c00465{bottom:706.286700px;}
.ya_c00465{bottom:736.292700px;}
.y9_c00465{bottom:766.298700px;}
.y8_c00465{bottom:796.304700px;}
.y7_c00465{bottom:826.310700px;}
.y6_c00465{bottom:856.316700px;}
.y5_c00465{bottom:886.322700px;}
.y4_c00465{bottom:916.328700px;}
.y3_c00465{bottom:946.334700px;}
.y2_c00465{bottom:1006.334700px;}
.h2_c00465{height:54.000000px;}
.h4_c00465{height:64.800000px;}
.h3_c00465{height:78.540000px;}
.h0_c00465{height:1262.835000px;}
.h1_c00465{height:1263.000000px;}
.w0_c00465{width:892.914000px;}
.w1_c00465{width:893.250000px;}
.x0_c00465{left:0.000000px;}
.x2_c00465{left:90.000000px;}
.x3_c00465{left:106.500000px;}
.x1_c00465{left:784.613700px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls1_c00465{letter-spacing:0.000000pt;}
.ls0_c00465{letter-spacing:0.640000pt;}
.ls2_c00465{letter-spacing:0.746667pt;}
.ws0_c00465{word-spacing:-9.066667pt;}
.ws3_c00465{word-spacing:-2.176000pt;}
.wsa_c00465{word-spacing:-1.536000pt;}
.wsf_c00465{word-spacing:-1.280000pt;}
.wsc_c00465{word-spacing:-0.832000pt;}
.ws6_c00465{word-spacing:-0.768000pt;}
.ws2_c00465{word-spacing:-0.746667pt;}
.ws8_c00465{word-spacing:-0.576000pt;}
.ws4_c00465{word-spacing:-0.192000pt;}
.ws1_c00465{word-spacing:0.000000pt;}
.ws9_c00465{word-spacing:1.280000pt;}
.ws5_c00465{word-spacing:3.328000pt;}
.wsb_c00465{word-spacing:3.584000pt;}
.wse_c00465{word-spacing:4.352000pt;}
.wsd_c00465{word-spacing:6.720000pt;}
.ws7_c00465{word-spacing:13.952000pt;}
._0_c00465{margin-left:-426.965867pt;}
._1_c00465{margin-left:-3.733333pt;}
._2_c00465{margin-left:-1.280000pt;}
.fs1_c00465{font-size:37.333333pt;}
.fs0_c00465{font-size:53.333333pt;}
.fs3_c00465{font-size:64.000000pt;}
.fs2_c00465{font-size:74.666667pt;}
.y0_c00465{bottom:0.000000pt;}
.y1_c00465{bottom:36.666667pt;}
.y12_c00465{bottom:361.159733pt;}
.y11_c00465{bottom:387.831733pt;}
.y10_c00465{bottom:414.503733pt;}
.yf_c00465{bottom:441.175733pt;}
.ye_c00465{bottom:467.847733pt;}
.yd_c00465{bottom:494.519733pt;}
.yc_c00465{bottom:547.853067pt;}
.yb_c00465{bottom:627.810400pt;}
.ya_c00465{bottom:654.482400pt;}
.y9_c00465{bottom:681.154400pt;}
.y8_c00465{bottom:707.826400pt;}
.y7_c00465{bottom:734.498400pt;}
.y6_c00465{bottom:761.170400pt;}
.y5_c00465{bottom:787.842400pt;}
.y4_c00465{bottom:814.514400pt;}
.y3_c00465{bottom:841.186400pt;}
.y2_c00465{bottom:894.519733pt;}
.h2_c00465{height:48.000000pt;}
.h4_c00465{height:57.600000pt;}
.h3_c00465{height:69.813333pt;}
.h0_c00465{height:1122.520000pt;}
.h1_c00465{height:1122.666667pt;}
.w0_c00465{width:793.701333pt;}
.w1_c00465{width:794.000000pt;}
.x0_c00465{left:0.000000pt;}
.x2_c00465{left:80.000000pt;}
.x3_c00465{left:94.666667pt;}
.x1_c00465{left:697.434400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45f0146705d46c3af5096eb9.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00466;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:1.161000;font-style: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);}
.m1_c00466{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls4_c00466{letter-spacing:-0.324000px;}
.ls3_c00466{letter-spacing:0.000000px;}
.ls0_c00466{letter-spacing:0.720000px;}
.ls5_c00466{letter-spacing:0.840000px;}
.ls2_c00466{letter-spacing:1.500000px;}
.ls1_c00466{letter-spacing:1.650000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00466{word-spacing:-21.276000px;}
.ws2_c00466{word-spacing:-14.850000px;}
.ws3_c00466{word-spacing:-11.700000px;}
.ws0_c00466{word-spacing:-10.200000px;}
.wsd_c00466{word-spacing:-1.728000px;}
.ws11_c00466{word-spacing:-1.500000px;}
.ws5_c00466{word-spacing:-0.840000px;}
.ws4_c00466{word-spacing:0.000000px;}
.wsf_c00466{word-spacing:0.792000px;}
.ws7_c00466{word-spacing:5.472000px;}
.ws9_c00466{word-spacing:6.048000px;}
.ws8_c00466{word-spacing:8.856000px;}
.wsb_c00466{word-spacing:9.144000px;}
.ws6_c00466{word-spacing:9.432000px;}
.wsa_c00466{word-spacing:10.872000px;}
.ws10_c00466{word-spacing:13.464000px;}
.wsc_c00466{word-spacing:15.336000px;}
.wse_c00466{word-spacing:23.112000px;}
._0_c00466{margin-left:-480.336600px;}
._5_c00466{margin-left:-7.056000px;}
._3_c00466{margin-left:-5.940000px;}
._1_c00466{margin-left:-4.200000px;}
._4_c00466{margin-left:-3.042000px;}
._2_c00466{margin-left:-1.134000px;}
.fc3_c00466{color:rgb(32,32,32);}
.fc2_c00466{color:rgb(233,83,14);}
.fc1_c00466{color:rgb(232,86,17);}
.fc4_c00466{color:rgb(157,157,156);}
.fc0_c00466{color:rgb(60,60,59);}
.fs1_c00466{font-size:42.000000px;}
.fs0_c00466{font-size:60.000000px;}
.fs5_c00466{font-size:66.000000px;}
.fs4_c00466{font-size:72.000000px;}
.fs3_c00466{font-size:84.000000px;}
.fs2_c00466{font-size:108.000000px;}
.y0_c00466{bottom:0.000000px;}
.y1_c00466{bottom:41.250000px;}
.y11_c00466{bottom:376.316700px;}
.y10_c00466{bottom:406.322700px;}
.yf_c00466{bottom:436.328700px;}
.ye_c00466{bottom:466.334700px;}
.yd_c00466{bottom:526.334700px;}
.yc_c00466{bottom:616.286700px;}
.yb_c00466{bottom:646.292700px;}
.ya_c00466{bottom:676.298700px;}
.y9_c00466{bottom:706.304700px;}
.y17_c00466{bottom:706.334700px;}
.y8_c00466{bottom:736.310700px;}
.y16_c00466{bottom:736.334700px;}
.y7_c00466{bottom:766.316700px;}
.y15_c00466{bottom:766.334700px;}
.y6_c00466{bottom:796.322700px;}
.y14_c00466{bottom:796.334700px;}
.y5_c00466{bottom:826.328700px;}
.y13_c00466{bottom:826.334700px;}
.y4_c00466{bottom:856.334700px;}
.y12_c00466{bottom:856.376100px;}
.y3_c00466{bottom:916.334700px;}
.y2_c00466{bottom:1006.334700px;}
.h6_c00466{height:50.292000px;}
.h2_c00466{height:54.000000px;}
.h5_c00466{height:64.800000px;}
.h4_c00466{height:78.540000px;}
.h3_c00466{height:100.980000px;}
.h0_c00466{height:1262.835000px;}
.h1_c00466{height:1263.000000px;}
.w0_c00466{width:892.914000px;}
.w1_c00466{width:893.250000px;}
.x0_c00466{left:0.000000px;}
.x2_c00466{left:82.500000px;}
.x3_c00466{left:90.000000px;}
.x4_c00466{left:106.500000px;}
.x5_c00466{left:675.611100px;}
.x1_c00466{left:786.713700px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls4_c00466{letter-spacing:-0.288000pt;}
.ls3_c00466{letter-spacing:0.000000pt;}
.ls0_c00466{letter-spacing:0.640000pt;}
.ls5_c00466{letter-spacing:0.746667pt;}
.ls2_c00466{letter-spacing:1.333333pt;}
.ls1_c00466{letter-spacing:1.466667pt;}
.ws1_c00466{word-spacing:-18.912000pt;}
.ws2_c00466{word-spacing:-13.200000pt;}
.ws3_c00466{word-spacing:-10.400000pt;}
.ws0_c00466{word-spacing:-9.066667pt;}
.wsd_c00466{word-spacing:-1.536000pt;}
.ws11_c00466{word-spacing:-1.333333pt;}
.ws5_c00466{word-spacing:-0.746667pt;}
.ws4_c00466{word-spacing:0.000000pt;}
.wsf_c00466{word-spacing:0.704000pt;}
.ws7_c00466{word-spacing:4.864000pt;}
.ws9_c00466{word-spacing:5.376000pt;}
.ws8_c00466{word-spacing:7.872000pt;}
.wsb_c00466{word-spacing:8.128000pt;}
.ws6_c00466{word-spacing:8.384000pt;}
.wsa_c00466{word-spacing:9.664000pt;}
.ws10_c00466{word-spacing:11.968000pt;}
.wsc_c00466{word-spacing:13.632000pt;}
.wse_c00466{word-spacing:20.544000pt;}
._0_c00466{margin-left:-426.965867pt;}
._5_c00466{margin-left:-6.272000pt;}
._3_c00466{margin-left:-5.280000pt;}
._1_c00466{margin-left:-3.733333pt;}
._4_c00466{margin-left:-2.704000pt;}
._2_c00466{margin-left:-1.008000pt;}
.fs1_c00466{font-size:37.333333pt;}
.fs0_c00466{font-size:53.333333pt;}
.fs5_c00466{font-size:58.666667pt;}
.fs4_c00466{font-size:64.000000pt;}
.fs3_c00466{font-size:74.666667pt;}
.fs2_c00466{font-size:96.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y1_c00466{bottom:36.666667pt;}
.y11_c00466{bottom:334.503733pt;}
.y10_c00466{bottom:361.175733pt;}
.yf_c00466{bottom:387.847733pt;}
.ye_c00466{bottom:414.519733pt;}
.yd_c00466{bottom:467.853067pt;}
.yc_c00466{bottom:547.810400pt;}
.yb_c00466{bottom:574.482400pt;}
.ya_c00466{bottom:601.154400pt;}
.y9_c00466{bottom:627.826400pt;}
.y17_c00466{bottom:627.853067pt;}
.y8_c00466{bottom:654.498400pt;}
.y16_c00466{bottom:654.519733pt;}
.y7_c00466{bottom:681.170400pt;}
.y15_c00466{bottom:681.186400pt;}
.y6_c00466{bottom:707.842400pt;}
.y14_c00466{bottom:707.853067pt;}
.y5_c00466{bottom:734.514400pt;}
.y13_c00466{bottom:734.519733pt;}
.y4_c00466{bottom:761.186400pt;}
.y12_c00466{bottom:761.223200pt;}
.y3_c00466{bottom:814.519733pt;}
.y2_c00466{bottom:894.519733pt;}
.h6_c00466{height:44.704000pt;}
.h2_c00466{height:48.000000pt;}
.h5_c00466{height:57.600000pt;}
.h4_c00466{height:69.813333pt;}
.h3_c00466{height:89.760000pt;}
.h0_c00466{height:1122.520000pt;}
.h1_c00466{height:1122.666667pt;}
.w0_c00466{width:793.701333pt;}
.w1_c00466{width:794.000000pt;}
.x0_c00466{left:0.000000pt;}
.x2_c00466{left:73.333333pt;}
.x3_c00466{left:80.000000pt;}
.x4_c00466{left:94.666667pt;}
.x5_c00466{left:600.543200pt;}
.x1_c00466{left:699.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f0146705d46c3af5096eb9.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.199000;font-style: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);}
.m1_c00467{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls2_c00467{letter-spacing:0.000000px;}
.ls1_c00467{letter-spacing:0.720000px;}
.ls0_c00467{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws6_c00467{word-spacing:-1.800000px;}
.ws2_c00467{word-spacing:-0.840000px;}
.ws7_c00467{word-spacing:-0.792000px;}
.wse_c00467{word-spacing:-0.720000px;}
.ws1_c00467{word-spacing:0.000000px;}
.ws8_c00467{word-spacing:0.288000px;}
.ws9_c00467{word-spacing:2.088000px;}
.wsb_c00467{word-spacing:2.880000px;}
.ws3_c00467{word-spacing:4.824000px;}
.wsa_c00467{word-spacing:6.408000px;}
.wsd_c00467{word-spacing:8.424000px;}
.ws4_c00467{word-spacing:11.592000px;}
.ws5_c00467{word-spacing:20.376000px;}
.wsc_c00467{word-spacing:25.704000px;}
._0_c00467{margin-left:-480.337200px;}
._3_c00467{margin-left:-5.760000px;}
._1_c00467{margin-left:-4.200000px;}
._2_c00467{margin-left:-2.160000px;}
._4_c00467{margin-left:-1.080000px;}
.fc2_c00467{color:rgb(32,32,32);}
.fc1_c00467{color:rgb(232,86,17);}
.fc0_c00467{color:rgb(60,60,59);}
.fs1_c00467{font-size:42.000000px;}
.fs0_c00467{font-size:60.000000px;}
.fs3_c00467{font-size:72.000000px;}
.fs2_c00467{font-size:84.000000px;}
.y0_c00467{bottom:0.000000px;}
.y1_c00467{bottom:41.250000px;}
.y11_c00467{bottom:436.304700px;}
.y10_c00467{bottom:466.310700px;}
.yf_c00467{bottom:496.316700px;}
.ye_c00467{bottom:526.322700px;}
.yd_c00467{bottom:556.328700px;}
.yc_c00467{bottom:586.334700px;}
.yb_c00467{bottom:646.334700px;}
.ya_c00467{bottom:736.292700px;}
.y9_c00467{bottom:766.298700px;}
.y8_c00467{bottom:796.304700px;}
.y7_c00467{bottom:826.310700px;}
.y6_c00467{bottom:856.316700px;}
.y5_c00467{bottom:886.322700px;}
.y4_c00467{bottom:916.328700px;}
.y3_c00467{bottom:946.334700px;}
.y2_c00467{bottom:1006.334700px;}
.h2_c00467{height:54.000000px;}
.h4_c00467{height:64.800000px;}
.h3_c00467{height:78.540000px;}
.h0_c00467{height:1262.835000px;}
.h1_c00467{height:1263.000000px;}
.w0_c00467{width:892.914000px;}
.w1_c00467{width:893.250000px;}
.x0_c00467{left:0.000000px;}
.x2_c00467{left:90.000000px;}
.x3_c00467{left:106.500000px;}
.x1_c00467{left:784.688850px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls2_c00467{letter-spacing:0.000000pt;}
.ls1_c00467{letter-spacing:0.640000pt;}
.ls0_c00467{letter-spacing:0.746667pt;}
.ws0_c00467{word-spacing:-9.066667pt;}
.ws6_c00467{word-spacing:-1.600000pt;}
.ws2_c00467{word-spacing:-0.746667pt;}
.ws7_c00467{word-spacing:-0.704000pt;}
.wse_c00467{word-spacing:-0.640000pt;}
.ws1_c00467{word-spacing:0.000000pt;}
.ws8_c00467{word-spacing:0.256000pt;}
.ws9_c00467{word-spacing:1.856000pt;}
.wsb_c00467{word-spacing:2.560000pt;}
.ws3_c00467{word-spacing:4.288000pt;}
.wsa_c00467{word-spacing:5.696000pt;}
.wsd_c00467{word-spacing:7.488000pt;}
.ws4_c00467{word-spacing:10.304000pt;}
.ws5_c00467{word-spacing:18.112000pt;}
.wsc_c00467{word-spacing:22.848000pt;}
._0_c00467{margin-left:-426.966400pt;}
._3_c00467{margin-left:-5.120000pt;}
._1_c00467{margin-left:-3.733333pt;}
._2_c00467{margin-left:-1.920000pt;}
._4_c00467{margin-left:-0.960000pt;}
.fs1_c00467{font-size:37.333333pt;}
.fs0_c00467{font-size:53.333333pt;}
.fs3_c00467{font-size:64.000000pt;}
.fs2_c00467{font-size:74.666667pt;}
.y0_c00467{bottom:0.000000pt;}
.y1_c00467{bottom:36.666667pt;}
.y11_c00467{bottom:387.826400pt;}
.y10_c00467{bottom:414.498400pt;}
.yf_c00467{bottom:441.170400pt;}
.ye_c00467{bottom:467.842400pt;}
.yd_c00467{bottom:494.514400pt;}
.yc_c00467{bottom:521.186400pt;}
.yb_c00467{bottom:574.519733pt;}
.ya_c00467{bottom:654.482400pt;}
.y9_c00467{bottom:681.154400pt;}
.y8_c00467{bottom:707.826400pt;}
.y7_c00467{bottom:734.498400pt;}
.y6_c00467{bottom:761.170400pt;}
.y5_c00467{bottom:787.842400pt;}
.y4_c00467{bottom:814.514400pt;}
.y3_c00467{bottom:841.186400pt;}
.y2_c00467{bottom:894.519733pt;}
.h2_c00467{height:48.000000pt;}
.h4_c00467{height:57.600000pt;}
.h3_c00467{height:69.813333pt;}
.h0_c00467{height:1122.520000pt;}
.h1_c00467{height:1122.666667pt;}
.w0_c00467{width:793.701333pt;}
.w1_c00467{width:794.000000pt;}
.x0_c00467{left:0.000000pt;}
.x2_c00467{left:80.000000pt;}
.x3_c00467{left:94.666667pt;}
.x1_c00467{left:697.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00468;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00468;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00468{font-family:ff5_c00468;line-height:1.155000;font-style: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);}
.m1_c00468{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls3_c00468{letter-spacing:-0.840000px;}
.ls2_c00468{letter-spacing:0.000000px;}
.ls0_c00468{letter-spacing:0.864000px;}
.ls1_c00468{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00468{word-spacing:-13.104000px;}
.ws0_c00468{word-spacing:-10.200000px;}
.ws3_c00468{word-spacing:-7.056000px;}
.ws8_c00468{word-spacing:-6.720000px;}
.ws7_c00468{word-spacing:-5.904000px;}
.ws4_c00468{word-spacing:-3.168000px;}
.ws6_c00468{word-spacing:-2.016000px;}
.ws5_c00468{word-spacing:-0.864000px;}
.ws2_c00468{word-spacing:0.000000px;}
.ws9_c00468{word-spacing:2.040000px;}
._0_c00468{margin-left:-480.336600px;}
._9_c00468{margin-left:-9.552000px;}
._5_c00468{margin-left:-5.904000px;}
._1_c00468{margin-left:-4.200000px;}
._8_c00468{margin-left:-2.784000px;}
._3_c00468{margin-left:-1.728000px;}
._6_c00468{width:1.440000px;}
._a_c00468{width:2.640000px;}
._4_c00468{width:3.960000px;}
._7_c00468{width:5.904000px;}
._2_c00468{width:7.056000px;}
.fc3_c00468{color:rgb(255,255,255);}
.fc2_c00468{color:rgb(233,83,14);}
.fc1_c00468{color:rgb(232,86,17);}
.fc0_c00468{color:rgb(60,60,59);}
.fs1_c00468{font-size:42.000000px;}
.fs0_c00468{font-size:60.000000px;}
.fs3_c00468{font-size:72.000000px;}
.fs4_c00468{font-size:120.000000px;}
.fs2_c00468{font-size:360.000000px;}
.y0_c00468{bottom:0.000000px;}
.y1_c00468{bottom:41.250000px;}
.yf_c00468{bottom:394.274700px;}
.ye_c00468{bottom:415.280700px;}
.yd_c00468{bottom:436.286700px;}
.yc_c00468{bottom:484.292700px;}
.yb_c00468{bottom:505.298700px;}
.ya_c00468{bottom:526.304700px;}
.y9_c00468{bottom:574.310700px;}
.y8_c00468{bottom:595.316700px;}
.y7_c00468{bottom:616.322700px;}
.y6_c00468{bottom:664.328700px;}
.y5_c00468{bottom:685.334700px;}
.y4_c00468{bottom:706.340700px;}
.y3_c00468{bottom:752.834700px;}
.y14_c00468{bottom:886.334700px;}
.y13_c00468{bottom:916.334700px;}
.y12_c00468{bottom:946.334700px;}
.y11_c00468{bottom:976.334700px;}
.y10_c00468{bottom:1006.334700px;}
.y2_c00468{bottom:1093.526700px;}
.h2_c00468{height:54.000000px;}
.h5_c00468{height:64.800000px;}
.h4_c00468{height:66.456000px;}
.h6_c00468{height:112.200000px;}
.h3_c00468{height:324.000000px;}
.h0_c00468{height:1262.835000px;}
.h1_c00468{height:1263.000000px;}
.w0_c00468{width:892.914000px;}
.w1_c00468{width:893.250000px;}
.x0_c00468{left:0.000000px;}
.x2_c00468{left:81.290250px;}
.x3_c00468{left:82.393650px;}
.x5_c00468{left:112.287450px;}
.x4_c00468{left:127.393650px;}
.x1_c00468{left:784.613700px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls3_c00468{letter-spacing:-0.746667pt;}
.ls2_c00468{letter-spacing:0.000000pt;}
.ls0_c00468{letter-spacing:0.768000pt;}
.ls1_c00468{letter-spacing:1.066667pt;}
.ws1_c00468{word-spacing:-11.648000pt;}
.ws0_c00468{word-spacing:-9.066667pt;}
.ws3_c00468{word-spacing:-6.272000pt;}
.ws8_c00468{word-spacing:-5.973333pt;}
.ws7_c00468{word-spacing:-5.248000pt;}
.ws4_c00468{word-spacing:-2.816000pt;}
.ws6_c00468{word-spacing:-1.792000pt;}
.ws5_c00468{word-spacing:-0.768000pt;}
.ws2_c00468{word-spacing:0.000000pt;}
.ws9_c00468{word-spacing:1.813333pt;}
._0_c00468{margin-left:-426.965867pt;}
._9_c00468{margin-left:-8.490667pt;}
._5_c00468{margin-left:-5.248000pt;}
._1_c00468{margin-left:-3.733333pt;}
._8_c00468{margin-left:-2.474667pt;}
._3_c00468{margin-left:-1.536000pt;}
._6_c00468{width:1.280000pt;}
._a_c00468{width:2.346667pt;}
._4_c00468{width:3.520000pt;}
._7_c00468{width:5.248000pt;}
._2_c00468{width:6.272000pt;}
.fs1_c00468{font-size:37.333333pt;}
.fs0_c00468{font-size:53.333333pt;}
.fs3_c00468{font-size:64.000000pt;}
.fs4_c00468{font-size:106.666667pt;}
.fs2_c00468{font-size:320.000000pt;}
.y0_c00468{bottom:0.000000pt;}
.y1_c00468{bottom:36.666667pt;}
.yf_c00468{bottom:350.466400pt;}
.ye_c00468{bottom:369.138400pt;}
.yd_c00468{bottom:387.810400pt;}
.yc_c00468{bottom:430.482400pt;}
.yb_c00468{bottom:449.154400pt;}
.ya_c00468{bottom:467.826400pt;}
.y9_c00468{bottom:510.498400pt;}
.y8_c00468{bottom:529.170400pt;}
.y7_c00468{bottom:547.842400pt;}
.y6_c00468{bottom:590.514400pt;}
.y5_c00468{bottom:609.186400pt;}
.y4_c00468{bottom:627.858400pt;}
.y3_c00468{bottom:669.186400pt;}
.y14_c00468{bottom:787.853067pt;}
.y13_c00468{bottom:814.519733pt;}
.y12_c00468{bottom:841.186400pt;}
.y11_c00468{bottom:867.853067pt;}
.y10_c00468{bottom:894.519733pt;}
.y2_c00468{bottom:972.023733pt;}
.h2_c00468{height:48.000000pt;}
.h5_c00468{height:57.600000pt;}
.h4_c00468{height:59.072000pt;}
.h6_c00468{height:99.733333pt;}
.h3_c00468{height:288.000000pt;}
.h0_c00468{height:1122.520000pt;}
.h1_c00468{height:1122.666667pt;}
.w0_c00468{width:793.701333pt;}
.w1_c00468{width:794.000000pt;}
.x0_c00468{left:0.000000pt;}
.x2_c00468{left:72.258000pt;}
.x3_c00468{left:73.238800pt;}
.x5_c00468{left:99.811067pt;}
.x4_c00468{left:113.238800pt;}
.x1_c00468{left:697.434400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.160000;font-style:normal;font-weight:normal;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_e12e76fc6151d647455519d2.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00469;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00469{font-family:ff4_c00469;line-height:1.161000;font-style: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);}
.m1_c00469{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls4_c00469{letter-spacing:-0.540000px;}
.ls3_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:0.720000px;}
.ls5_c00469{letter-spacing:0.840000px;}
.ls2_c00469{letter-spacing:1.500000px;}
.ls1_c00469{letter-spacing:1.650000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00469{word-spacing:-21.060000px;}
.ws2_c00469{word-spacing:-11.700000px;}
.ws0_c00469{word-spacing:-10.200000px;}
.ws14_c00469{word-spacing:-1.944000px;}
.ws4_c00469{word-spacing:-0.840000px;}
.wsb_c00469{word-spacing:-0.792000px;}
.ws8_c00469{word-spacing:-0.504000px;}
.ws3_c00469{word-spacing:0.000000px;}
.ws11_c00469{word-spacing:0.576000px;}
.wsd_c00469{word-spacing:2.520000px;}
.ws12_c00469{word-spacing:2.736000px;}
.ws9_c00469{word-spacing:3.024000px;}
.wsa_c00469{word-spacing:3.888000px;}
.wsc_c00469{word-spacing:4.176000px;}
.ws10_c00469{word-spacing:6.840000px;}
.wsf_c00469{word-spacing:7.272000px;}
.ws13_c00469{word-spacing:8.064000px;}
.ws7_c00469{word-spacing:9.000000px;}
.wse_c00469{word-spacing:12.168000px;}
.ws5_c00469{word-spacing:13.752000px;}
.ws6_c00469{word-spacing:19.584000px;}
._0_c00469{margin-left:-480.336600px;}
._4_c00469{margin-left:-8.640000px;}
._3_c00469{margin-left:-6.744000px;}
._1_c00469{margin-left:-4.200000px;}
._2_c00469{margin-left:-1.440000px;}
.fc3_c00469{color:rgb(32,32,32);}
.fc2_c00469{color:rgb(233,83,14);}
.fc1_c00469{color:rgb(232,86,17);}
.fc4_c00469{color:rgb(157,157,156);}
.fc0_c00469{color:rgb(60,60,59);}
.fs1_c00469{font-size:42.000000px;}
.fs0_c00469{font-size:60.000000px;}
.fs5_c00469{font-size:66.000000px;}
.fs4_c00469{font-size:72.000000px;}
.fs3_c00469{font-size:84.000000px;}
.fs2_c00469{font-size:108.000000px;}
.y0_c00469{bottom:0.000000px;}
.y1_c00469{bottom:41.250000px;}
.y18_c00469{bottom:166.280700px;}
.y17_c00469{bottom:196.286700px;}
.y16_c00469{bottom:226.292700px;}
.y15_c00469{bottom:256.298700px;}
.y14_c00469{bottom:286.304700px;}
.y13_c00469{bottom:316.310700px;}
.y12_c00469{bottom:346.316700px;}
.y11_c00469{bottom:376.322700px;}
.y10_c00469{bottom:406.328700px;}
.yf_c00469{bottom:436.334700px;}
.ye_c00469{bottom:496.334700px;}
.yd_c00469{bottom:586.280700px;}
.yc_c00469{bottom:616.286700px;}
.yb_c00469{bottom:646.292700px;}
.ya_c00469{bottom:676.298700px;}
.y9_c00469{bottom:706.304700px;}
.y8_c00469{bottom:736.310700px;}
.y1d_c00469{bottom:736.334700px;}
.y7_c00469{bottom:766.316700px;}
.y1c_c00469{bottom:766.334700px;}
.y6_c00469{bottom:796.322700px;}
.y1b_c00469{bottom:796.334700px;}
.y5_c00469{bottom:826.328700px;}
.y1a_c00469{bottom:826.334700px;}
.y4_c00469{bottom:856.334700px;}
.y19_c00469{bottom:856.376100px;}
.y3_c00469{bottom:916.334700px;}
.y2_c00469{bottom:1006.334700px;}
.h6_c00469{height:50.292000px;}
.h2_c00469{height:54.000000px;}
.h5_c00469{height:64.800000px;}
.h4_c00469{height:78.540000px;}
.h3_c00469{height:100.980000px;}
.h0_c00469{height:1262.835000px;}
.h1_c00469{height:1263.000000px;}
.w0_c00469{width:892.914000px;}
.w1_c00469{width:893.250000px;}
.x0_c00469{left:0.000000px;}
.x2_c00469{left:82.500000px;}
.x3_c00469{left:90.000000px;}
.x4_c00469{left:106.500000px;}
.x5_c00469{left:675.611100px;}
.x1_c00469{left:786.728700px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls4_c00469{letter-spacing:-0.480000pt;}
.ls3_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:0.640000pt;}
.ls5_c00469{letter-spacing:0.746667pt;}
.ls2_c00469{letter-spacing:1.333333pt;}
.ls1_c00469{letter-spacing:1.466667pt;}
.ws1_c00469{word-spacing:-18.720000pt;}
.ws2_c00469{word-spacing:-10.400000pt;}
.ws0_c00469{word-spacing:-9.066667pt;}
.ws14_c00469{word-spacing:-1.728000pt;}
.ws4_c00469{word-spacing:-0.746667pt;}
.wsb_c00469{word-spacing:-0.704000pt;}
.ws8_c00469{word-spacing:-0.448000pt;}
.ws3_c00469{word-spacing:0.000000pt;}
.ws11_c00469{word-spacing:0.512000pt;}
.wsd_c00469{word-spacing:2.240000pt;}
.ws12_c00469{word-spacing:2.432000pt;}
.ws9_c00469{word-spacing:2.688000pt;}
.wsa_c00469{word-spacing:3.456000pt;}
.wsc_c00469{word-spacing:3.712000pt;}
.ws10_c00469{word-spacing:6.080000pt;}
.wsf_c00469{word-spacing:6.464000pt;}
.ws13_c00469{word-spacing:7.168000pt;}
.ws7_c00469{word-spacing:8.000000pt;}
.wse_c00469{word-spacing:10.816000pt;}
.ws5_c00469{word-spacing:12.224000pt;}
.ws6_c00469{word-spacing:17.408000pt;}
._0_c00469{margin-left:-426.965867pt;}
._4_c00469{margin-left:-7.680000pt;}
._3_c00469{margin-left:-5.994667pt;}
._1_c00469{margin-left:-3.733333pt;}
._2_c00469{margin-left:-1.280000pt;}
.fs1_c00469{font-size:37.333333pt;}
.fs0_c00469{font-size:53.333333pt;}
.fs5_c00469{font-size:58.666667pt;}
.fs4_c00469{font-size:64.000000pt;}
.fs3_c00469{font-size:74.666667pt;}
.fs2_c00469{font-size:96.000000pt;}
.y0_c00469{bottom:0.000000pt;}
.y1_c00469{bottom:36.666667pt;}
.y18_c00469{bottom:147.805067pt;}
.y17_c00469{bottom:174.477067pt;}
.y16_c00469{bottom:201.149067pt;}
.y15_c00469{bottom:227.821067pt;}
.y14_c00469{bottom:254.493067pt;}
.y13_c00469{bottom:281.165067pt;}
.y12_c00469{bottom:307.837067pt;}
.y11_c00469{bottom:334.509067pt;}
.y10_c00469{bottom:361.181067pt;}
.yf_c00469{bottom:387.853067pt;}
.ye_c00469{bottom:441.186400pt;}
.yd_c00469{bottom:521.138400pt;}
.yc_c00469{bottom:547.810400pt;}
.yb_c00469{bottom:574.482400pt;}
.ya_c00469{bottom:601.154400pt;}
.y9_c00469{bottom:627.826400pt;}
.y8_c00469{bottom:654.498400pt;}
.y1d_c00469{bottom:654.519733pt;}
.y7_c00469{bottom:681.170400pt;}
.y1c_c00469{bottom:681.186400pt;}
.y6_c00469{bottom:707.842400pt;}
.y1b_c00469{bottom:707.853067pt;}
.y5_c00469{bottom:734.514400pt;}
.y1a_c00469{bottom:734.519733pt;}
.y4_c00469{bottom:761.186400pt;}
.y19_c00469{bottom:761.223200pt;}
.y3_c00469{bottom:814.519733pt;}
.y2_c00469{bottom:894.519733pt;}
.h6_c00469{height:44.704000pt;}
.h2_c00469{height:48.000000pt;}
.h5_c00469{height:57.600000pt;}
.h4_c00469{height:69.813333pt;}
.h3_c00469{height:89.760000pt;}
.h0_c00469{height:1122.520000pt;}
.h1_c00469{height:1122.666667pt;}
.w0_c00469{width:793.701333pt;}
.w1_c00469{width:794.000000pt;}
.x0_c00469{left:0.000000pt;}
.x2_c00469{left:73.333333pt;}
.x3_c00469{left:80.000000pt;}
.x4_c00469{left:94.666667pt;}
.x5_c00469{left:600.543200pt;}
.x1_c00469{left:699.314400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00470{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls1_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:0.720000px;}
.ls2_c00470{letter-spacing:0.840000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00470{word-spacing:-10.200000px;}
.ws2_c00470{word-spacing:-0.840000px;}
.ws1_c00470{word-spacing:0.000000px;}
.ws4_c00470{word-spacing:0.504000px;}
.ws3_c00470{word-spacing:0.576000px;}
.ws7_c00470{word-spacing:1.728000px;}
.ws6_c00470{word-spacing:2.592000px;}
.wsa_c00470{word-spacing:3.240000px;}
.ws5_c00470{word-spacing:3.456000px;}
.ws8_c00470{word-spacing:12.528000px;}
.ws9_c00470{word-spacing:18.936000px;}
._0_c00470{margin-left:-480.337200px;}
._1_c00470{margin-left:-4.200000px;}
._2_c00470{margin-left:-1.440000px;}
.fc2_c00470{color:rgb(32,32,32);}
.fc1_c00470{color:rgb(232,86,17);}
.fc0_c00470{color:rgb(60,60,59);}
.fs1_c00470{font-size:42.000000px;}
.fs0_c00470{font-size:60.000000px;}
.fs3_c00470{font-size:72.000000px;}
.fs2_c00470{font-size:84.000000px;}
.y0_c00470{bottom:0.000000px;}
.y1_c00470{bottom:41.250000px;}
.yd_c00470{bottom:556.304700px;}
.yc_c00470{bottom:586.310700px;}
.yb_c00470{bottom:616.316700px;}
.ya_c00470{bottom:646.322700px;}
.y9_c00470{bottom:676.328700px;}
.y8_c00470{bottom:706.334700px;}
.y7_c00470{bottom:766.334700px;}
.y6_c00470{bottom:856.316700px;}
.y5_c00470{bottom:886.322700px;}
.y4_c00470{bottom:916.328700px;}
.y3_c00470{bottom:946.334700px;}
.y2_c00470{bottom:1006.334700px;}
.h2_c00470{height:54.000000px;}
.h4_c00470{height:64.800000px;}
.h3_c00470{height:78.540000px;}
.h0_c00470{height:1262.835000px;}
.h1_c00470{height:1263.000000px;}
.w0_c00470{width:892.914000px;}
.w1_c00470{width:893.250000px;}
.x0_c00470{left:0.000000px;}
.x2_c00470{left:90.000000px;}
.x3_c00470{left:106.500000px;}
.x1_c00470{left:790.388850px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls1_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:0.640000pt;}
.ls2_c00470{letter-spacing:0.746667pt;}
.ws0_c00470{word-spacing:-9.066667pt;}
.ws2_c00470{word-spacing:-0.746667pt;}
.ws1_c00470{word-spacing:0.000000pt;}
.ws4_c00470{word-spacing:0.448000pt;}
.ws3_c00470{word-spacing:0.512000pt;}
.ws7_c00470{word-spacing:1.536000pt;}
.ws6_c00470{word-spacing:2.304000pt;}
.wsa_c00470{word-spacing:2.880000pt;}
.ws5_c00470{word-spacing:3.072000pt;}
.ws8_c00470{word-spacing:11.136000pt;}
.ws9_c00470{word-spacing:16.832000pt;}
._0_c00470{margin-left:-426.966400pt;}
._1_c00470{margin-left:-3.733333pt;}
._2_c00470{margin-left:-1.280000pt;}
.fs1_c00470{font-size:37.333333pt;}
.fs0_c00470{font-size:53.333333pt;}
.fs3_c00470{font-size:64.000000pt;}
.fs2_c00470{font-size:74.666667pt;}
.y0_c00470{bottom:0.000000pt;}
.y1_c00470{bottom:36.666667pt;}
.yd_c00470{bottom:494.493067pt;}
.yc_c00470{bottom:521.165067pt;}
.yb_c00470{bottom:547.837067pt;}
.ya_c00470{bottom:574.509067pt;}
.y9_c00470{bottom:601.181067pt;}
.y8_c00470{bottom:627.853067pt;}
.y7_c00470{bottom:681.186400pt;}
.y6_c00470{bottom:761.170400pt;}
.y5_c00470{bottom:787.842400pt;}
.y4_c00470{bottom:814.514400pt;}
.y3_c00470{bottom:841.186400pt;}
.y2_c00470{bottom:894.519733pt;}
.h2_c00470{height:48.000000pt;}
.h4_c00470{height:57.600000pt;}
.h3_c00470{height:69.813333pt;}
.h0_c00470{height:1122.520000pt;}
.h1_c00470{height:1122.666667pt;}
.w0_c00470{width:793.701333pt;}
.w1_c00470{width:794.000000pt;}
.x0_c00470{left:0.000000pt;}
.x2_c00470{left:80.000000pt;}
.x3_c00470{left:94.666667pt;}
.x1_c00470{left:702.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2b7e30b5dd062b5e4bf0a3e.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.024000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls4_c00471{letter-spacing:-0.324000px;}
.ls3_c00471{letter-spacing:0.000000px;}
.ls0_c00471{letter-spacing:0.720000px;}
.ls5_c00471{letter-spacing:0.840000px;}
.ls2_c00471{letter-spacing:1.500000px;}
.ls1_c00471{letter-spacing:1.650000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00471{word-spacing:-21.276000px;}
.ws2_c00471{word-spacing:-14.850000px;}
.ws0_c00471{word-spacing:-10.200000px;}
.ws4_c00471{word-spacing:-0.840000px;}
.ws9_c00471{word-spacing:-0.288000px;}
.ws14_c00471{word-spacing:-0.072000px;}
.ws3_c00471{word-spacing:0.000000px;}
.ws11_c00471{word-spacing:3.024000px;}
.ws6_c00471{word-spacing:3.456000px;}
.wsb_c00471{word-spacing:3.600000px;}
.ws5_c00471{word-spacing:3.816000px;}
.ws10_c00471{word-spacing:4.680000px;}
.wsa_c00471{word-spacing:5.472000px;}
.ws15_c00471{word-spacing:8.136000px;}
.ws8_c00471{word-spacing:8.280000px;}
.ws13_c00471{word-spacing:8.784000px;}
.wsc_c00471{word-spacing:9.000000px;}
.wsf_c00471{word-spacing:13.464000px;}
.ws7_c00471{word-spacing:14.616000px;}
.ws12_c00471{word-spacing:19.800000px;}
.wse_c00471{word-spacing:20.880000px;}
.wsd_c00471{word-spacing:24.336000px;}
._0_c00471{margin-left:-480.336600px;}
._4_c00471{margin-left:-6.480000px;}
._1_c00471{margin-left:-4.200000px;}
._3_c00471{margin-left:-2.160000px;}
._2_c00471{margin-left:-1.134000px;}
.fc3_c00471{color:rgb(32,32,32);}
.fc2_c00471{color:rgb(233,83,14);}
.fc1_c00471{color:rgb(232,86,17);}
.fc4_c00471{color:rgb(157,157,156);}
.fc0_c00471{color:rgb(60,60,59);}
.fs1_c00471{font-size:42.000000px;}
.fs0_c00471{font-size:60.000000px;}
.fs5_c00471{font-size:66.000000px;}
.fs4_c00471{font-size:72.000000px;}
.fs3_c00471{font-size:84.000000px;}
.fs2_c00471{font-size:108.000000px;}
.y0_c00471{bottom:0.000000px;}
.y1_c00471{bottom:41.250000px;}
.y17_c00471{bottom:196.280700px;}
.y16_c00471{bottom:226.286700px;}
.y15_c00471{bottom:256.292700px;}
.y14_c00471{bottom:286.298700px;}
.y13_c00471{bottom:316.304700px;}
.y12_c00471{bottom:346.310700px;}
.y11_c00471{bottom:376.316700px;}
.y10_c00471{bottom:406.322700px;}
.yf_c00471{bottom:436.328700px;}
.ye_c00471{bottom:466.334700px;}
.yd_c00471{bottom:526.334700px;}
.yc_c00471{bottom:616.286700px;}
.yb_c00471{bottom:646.292700px;}
.ya_c00471{bottom:676.298700px;}
.y9_c00471{bottom:706.304700px;}
.y8_c00471{bottom:736.310700px;}
.y1c_c00471{bottom:736.334700px;}
.y7_c00471{bottom:766.316700px;}
.y1b_c00471{bottom:766.334700px;}
.y6_c00471{bottom:796.322700px;}
.y1a_c00471{bottom:796.334700px;}
.y5_c00471{bottom:826.328700px;}
.y19_c00471{bottom:826.334700px;}
.y4_c00471{bottom:856.334700px;}
.y18_c00471{bottom:856.376100px;}
.y3_c00471{bottom:916.334700px;}
.y2_c00471{bottom:1006.334700px;}
.h6_c00471{height:50.292000px;}
.h2_c00471{height:54.000000px;}
.h5_c00471{height:64.800000px;}
.h4_c00471{height:78.540000px;}
.h3_c00471{height:100.980000px;}
.h0_c00471{height:1262.835000px;}
.h1_c00471{height:1263.000000px;}
.w0_c00471{width:892.914000px;}
.w1_c00471{width:893.250000px;}
.x0_c00471{left:0.000000px;}
.x2_c00471{left:82.500000px;}
.x3_c00471{left:90.000000px;}
.x4_c00471{left:106.500000px;}
.x5_c00471{left:675.611100px;}
.x1_c00471{left:787.913700px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls4_c00471{letter-spacing:-0.288000pt;}
.ls3_c00471{letter-spacing:0.000000pt;}
.ls0_c00471{letter-spacing:0.640000pt;}
.ls5_c00471{letter-spacing:0.746667pt;}
.ls2_c00471{letter-spacing:1.333333pt;}
.ls1_c00471{letter-spacing:1.466667pt;}
.ws1_c00471{word-spacing:-18.912000pt;}
.ws2_c00471{word-spacing:-13.200000pt;}
.ws0_c00471{word-spacing:-9.066667pt;}
.ws4_c00471{word-spacing:-0.746667pt;}
.ws9_c00471{word-spacing:-0.256000pt;}
.ws14_c00471{word-spacing:-0.064000pt;}
.ws3_c00471{word-spacing:0.000000pt;}
.ws11_c00471{word-spacing:2.688000pt;}
.ws6_c00471{word-spacing:3.072000pt;}
.wsb_c00471{word-spacing:3.200000pt;}
.ws5_c00471{word-spacing:3.392000pt;}
.ws10_c00471{word-spacing:4.160000pt;}
.wsa_c00471{word-spacing:4.864000pt;}
.ws15_c00471{word-spacing:7.232000pt;}
.ws8_c00471{word-spacing:7.360000pt;}
.ws13_c00471{word-spacing:7.808000pt;}
.wsc_c00471{word-spacing:8.000000pt;}
.wsf_c00471{word-spacing:11.968000pt;}
.ws7_c00471{word-spacing:12.992000pt;}
.ws12_c00471{word-spacing:17.600000pt;}
.wse_c00471{word-spacing:18.560000pt;}
.wsd_c00471{word-spacing:21.632000pt;}
._0_c00471{margin-left:-426.965867pt;}
._4_c00471{margin-left:-5.760000pt;}
._1_c00471{margin-left:-3.733333pt;}
._3_c00471{margin-left:-1.920000pt;}
._2_c00471{margin-left:-1.008000pt;}
.fs1_c00471{font-size:37.333333pt;}
.fs0_c00471{font-size:53.333333pt;}
.fs5_c00471{font-size:58.666667pt;}
.fs4_c00471{font-size:64.000000pt;}
.fs3_c00471{font-size:74.666667pt;}
.fs2_c00471{font-size:96.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.y1_c00471{bottom:36.666667pt;}
.y17_c00471{bottom:174.471733pt;}
.y16_c00471{bottom:201.143733pt;}
.y15_c00471{bottom:227.815733pt;}
.y14_c00471{bottom:254.487733pt;}
.y13_c00471{bottom:281.159733pt;}
.y12_c00471{bottom:307.831733pt;}
.y11_c00471{bottom:334.503733pt;}
.y10_c00471{bottom:361.175733pt;}
.yf_c00471{bottom:387.847733pt;}
.ye_c00471{bottom:414.519733pt;}
.yd_c00471{bottom:467.853067pt;}
.yc_c00471{bottom:547.810400pt;}
.yb_c00471{bottom:574.482400pt;}
.ya_c00471{bottom:601.154400pt;}
.y9_c00471{bottom:627.826400pt;}
.y8_c00471{bottom:654.498400pt;}
.y1c_c00471{bottom:654.519733pt;}
.y7_c00471{bottom:681.170400pt;}
.y1b_c00471{bottom:681.186400pt;}
.y6_c00471{bottom:707.842400pt;}
.y1a_c00471{bottom:707.853067pt;}
.y5_c00471{bottom:734.514400pt;}
.y19_c00471{bottom:734.519733pt;}
.y4_c00471{bottom:761.186400pt;}
.y18_c00471{bottom:761.223200pt;}
.y3_c00471{bottom:814.519733pt;}
.y2_c00471{bottom:894.519733pt;}
.h6_c00471{height:44.704000pt;}
.h2_c00471{height:48.000000pt;}
.h5_c00471{height:57.600000pt;}
.h4_c00471{height:69.813333pt;}
.h3_c00471{height:89.760000pt;}
.h0_c00471{height:1122.520000pt;}
.h1_c00471{height:1122.666667pt;}
.w0_c00471{width:793.701333pt;}
.w1_c00471{width:794.000000pt;}
.x0_c00471{left:0.000000pt;}
.x2_c00471{left:73.333333pt;}
.x3_c00471{left:80.000000pt;}
.x4_c00471{left:94.666667pt;}
.x5_c00471{left:600.543200pt;}
.x1_c00471{left:700.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00472{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls1_c00472{letter-spacing:0.000000px;}
.ls0_c00472{letter-spacing:0.720000px;}
.ls2_c00472{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws9_c00472{word-spacing:-1.224000px;}
.ws2_c00472{word-spacing:-0.840000px;}
.ws8_c00472{word-spacing:-0.792000px;}
.ws7_c00472{word-spacing:-0.072000px;}
.ws1_c00472{word-spacing:0.000000px;}
.ws4_c00472{word-spacing:0.576000px;}
.ws5_c00472{word-spacing:2.592000px;}
.wsa_c00472{word-spacing:6.048000px;}
.ws3_c00472{word-spacing:6.624000px;}
.ws6_c00472{word-spacing:19.008000px;}
._0_c00472{margin-left:-480.336600px;}
._3_c00472{margin-left:-6.256800px;}
._1_c00472{margin-left:-4.200000px;}
._2_c00472{margin-left:-1.548000px;}
.fc2_c00472{color:rgb(32,32,32);}
.fc1_c00472{color:rgb(232,86,17);}
.fc0_c00472{color:rgb(60,60,59);}
.fs1_c00472{font-size:42.000000px;}
.fs0_c00472{font-size:60.000000px;}
.fs3_c00472{font-size:72.000000px;}
.fs2_c00472{font-size:84.000000px;}
.y0_c00472{bottom:0.000000px;}
.y1_c00472{bottom:41.250000px;}
.yd_c00472{bottom:556.304700px;}
.yc_c00472{bottom:586.310700px;}
.yb_c00472{bottom:616.316700px;}
.ya_c00472{bottom:646.322700px;}
.y9_c00472{bottom:676.328700px;}
.y8_c00472{bottom:706.334700px;}
.y7_c00472{bottom:766.334700px;}
.y6_c00472{bottom:856.316700px;}
.y5_c00472{bottom:886.322700px;}
.y4_c00472{bottom:916.328700px;}
.y3_c00472{bottom:946.334700px;}
.y2_c00472{bottom:1006.334700px;}
.h2_c00472{height:54.000000px;}
.h4_c00472{height:64.800000px;}
.h3_c00472{height:78.540000px;}
.h0_c00472{height:1262.835000px;}
.h1_c00472{height:1263.000000px;}
.w0_c00472{width:892.914000px;}
.w1_c00472{width:893.250000px;}
.x0_c00472{left:0.000000px;}
.x2_c00472{left:90.000000px;}
.x3_c00472{left:106.500000px;}
.x1_c00472{left:787.763700px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls1_c00472{letter-spacing:0.000000pt;}
.ls0_c00472{letter-spacing:0.640000pt;}
.ls2_c00472{letter-spacing:0.746667pt;}
.ws0_c00472{word-spacing:-9.066667pt;}
.ws9_c00472{word-spacing:-1.088000pt;}
.ws2_c00472{word-spacing:-0.746667pt;}
.ws8_c00472{word-spacing:-0.704000pt;}
.ws7_c00472{word-spacing:-0.064000pt;}
.ws1_c00472{word-spacing:0.000000pt;}
.ws4_c00472{word-spacing:0.512000pt;}
.ws5_c00472{word-spacing:2.304000pt;}
.wsa_c00472{word-spacing:5.376000pt;}
.ws3_c00472{word-spacing:5.888000pt;}
.ws6_c00472{word-spacing:16.896000pt;}
._0_c00472{margin-left:-426.965867pt;}
._3_c00472{margin-left:-5.561600pt;}
._1_c00472{margin-left:-3.733333pt;}
._2_c00472{margin-left:-1.376000pt;}
.fs1_c00472{font-size:37.333333pt;}
.fs0_c00472{font-size:53.333333pt;}
.fs3_c00472{font-size:64.000000pt;}
.fs2_c00472{font-size:74.666667pt;}
.y0_c00472{bottom:0.000000pt;}
.y1_c00472{bottom:36.666667pt;}
.yd_c00472{bottom:494.493067pt;}
.yc_c00472{bottom:521.165067pt;}
.yb_c00472{bottom:547.837067pt;}
.ya_c00472{bottom:574.509067pt;}
.y9_c00472{bottom:601.181067pt;}
.y8_c00472{bottom:627.853067pt;}
.y7_c00472{bottom:681.186400pt;}
.y6_c00472{bottom:761.170400pt;}
.y5_c00472{bottom:787.842400pt;}
.y4_c00472{bottom:814.514400pt;}
.y3_c00472{bottom:841.186400pt;}
.y2_c00472{bottom:894.519733pt;}
.h2_c00472{height:48.000000pt;}
.h4_c00472{height:57.600000pt;}
.h3_c00472{height:69.813333pt;}
.h0_c00472{height:1122.520000pt;}
.h1_c00472{height:1122.666667pt;}
.w0_c00472{width:793.701333pt;}
.w1_c00472{width:794.000000pt;}
.x0_c00472{left:0.000000pt;}
.x2_c00472{left:80.000000pt;}
.x3_c00472{left:94.666667pt;}
.x1_c00472{left:700.234400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00473;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00473{font-family:ff5_c00473;line-height:1.155000;font-style: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);}
.m1_c00473{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls2_c00473{letter-spacing:-3.600000px;}
.ls4_c00473{letter-spacing:-0.288000px;}
.ls3_c00473{letter-spacing:0.000000px;}
.ls0_c00473{letter-spacing:0.864000px;}
.ls1_c00473{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00473{word-spacing:-11.952000px;}
.ws9_c00473{word-spacing:-9.000000px;}
.ws0_c00473{word-spacing:-6.600000px;}
.ws8_c00473{word-spacing:-3.600000px;}
.ws5_c00473{word-spacing:-3.096000px;}
.ws7_c00473{word-spacing:-2.808000px;}
.ws4_c00473{word-spacing:-2.304000px;}
.ws6_c00473{word-spacing:-1.152000px;}
.ws3_c00473{word-spacing:-0.864000px;}
.ws2_c00473{word-spacing:0.000000px;}
._1_c00473{margin-left:-476.736600px;}
._5_c00473{margin-left:-9.360000px;}
._4_c00473{margin-left:-6.480000px;}
._2_c00473{margin-left:-4.200000px;}
._7_c00473{margin-left:-3.096000px;}
._3_c00473{margin-left:-1.440000px;}
._8_c00473{width:1.080000px;}
._6_c00473{width:2.088000px;}
._0_c00473{width:3.600000px;}
._9_c00473{width:9.000000px;}
.fc3_c00473{color:rgb(255,255,255);}
.fc2_c00473{color:rgb(233,83,14);}
.fc1_c00473{color:rgb(232,86,17);}
.fc0_c00473{color:rgb(60,60,59);}
.fs1_c00473{font-size:42.000000px;}
.fs0_c00473{font-size:60.000000px;}
.fs3_c00473{font-size:72.000000px;}
.fs4_c00473{font-size:120.000000px;}
.fs2_c00473{font-size:360.000000px;}
.y0_c00473{bottom:0.000000px;}
.y1_c00473{bottom:41.250000px;}
.y10_c00473{bottom:364.268700px;}
.yf_c00473{bottom:385.274700px;}
.ye_c00473{bottom:406.280700px;}
.yd_c00473{bottom:454.286700px;}
.yc_c00473{bottom:475.292700px;}
.yb_c00473{bottom:496.298700px;}
.ya_c00473{bottom:544.304700px;}
.y9_c00473{bottom:565.310700px;}
.y8_c00473{bottom:586.316700px;}
.y7_c00473{bottom:643.322700px;}
.y6_c00473{bottom:664.328700px;}
.y5_c00473{bottom:685.334700px;}
.y4_c00473{bottom:706.340700px;}
.y3_c00473{bottom:752.834700px;}
.y14_c00473{bottom:916.334700px;}
.y13_c00473{bottom:946.334700px;}
.y12_c00473{bottom:976.334700px;}
.y11_c00473{bottom:1006.334700px;}
.y2_c00473{bottom:1093.526700px;}
.h2_c00473{height:54.000000px;}
.h5_c00473{height:64.800000px;}
.h4_c00473{height:66.456000px;}
.h6_c00473{height:112.200000px;}
.h3_c00473{height:324.000000px;}
.h0_c00473{height:1262.835000px;}
.h1_c00473{height:1263.000000px;}
.w0_c00473{width:892.914000px;}
.w1_c00473{width:893.250000px;}
.x0_c00473{left:0.000000px;}
.x2_c00473{left:81.290250px;}
.x3_c00473{left:82.393650px;}
.x5_c00473{left:112.287450px;}
.x4_c00473{left:127.393650px;}
.x1_c00473{left:787.688700px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls2_c00473{letter-spacing:-3.200000pt;}
.ls4_c00473{letter-spacing:-0.256000pt;}
.ls3_c00473{letter-spacing:0.000000pt;}
.ls0_c00473{letter-spacing:0.768000pt;}
.ls1_c00473{letter-spacing:1.066667pt;}
.ws1_c00473{word-spacing:-10.624000pt;}
.ws9_c00473{word-spacing:-8.000000pt;}
.ws0_c00473{word-spacing:-5.866667pt;}
.ws8_c00473{word-spacing:-3.200000pt;}
.ws5_c00473{word-spacing:-2.752000pt;}
.ws7_c00473{word-spacing:-2.496000pt;}
.ws4_c00473{word-spacing:-2.048000pt;}
.ws6_c00473{word-spacing:-1.024000pt;}
.ws3_c00473{word-spacing:-0.768000pt;}
.ws2_c00473{word-spacing:0.000000pt;}
._1_c00473{margin-left:-423.765867pt;}
._5_c00473{margin-left:-8.320000pt;}
._4_c00473{margin-left:-5.760000pt;}
._2_c00473{margin-left:-3.733333pt;}
._7_c00473{margin-left:-2.752000pt;}
._3_c00473{margin-left:-1.280000pt;}
._8_c00473{width:0.960000pt;}
._6_c00473{width:1.856000pt;}
._0_c00473{width:3.200000pt;}
._9_c00473{width:8.000000pt;}
.fs1_c00473{font-size:37.333333pt;}
.fs0_c00473{font-size:53.333333pt;}
.fs3_c00473{font-size:64.000000pt;}
.fs4_c00473{font-size:106.666667pt;}
.fs2_c00473{font-size:320.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y1_c00473{bottom:36.666667pt;}
.y10_c00473{bottom:323.794400pt;}
.yf_c00473{bottom:342.466400pt;}
.ye_c00473{bottom:361.138400pt;}
.yd_c00473{bottom:403.810400pt;}
.yc_c00473{bottom:422.482400pt;}
.yb_c00473{bottom:441.154400pt;}
.ya_c00473{bottom:483.826400pt;}
.y9_c00473{bottom:502.498400pt;}
.y8_c00473{bottom:521.170400pt;}
.y7_c00473{bottom:571.842400pt;}
.y6_c00473{bottom:590.514400pt;}
.y5_c00473{bottom:609.186400pt;}
.y4_c00473{bottom:627.858400pt;}
.y3_c00473{bottom:669.186400pt;}
.y14_c00473{bottom:814.519733pt;}
.y13_c00473{bottom:841.186400pt;}
.y12_c00473{bottom:867.853067pt;}
.y11_c00473{bottom:894.519733pt;}
.y2_c00473{bottom:972.023733pt;}
.h2_c00473{height:48.000000pt;}
.h5_c00473{height:57.600000pt;}
.h4_c00473{height:59.072000pt;}
.h6_c00473{height:99.733333pt;}
.h3_c00473{height:288.000000pt;}
.h0_c00473{height:1122.520000pt;}
.h1_c00473{height:1122.666667pt;}
.w0_c00473{width:793.701333pt;}
.w1_c00473{width:794.000000pt;}
.x0_c00473{left:0.000000pt;}
.x2_c00473{left:72.258000pt;}
.x3_c00473{left:73.238800pt;}
.x5_c00473{left:99.811067pt;}
.x4_c00473{left:113.238800pt;}
.x1_c00473{left:700.167733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.199000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00474;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;line-height:1.024000;font-style: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);}
.m1_c00474{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls4_c00474{letter-spacing:-0.540000px;}
.ls3_c00474{letter-spacing:0.000000px;}
.ls0_c00474{letter-spacing:0.720000px;}
.ls2_c00474{letter-spacing:1.500000px;}
.ls1_c00474{letter-spacing:1.650000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00474{word-spacing:-21.060000px;}
.ws0_c00474{word-spacing:-10.200000px;}
.ws8_c00474{word-spacing:-3.096000px;}
.ws13_c00474{word-spacing:-2.664000px;}
.ws3_c00474{word-spacing:-2.592000px;}
.ws6_c00474{word-spacing:-2.160000px;}
.ws9_c00474{word-spacing:-1.584000px;}
.ws1f_c00474{word-spacing:-1.500000px;}
.ws15_c00474{word-spacing:-0.360000px;}
.ws2_c00474{word-spacing:0.000000px;}
.ws7_c00474{word-spacing:0.072000px;}
.ws1d_c00474{word-spacing:0.144000px;}
.ws1c_c00474{word-spacing:0.360000px;}
.ws14_c00474{word-spacing:0.432000px;}
.ws18_c00474{word-spacing:0.864000px;}
.ws16_c00474{word-spacing:1.368000px;}
.ws1a_c00474{word-spacing:1.584000px;}
.ws12_c00474{word-spacing:2.880000px;}
.ws5_c00474{word-spacing:3.888000px;}
.ws10_c00474{word-spacing:5.328000px;}
.ws1e_c00474{word-spacing:5.544000px;}
.wsb_c00474{word-spacing:5.832000px;}
.ws17_c00474{word-spacing:5.976000px;}
.wse_c00474{word-spacing:6.192000px;}
.ws4_c00474{word-spacing:6.336000px;}
.wsa_c00474{word-spacing:6.408000px;}
.ws11_c00474{word-spacing:7.200000px;}
.ws1b_c00474{word-spacing:10.296000px;}
.wsc_c00474{word-spacing:10.944000px;}
.wsd_c00474{word-spacing:11.304000px;}
.ws19_c00474{word-spacing:14.544000px;}
.wsf_c00474{word-spacing:16.776000px;}
._0_c00474{margin-left:-480.336000px;}
._5_c00474{margin-left:-5.400000px;}
._1_c00474{margin-left:-4.200000px;}
._2_c00474{margin-left:-1.440000px;}
._4_c00474{width:1.389600px;}
._3_c00474{width:7.768800px;}
.fc3_c00474{color:rgb(32,32,32);}
.fc2_c00474{color:rgb(233,83,14);}
.fc1_c00474{color:rgb(232,86,17);}
.fc4_c00474{color:rgb(157,157,156);}
.fc0_c00474{color:rgb(60,60,59);}
.fs1_c00474{font-size:42.000000px;}
.fs0_c00474{font-size:60.000000px;}
.fs4_c00474{font-size:66.000000px;}
.fs3_c00474{font-size:72.000000px;}
.fs2_c00474{font-size:108.000000px;}
.y0_c00474{bottom:0.000000px;}
.y1_c00474{bottom:41.250000px;}
.y1f_c00474{bottom:106.166700px;}
.y1e_c00474{bottom:136.172700px;}
.y1d_c00474{bottom:166.178700px;}
.y1c_c00474{bottom:196.184700px;}
.y1b_c00474{bottom:226.190700px;}
.y1a_c00474{bottom:256.196700px;}
.y19_c00474{bottom:286.202700px;}
.y18_c00474{bottom:316.208700px;}
.y17_c00474{bottom:346.214700px;}
.y16_c00474{bottom:376.220700px;}
.y15_c00474{bottom:406.226700px;}
.y14_c00474{bottom:436.232700px;}
.y13_c00474{bottom:466.238700px;}
.y12_c00474{bottom:496.244700px;}
.y11_c00474{bottom:526.250700px;}
.y10_c00474{bottom:556.256700px;}
.yf_c00474{bottom:586.262700px;}
.ye_c00474{bottom:616.268700px;}
.yd_c00474{bottom:646.274700px;}
.yc_c00474{bottom:676.280700px;}
.yb_c00474{bottom:706.286700px;}
.ya_c00474{bottom:736.292700px;}
.y9_c00474{bottom:766.298700px;}
.y26_c00474{bottom:766.334700px;}
.y8_c00474{bottom:796.304700px;}
.y25_c00474{bottom:796.334700px;}
.y7_c00474{bottom:826.310700px;}
.y24_c00474{bottom:826.334700px;}
.y6_c00474{bottom:856.316700px;}
.y23_c00474{bottom:856.334700px;}
.y5_c00474{bottom:886.322700px;}
.y22_c00474{bottom:886.334700px;}
.y4_c00474{bottom:916.328700px;}
.y21_c00474{bottom:916.334700px;}
.y3_c00474{bottom:946.334700px;}
.y20_c00474{bottom:946.376100px;}
.y2_c00474{bottom:1006.334700px;}
.h5_c00474{height:50.292000px;}
.h2_c00474{height:54.000000px;}
.h4_c00474{height:64.800000px;}
.h3_c00474{height:100.980000px;}
.h0_c00474{height:1262.835000px;}
.h1_c00474{height:1263.000000px;}
.w0_c00474{width:892.914000px;}
.w1_c00474{width:893.250000px;}
.x0_c00474{left:0.000000px;}
.x2_c00474{left:82.500000px;}
.x3_c00474{left:106.500000px;}
.x4_c00474{left:675.611100px;}
.x1_c00474{left:787.838550px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls4_c00474{letter-spacing:-0.480000pt;}
.ls3_c00474{letter-spacing:0.000000pt;}
.ls0_c00474{letter-spacing:0.640000pt;}
.ls2_c00474{letter-spacing:1.333333pt;}
.ls1_c00474{letter-spacing:1.466667pt;}
.ws1_c00474{word-spacing:-18.720000pt;}
.ws0_c00474{word-spacing:-9.066667pt;}
.ws8_c00474{word-spacing:-2.752000pt;}
.ws13_c00474{word-spacing:-2.368000pt;}
.ws3_c00474{word-spacing:-2.304000pt;}
.ws6_c00474{word-spacing:-1.920000pt;}
.ws9_c00474{word-spacing:-1.408000pt;}
.ws1f_c00474{word-spacing:-1.333333pt;}
.ws15_c00474{word-spacing:-0.320000pt;}
.ws2_c00474{word-spacing:0.000000pt;}
.ws7_c00474{word-spacing:0.064000pt;}
.ws1d_c00474{word-spacing:0.128000pt;}
.ws1c_c00474{word-spacing:0.320000pt;}
.ws14_c00474{word-spacing:0.384000pt;}
.ws18_c00474{word-spacing:0.768000pt;}
.ws16_c00474{word-spacing:1.216000pt;}
.ws1a_c00474{word-spacing:1.408000pt;}
.ws12_c00474{word-spacing:2.560000pt;}
.ws5_c00474{word-spacing:3.456000pt;}
.ws10_c00474{word-spacing:4.736000pt;}
.ws1e_c00474{word-spacing:4.928000pt;}
.wsb_c00474{word-spacing:5.184000pt;}
.ws17_c00474{word-spacing:5.312000pt;}
.wse_c00474{word-spacing:5.504000pt;}
.ws4_c00474{word-spacing:5.632000pt;}
.wsa_c00474{word-spacing:5.696000pt;}
.ws11_c00474{word-spacing:6.400000pt;}
.ws1b_c00474{word-spacing:9.152000pt;}
.wsc_c00474{word-spacing:9.728000pt;}
.wsd_c00474{word-spacing:10.048000pt;}
.ws19_c00474{word-spacing:12.928000pt;}
.wsf_c00474{word-spacing:14.912000pt;}
._0_c00474{margin-left:-426.965333pt;}
._5_c00474{margin-left:-4.800000pt;}
._1_c00474{margin-left:-3.733333pt;}
._2_c00474{margin-left:-1.280000pt;}
._4_c00474{width:1.235200pt;}
._3_c00474{width:6.905600pt;}
.fs1_c00474{font-size:37.333333pt;}
.fs0_c00474{font-size:53.333333pt;}
.fs4_c00474{font-size:58.666667pt;}
.fs3_c00474{font-size:64.000000pt;}
.fs2_c00474{font-size:96.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.y1_c00474{bottom:36.666667pt;}
.y1f_c00474{bottom:94.370400pt;}
.y1e_c00474{bottom:121.042400pt;}
.y1d_c00474{bottom:147.714400pt;}
.y1c_c00474{bottom:174.386400pt;}
.y1b_c00474{bottom:201.058400pt;}
.y1a_c00474{bottom:227.730400pt;}
.y19_c00474{bottom:254.402400pt;}
.y18_c00474{bottom:281.074400pt;}
.y17_c00474{bottom:307.746400pt;}
.y16_c00474{bottom:334.418400pt;}
.y15_c00474{bottom:361.090400pt;}
.y14_c00474{bottom:387.762400pt;}
.y13_c00474{bottom:414.434400pt;}
.y12_c00474{bottom:441.106400pt;}
.y11_c00474{bottom:467.778400pt;}
.y10_c00474{bottom:494.450400pt;}
.yf_c00474{bottom:521.122400pt;}
.ye_c00474{bottom:547.794400pt;}
.yd_c00474{bottom:574.466400pt;}
.yc_c00474{bottom:601.138400pt;}
.yb_c00474{bottom:627.810400pt;}
.ya_c00474{bottom:654.482400pt;}
.y9_c00474{bottom:681.154400pt;}
.y26_c00474{bottom:681.186400pt;}
.y8_c00474{bottom:707.826400pt;}
.y25_c00474{bottom:707.853067pt;}
.y7_c00474{bottom:734.498400pt;}
.y24_c00474{bottom:734.519733pt;}
.y6_c00474{bottom:761.170400pt;}
.y23_c00474{bottom:761.186400pt;}
.y5_c00474{bottom:787.842400pt;}
.y22_c00474{bottom:787.853067pt;}
.y4_c00474{bottom:814.514400pt;}
.y21_c00474{bottom:814.519733pt;}
.y3_c00474{bottom:841.186400pt;}
.y20_c00474{bottom:841.223200pt;}
.y2_c00474{bottom:894.519733pt;}
.h5_c00474{height:44.704000pt;}
.h2_c00474{height:48.000000pt;}
.h4_c00474{height:57.600000pt;}
.h3_c00474{height:89.760000pt;}
.h0_c00474{height:1122.520000pt;}
.h1_c00474{height:1122.666667pt;}
.w0_c00474{width:793.701333pt;}
.w1_c00474{width:794.000000pt;}
.x0_c00474{left:0.000000pt;}
.x2_c00474{left:73.333333pt;}
.x3_c00474{left:94.666667pt;}
.x4_c00474{left:600.543200pt;}
.x1_c00474{left:700.300933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f08c7ce23c7def97997f978d.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00475;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:1.161000;font-style: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);}
.m1_c00475{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls4_c00475{letter-spacing:-0.324000px;}
.ls3_c00475{letter-spacing:0.000000px;}
.ls0_c00475{letter-spacing:0.720000px;}
.ls2_c00475{letter-spacing:1.500000px;}
.ls1_c00475{letter-spacing:1.650000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00475{word-spacing:-21.276000px;}
.ws2_c00475{word-spacing:-14.850000px;}
.ws0_c00475{word-spacing:-10.200000px;}
.wsf_c00475{word-spacing:-2.448000px;}
.ws19_c00475{word-spacing:-1.800000px;}
.ws1e_c00475{word-spacing:-1.500000px;}
.ws11_c00475{word-spacing:-1.368000px;}
.ws1b_c00475{word-spacing:-1.296000px;}
.ws18_c00475{word-spacing:-0.720000px;}
.ws1d_c00475{word-spacing:-0.144000px;}
.ws3_c00475{word-spacing:0.000000px;}
.wsc_c00475{word-spacing:1.584000px;}
.ws7_c00475{word-spacing:1.728000px;}
.ws9_c00475{word-spacing:2.520000px;}
.ws6_c00475{word-spacing:2.808000px;}
.ws15_c00475{word-spacing:3.096000px;}
.ws8_c00475{word-spacing:3.240000px;}
.ws10_c00475{word-spacing:3.456000px;}
.ws13_c00475{word-spacing:4.176000px;}
.ws1c_c00475{word-spacing:4.752000px;}
.wsb_c00475{word-spacing:4.824000px;}
.ws14_c00475{word-spacing:4.896000px;}
.wse_c00475{word-spacing:5.112000px;}
.ws5_c00475{word-spacing:6.408000px;}
.wsd_c00475{word-spacing:6.768000px;}
.ws16_c00475{word-spacing:7.560000px;}
.ws17_c00475{word-spacing:7.776000px;}
.ws4_c00475{word-spacing:8.568000px;}
.wsa_c00475{word-spacing:8.640000px;}
.ws1a_c00475{word-spacing:11.160000px;}
.ws12_c00475{word-spacing:11.592000px;}
._0_c00475{margin-left:-480.336600px;}
._1_c00475{margin-left:-4.200000px;}
._3_c00475{margin-left:-2.376000px;}
._2_c00475{margin-left:-1.134000px;}
.fc3_c00475{color:rgb(32,32,32);}
.fc2_c00475{color:rgb(233,83,14);}
.fc1_c00475{color:rgb(232,86,17);}
.fc4_c00475{color:rgb(157,157,156);}
.fc0_c00475{color:rgb(60,60,59);}
.fs1_c00475{font-size:42.000000px;}
.fs0_c00475{font-size:60.000000px;}
.fs4_c00475{font-size:66.000000px;}
.fs3_c00475{font-size:72.000000px;}
.fs2_c00475{font-size:108.000000px;}
.y0_c00475{bottom:0.000000px;}
.y1_c00475{bottom:41.250000px;}
.y1e_c00475{bottom:106.184700px;}
.y1d_c00475{bottom:136.190700px;}
.y1c_c00475{bottom:166.196700px;}
.y1b_c00475{bottom:196.202700px;}
.y1a_c00475{bottom:226.208700px;}
.y19_c00475{bottom:256.214700px;}
.y18_c00475{bottom:316.208700px;}
.y17_c00475{bottom:346.214700px;}
.y16_c00475{bottom:376.220700px;}
.y15_c00475{bottom:406.226700px;}
.y14_c00475{bottom:436.232700px;}
.y13_c00475{bottom:466.238700px;}
.y12_c00475{bottom:496.244700px;}
.y11_c00475{bottom:526.250700px;}
.y10_c00475{bottom:556.256700px;}
.yf_c00475{bottom:586.262700px;}
.ye_c00475{bottom:616.268700px;}
.yd_c00475{bottom:646.274700px;}
.yc_c00475{bottom:676.280700px;}
.yb_c00475{bottom:706.286700px;}
.ya_c00475{bottom:736.292700px;}
.y9_c00475{bottom:766.298700px;}
.y8_c00475{bottom:796.304700px;}
.y24_c00475{bottom:796.334700px;}
.y7_c00475{bottom:826.310700px;}
.y23_c00475{bottom:826.334700px;}
.y6_c00475{bottom:856.316700px;}
.y22_c00475{bottom:856.334700px;}
.y5_c00475{bottom:886.322700px;}
.y21_c00475{bottom:886.334700px;}
.y4_c00475{bottom:916.328700px;}
.y20_c00475{bottom:916.334700px;}
.y3_c00475{bottom:946.334700px;}
.y1f_c00475{bottom:946.376100px;}
.y2_c00475{bottom:1006.334700px;}
.h5_c00475{height:50.292000px;}
.h2_c00475{height:54.000000px;}
.h4_c00475{height:64.800000px;}
.h3_c00475{height:100.980000px;}
.h0_c00475{height:1262.835000px;}
.h1_c00475{height:1263.000000px;}
.w0_c00475{width:892.914000px;}
.w1_c00475{width:893.250000px;}
.x0_c00475{left:0.000000px;}
.x2_c00475{left:82.500000px;}
.x3_c00475{left:106.500000px;}
.x4_c00475{left:675.611100px;}
.x1_c00475{left:786.713700px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls4_c00475{letter-spacing:-0.288000pt;}
.ls3_c00475{letter-spacing:0.000000pt;}
.ls0_c00475{letter-spacing:0.640000pt;}
.ls2_c00475{letter-spacing:1.333333pt;}
.ls1_c00475{letter-spacing:1.466667pt;}
.ws1_c00475{word-spacing:-18.912000pt;}
.ws2_c00475{word-spacing:-13.200000pt;}
.ws0_c00475{word-spacing:-9.066667pt;}
.wsf_c00475{word-spacing:-2.176000pt;}
.ws19_c00475{word-spacing:-1.600000pt;}
.ws1e_c00475{word-spacing:-1.333333pt;}
.ws11_c00475{word-spacing:-1.216000pt;}
.ws1b_c00475{word-spacing:-1.152000pt;}
.ws18_c00475{word-spacing:-0.640000pt;}
.ws1d_c00475{word-spacing:-0.128000pt;}
.ws3_c00475{word-spacing:0.000000pt;}
.wsc_c00475{word-spacing:1.408000pt;}
.ws7_c00475{word-spacing:1.536000pt;}
.ws9_c00475{word-spacing:2.240000pt;}
.ws6_c00475{word-spacing:2.496000pt;}
.ws15_c00475{word-spacing:2.752000pt;}
.ws8_c00475{word-spacing:2.880000pt;}
.ws10_c00475{word-spacing:3.072000pt;}
.ws13_c00475{word-spacing:3.712000pt;}
.ws1c_c00475{word-spacing:4.224000pt;}
.wsb_c00475{word-spacing:4.288000pt;}
.ws14_c00475{word-spacing:4.352000pt;}
.wse_c00475{word-spacing:4.544000pt;}
.ws5_c00475{word-spacing:5.696000pt;}
.wsd_c00475{word-spacing:6.016000pt;}
.ws16_c00475{word-spacing:6.720000pt;}
.ws17_c00475{word-spacing:6.912000pt;}
.ws4_c00475{word-spacing:7.616000pt;}
.wsa_c00475{word-spacing:7.680000pt;}
.ws1a_c00475{word-spacing:9.920000pt;}
.ws12_c00475{word-spacing:10.304000pt;}
._0_c00475{margin-left:-426.965867pt;}
._1_c00475{margin-left:-3.733333pt;}
._3_c00475{margin-left:-2.112000pt;}
._2_c00475{margin-left:-1.008000pt;}
.fs1_c00475{font-size:37.333333pt;}
.fs0_c00475{font-size:53.333333pt;}
.fs4_c00475{font-size:58.666667pt;}
.fs3_c00475{font-size:64.000000pt;}
.fs2_c00475{font-size:96.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y1_c00475{bottom:36.666667pt;}
.y1e_c00475{bottom:94.386400pt;}
.y1d_c00475{bottom:121.058400pt;}
.y1c_c00475{bottom:147.730400pt;}
.y1b_c00475{bottom:174.402400pt;}
.y1a_c00475{bottom:201.074400pt;}
.y19_c00475{bottom:227.746400pt;}
.y18_c00475{bottom:281.074400pt;}
.y17_c00475{bottom:307.746400pt;}
.y16_c00475{bottom:334.418400pt;}
.y15_c00475{bottom:361.090400pt;}
.y14_c00475{bottom:387.762400pt;}
.y13_c00475{bottom:414.434400pt;}
.y12_c00475{bottom:441.106400pt;}
.y11_c00475{bottom:467.778400pt;}
.y10_c00475{bottom:494.450400pt;}
.yf_c00475{bottom:521.122400pt;}
.ye_c00475{bottom:547.794400pt;}
.yd_c00475{bottom:574.466400pt;}
.yc_c00475{bottom:601.138400pt;}
.yb_c00475{bottom:627.810400pt;}
.ya_c00475{bottom:654.482400pt;}
.y9_c00475{bottom:681.154400pt;}
.y8_c00475{bottom:707.826400pt;}
.y24_c00475{bottom:707.853067pt;}
.y7_c00475{bottom:734.498400pt;}
.y23_c00475{bottom:734.519733pt;}
.y6_c00475{bottom:761.170400pt;}
.y22_c00475{bottom:761.186400pt;}
.y5_c00475{bottom:787.842400pt;}
.y21_c00475{bottom:787.853067pt;}
.y4_c00475{bottom:814.514400pt;}
.y20_c00475{bottom:814.519733pt;}
.y3_c00475{bottom:841.186400pt;}
.y1f_c00475{bottom:841.223200pt;}
.y2_c00475{bottom:894.519733pt;}
.h5_c00475{height:44.704000pt;}
.h2_c00475{height:48.000000pt;}
.h4_c00475{height:57.600000pt;}
.h3_c00475{height:89.760000pt;}
.h0_c00475{height:1122.520000pt;}
.h1_c00475{height:1122.666667pt;}
.w0_c00475{width:793.701333pt;}
.w1_c00475{width:794.000000pt;}
.x0_c00475{left:0.000000pt;}
.x2_c00475{left:73.333333pt;}
.x3_c00475{left:94.666667pt;}
.x4_c00475{left:600.543200pt;}
.x1_c00475{left:699.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00476;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00476;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00476{font-family:ff5_c00476;line-height:1.155000;font-style: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);}
.m1_c00476{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls2_c00476{letter-spacing:0.000000px;}
.ls0_c00476{letter-spacing:0.864000px;}
.ls1_c00476{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00476{word-spacing:-13.104000px;}
.ws0_c00476{word-spacing:-10.200000px;}
.ws4_c00476{word-spacing:-2.664000px;}
.ws3_c00476{word-spacing:-2.016000px;}
.ws5_c00476{word-spacing:-1.728000px;}
.ws6_c00476{word-spacing:-1.440000px;}
.ws2_c00476{word-spacing:0.000000px;}
._0_c00476{margin-left:-480.336000px;}
._6_c00476{margin-left:-12.000000px;}
._3_c00476{margin-left:-6.480000px;}
._1_c00476{margin-left:-4.200000px;}
._5_c00476{margin-left:-2.760000px;}
._2_c00476{margin-left:-1.440000px;}
._4_c00476{width:1.440000px;}
.fc3_c00476{color:rgb(255,255,255);}
.fc2_c00476{color:rgb(233,83,14);}
.fc1_c00476{color:rgb(232,86,17);}
.fc0_c00476{color:rgb(60,60,59);}
.fs1_c00476{font-size:42.000000px;}
.fs0_c00476{font-size:60.000000px;}
.fs3_c00476{font-size:72.000000px;}
.fs4_c00476{font-size:120.000000px;}
.fs2_c00476{font-size:360.000000px;}
.y0_c00476{bottom:0.000000px;}
.y1_c00476{bottom:41.250000px;}
.yc_c00476{bottom:484.292700px;}
.yb_c00476{bottom:505.298700px;}
.ya_c00476{bottom:526.304700px;}
.y9_c00476{bottom:574.310700px;}
.y8_c00476{bottom:595.316700px;}
.y7_c00476{bottom:616.322700px;}
.y6_c00476{bottom:664.328700px;}
.y5_c00476{bottom:685.334700px;}
.y4_c00476{bottom:706.340700px;}
.y3_c00476{bottom:752.834700px;}
.yf_c00476{bottom:946.334700px;}
.ye_c00476{bottom:976.334700px;}
.yd_c00476{bottom:1006.334700px;}
.y2_c00476{bottom:1093.526700px;}
.h2_c00476{height:54.000000px;}
.h5_c00476{height:64.800000px;}
.h4_c00476{height:66.456000px;}
.h6_c00476{height:112.200000px;}
.h3_c00476{height:324.000000px;}
.h0_c00476{height:1262.835000px;}
.h1_c00476{height:1263.000000px;}
.w0_c00476{width:892.914000px;}
.w1_c00476{width:893.250000px;}
.x0_c00476{left:0.000000px;}
.x2_c00476{left:81.290250px;}
.x3_c00476{left:82.393650px;}
.x5_c00476{left:112.287450px;}
.x4_c00476{left:127.393650px;}
.x1_c00476{left:788.813550px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls2_c00476{letter-spacing:0.000000pt;}
.ls0_c00476{letter-spacing:0.768000pt;}
.ls1_c00476{letter-spacing:1.066667pt;}
.ws1_c00476{word-spacing:-11.648000pt;}
.ws0_c00476{word-spacing:-9.066667pt;}
.ws4_c00476{word-spacing:-2.368000pt;}
.ws3_c00476{word-spacing:-1.792000pt;}
.ws5_c00476{word-spacing:-1.536000pt;}
.ws6_c00476{word-spacing:-1.280000pt;}
.ws2_c00476{word-spacing:0.000000pt;}
._0_c00476{margin-left:-426.965333pt;}
._6_c00476{margin-left:-10.666667pt;}
._3_c00476{margin-left:-5.760000pt;}
._1_c00476{margin-left:-3.733333pt;}
._5_c00476{margin-left:-2.453333pt;}
._2_c00476{margin-left:-1.280000pt;}
._4_c00476{width:1.280000pt;}
.fs1_c00476{font-size:37.333333pt;}
.fs0_c00476{font-size:53.333333pt;}
.fs3_c00476{font-size:64.000000pt;}
.fs4_c00476{font-size:106.666667pt;}
.fs2_c00476{font-size:320.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.y1_c00476{bottom:36.666667pt;}
.yc_c00476{bottom:430.482400pt;}
.yb_c00476{bottom:449.154400pt;}
.ya_c00476{bottom:467.826400pt;}
.y9_c00476{bottom:510.498400pt;}
.y8_c00476{bottom:529.170400pt;}
.y7_c00476{bottom:547.842400pt;}
.y6_c00476{bottom:590.514400pt;}
.y5_c00476{bottom:609.186400pt;}
.y4_c00476{bottom:627.858400pt;}
.y3_c00476{bottom:669.186400pt;}
.yf_c00476{bottom:841.186400pt;}
.ye_c00476{bottom:867.853067pt;}
.yd_c00476{bottom:894.519733pt;}
.y2_c00476{bottom:972.023733pt;}
.h2_c00476{height:48.000000pt;}
.h5_c00476{height:57.600000pt;}
.h4_c00476{height:59.072000pt;}
.h6_c00476{height:99.733333pt;}
.h3_c00476{height:288.000000pt;}
.h0_c00476{height:1122.520000pt;}
.h1_c00476{height:1122.666667pt;}
.w0_c00476{width:793.701333pt;}
.w1_c00476{width:794.000000pt;}
.x0_c00476{left:0.000000pt;}
.x2_c00476{left:72.258000pt;}
.x3_c00476{left:73.238800pt;}
.x5_c00476{left:99.811067pt;}
.x4_c00476{left:113.238800pt;}
.x1_c00476{left:701.167600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:1.161000;font-style: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);}
.m1_c00477{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls4_c00477{letter-spacing:-0.540000px;}
.ls3_c00477{letter-spacing:0.000000px;}
.ls0_c00477{letter-spacing:0.720000px;}
.ls2_c00477{letter-spacing:1.500000px;}
.ls1_c00477{letter-spacing:1.650000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00477{word-spacing:-21.060000px;}
.ws0_c00477{word-spacing:-10.200000px;}
.ws12_c00477{word-spacing:-5.472000px;}
.wsc_c00477{word-spacing:-4.536000px;}
.ws13_c00477{word-spacing:-3.096000px;}
.ws1b_c00477{word-spacing:-1.500000px;}
.wsb_c00477{word-spacing:-1.080000px;}
.ws2_c00477{word-spacing:0.000000px;}
.ws18_c00477{word-spacing:0.288000px;}
.ws15_c00477{word-spacing:0.720000px;}
.ws17_c00477{word-spacing:1.872000px;}
.ws16_c00477{word-spacing:2.448000px;}
.ws14_c00477{word-spacing:2.664000px;}
.wsf_c00477{word-spacing:4.032000px;}
.ws11_c00477{word-spacing:4.248000px;}
.ws9_c00477{word-spacing:7.128000px;}
.ws8_c00477{word-spacing:8.496000px;}
.wsa_c00477{word-spacing:8.640000px;}
.ws10_c00477{word-spacing:9.000000px;}
.ws1a_c00477{word-spacing:9.432000px;}
.ws6_c00477{word-spacing:10.728000px;}
.ws3_c00477{word-spacing:11.592000px;}
.ws4_c00477{word-spacing:13.176000px;}
.ws7_c00477{word-spacing:13.392000px;}
.ws19_c00477{word-spacing:13.464000px;}
.wsd_c00477{word-spacing:22.176000px;}
.ws5_c00477{word-spacing:22.536000px;}
.wse_c00477{word-spacing:26.568000px;}
._0_c00477{margin-left:-480.336600px;}
._4_c00477{margin-left:-6.480000px;}
._5_c00477{margin-left:-5.419200px;}
._1_c00477{margin-left:-4.200000px;}
._3_c00477{margin-left:-2.426400px;}
._2_c00477{margin-left:-1.274400px;}
._6_c00477{width:1.677600px;}
._7_c00477{width:2.815200px;}
._8_c00477{width:4.125600px;}
.fc3_c00477{color:rgb(32,32,32);}
.fc2_c00477{color:rgb(233,83,14);}
.fc1_c00477{color:rgb(232,86,17);}
.fc4_c00477{color:rgb(157,157,156);}
.fc0_c00477{color:rgb(60,60,59);}
.fs1_c00477{font-size:42.000000px;}
.fs0_c00477{font-size:60.000000px;}
.fs4_c00477{font-size:66.000000px;}
.fs3_c00477{font-size:72.000000px;}
.fs2_c00477{font-size:108.000000px;}
.y0_c00477{bottom:0.000000px;}
.y1_c00477{bottom:41.250000px;}
.y1c_c00477{bottom:136.208700px;}
.y1b_c00477{bottom:166.214700px;}
.y1a_c00477{bottom:196.220700px;}
.y19_c00477{bottom:226.226700px;}
.y18_c00477{bottom:256.232700px;}
.y17_c00477{bottom:286.238700px;}
.y16_c00477{bottom:316.244700px;}
.y15_c00477{bottom:346.250700px;}
.y14_c00477{bottom:376.256700px;}
.y13_c00477{bottom:436.250700px;}
.y12_c00477{bottom:466.256700px;}
.y11_c00477{bottom:496.262700px;}
.y10_c00477{bottom:526.268700px;}
.yf_c00477{bottom:556.274700px;}
.ye_c00477{bottom:586.280700px;}
.yd_c00477{bottom:616.286700px;}
.yc_c00477{bottom:676.280700px;}
.yb_c00477{bottom:706.286700px;}
.ya_c00477{bottom:736.292700px;}
.y9_c00477{bottom:766.298700px;}
.y8_c00477{bottom:796.304700px;}
.y7_c00477{bottom:826.310700px;}
.y21_c00477{bottom:826.334700px;}
.y6_c00477{bottom:856.316700px;}
.y20_c00477{bottom:856.334700px;}
.y5_c00477{bottom:886.322700px;}
.y1f_c00477{bottom:886.334700px;}
.y4_c00477{bottom:916.328700px;}
.y1e_c00477{bottom:916.334700px;}
.y3_c00477{bottom:946.334700px;}
.y1d_c00477{bottom:946.376100px;}
.y2_c00477{bottom:1006.334700px;}
.h5_c00477{height:50.292000px;}
.h2_c00477{height:54.000000px;}
.h4_c00477{height:64.800000px;}
.h3_c00477{height:100.980000px;}
.h0_c00477{height:1262.835000px;}
.h1_c00477{height:1263.000000px;}
.w0_c00477{width:892.914000px;}
.w1_c00477{width:893.250000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:82.500000px;}
.x3_c00477{left:106.500000px;}
.x4_c00477{left:675.611100px;}
.x1_c00477{left:786.788700px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls4_c00477{letter-spacing:-0.480000pt;}
.ls3_c00477{letter-spacing:0.000000pt;}
.ls0_c00477{letter-spacing:0.640000pt;}
.ls2_c00477{letter-spacing:1.333333pt;}
.ls1_c00477{letter-spacing:1.466667pt;}
.ws1_c00477{word-spacing:-18.720000pt;}
.ws0_c00477{word-spacing:-9.066667pt;}
.ws12_c00477{word-spacing:-4.864000pt;}
.wsc_c00477{word-spacing:-4.032000pt;}
.ws13_c00477{word-spacing:-2.752000pt;}
.ws1b_c00477{word-spacing:-1.333333pt;}
.wsb_c00477{word-spacing:-0.960000pt;}
.ws2_c00477{word-spacing:0.000000pt;}
.ws18_c00477{word-spacing:0.256000pt;}
.ws15_c00477{word-spacing:0.640000pt;}
.ws17_c00477{word-spacing:1.664000pt;}
.ws16_c00477{word-spacing:2.176000pt;}
.ws14_c00477{word-spacing:2.368000pt;}
.wsf_c00477{word-spacing:3.584000pt;}
.ws11_c00477{word-spacing:3.776000pt;}
.ws9_c00477{word-spacing:6.336000pt;}
.ws8_c00477{word-spacing:7.552000pt;}
.wsa_c00477{word-spacing:7.680000pt;}
.ws10_c00477{word-spacing:8.000000pt;}
.ws1a_c00477{word-spacing:8.384000pt;}
.ws6_c00477{word-spacing:9.536000pt;}
.ws3_c00477{word-spacing:10.304000pt;}
.ws4_c00477{word-spacing:11.712000pt;}
.ws7_c00477{word-spacing:11.904000pt;}
.ws19_c00477{word-spacing:11.968000pt;}
.wsd_c00477{word-spacing:19.712000pt;}
.ws5_c00477{word-spacing:20.032000pt;}
.wse_c00477{word-spacing:23.616000pt;}
._0_c00477{margin-left:-426.965867pt;}
._4_c00477{margin-left:-5.760000pt;}
._5_c00477{margin-left:-4.817067pt;}
._1_c00477{margin-left:-3.733333pt;}
._3_c00477{margin-left:-2.156800pt;}
._2_c00477{margin-left:-1.132800pt;}
._6_c00477{width:1.491200pt;}
._7_c00477{width:2.502400pt;}
._8_c00477{width:3.667200pt;}
.fs1_c00477{font-size:37.333333pt;}
.fs0_c00477{font-size:53.333333pt;}
.fs4_c00477{font-size:58.666667pt;}
.fs3_c00477{font-size:64.000000pt;}
.fs2_c00477{font-size:96.000000pt;}
.y0_c00477{bottom:0.000000pt;}
.y1_c00477{bottom:36.666667pt;}
.y1c_c00477{bottom:121.074400pt;}
.y1b_c00477{bottom:147.746400pt;}
.y1a_c00477{bottom:174.418400pt;}
.y19_c00477{bottom:201.090400pt;}
.y18_c00477{bottom:227.762400pt;}
.y17_c00477{bottom:254.434400pt;}
.y16_c00477{bottom:281.106400pt;}
.y15_c00477{bottom:307.778400pt;}
.y14_c00477{bottom:334.450400pt;}
.y13_c00477{bottom:387.778400pt;}
.y12_c00477{bottom:414.450400pt;}
.y11_c00477{bottom:441.122400pt;}
.y10_c00477{bottom:467.794400pt;}
.yf_c00477{bottom:494.466400pt;}
.ye_c00477{bottom:521.138400pt;}
.yd_c00477{bottom:547.810400pt;}
.yc_c00477{bottom:601.138400pt;}
.yb_c00477{bottom:627.810400pt;}
.ya_c00477{bottom:654.482400pt;}
.y9_c00477{bottom:681.154400pt;}
.y8_c00477{bottom:707.826400pt;}
.y7_c00477{bottom:734.498400pt;}
.y21_c00477{bottom:734.519733pt;}
.y6_c00477{bottom:761.170400pt;}
.y20_c00477{bottom:761.186400pt;}
.y5_c00477{bottom:787.842400pt;}
.y1f_c00477{bottom:787.853067pt;}
.y4_c00477{bottom:814.514400pt;}
.y1e_c00477{bottom:814.519733pt;}
.y3_c00477{bottom:841.186400pt;}
.y1d_c00477{bottom:841.223200pt;}
.y2_c00477{bottom:894.519733pt;}
.h5_c00477{height:44.704000pt;}
.h2_c00477{height:48.000000pt;}
.h4_c00477{height:57.600000pt;}
.h3_c00477{height:89.760000pt;}
.h0_c00477{height:1122.520000pt;}
.h1_c00477{height:1122.666667pt;}
.w0_c00477{width:793.701333pt;}
.w1_c00477{width:794.000000pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:73.333333pt;}
.x3_c00477{left:94.666667pt;}
.x4_c00477{left:600.543200pt;}
.x1_c00477{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9956317eac99222b2d1d3801.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00478;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.161000;font-style: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);}
.m1_c00478{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls4_c00478{letter-spacing:-0.324000px;}
.ls3_c00478{letter-spacing:0.000000px;}
.ls0_c00478{letter-spacing:0.720000px;}
.ls2_c00478{letter-spacing:1.500000px;}
.ls1_c00478{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00478{word-spacing:-21.276000px;}
.ws2_c00478{word-spacing:-14.850000px;}
.ws0_c00478{word-spacing:-10.200000px;}
.wse_c00478{word-spacing:-2.664000px;}
.wsd_c00478{word-spacing:-2.304000px;}
.ws9_c00478{word-spacing:-1.584000px;}
.ws1c_c00478{word-spacing:-1.500000px;}
.ws5_c00478{word-spacing:-1.152000px;}
.ws8_c00478{word-spacing:-1.008000px;}
.wsf_c00478{word-spacing:-0.792000px;}
.ws16_c00478{word-spacing:-0.360000px;}
.ws14_c00478{word-spacing:-0.072000px;}
.ws3_c00478{word-spacing:0.000000px;}
.ws10_c00478{word-spacing:0.144000px;}
.ws15_c00478{word-spacing:0.216000px;}
.wsa_c00478{word-spacing:1.152000px;}
.ws13_c00478{word-spacing:2.376000px;}
.ws4_c00478{word-spacing:3.312000px;}
.ws1a_c00478{word-spacing:3.456000px;}
.ws6_c00478{word-spacing:5.112000px;}
.ws7_c00478{word-spacing:5.472000px;}
.ws17_c00478{word-spacing:5.760000px;}
.ws1b_c00478{word-spacing:7.128000px;}
.ws18_c00478{word-spacing:7.416000px;}
.wsc_c00478{word-spacing:7.992000px;}
.ws11_c00478{word-spacing:8.208000px;}
.wsb_c00478{word-spacing:16.560000px;}
.ws12_c00478{word-spacing:22.032000px;}
.ws19_c00478{word-spacing:29.232000px;}
._0_c00478{margin-left:-480.336600px;}
._4_c00478{margin-left:-7.236000px;}
._5_c00478{margin-left:-5.760000px;}
._1_c00478{margin-left:-4.200000px;}
._6_c00478{margin-left:-2.959200px;}
._2_c00478{margin-left:-1.432800px;}
._3_c00478{width:1.008000px;}
._7_c00478{width:3.477600px;}
.fc3_c00478{color:rgb(233,83,14);}
.fc2_c00478{color:rgb(32,32,32);}
.fc1_c00478{color:rgb(232,86,17);}
.fc4_c00478{color:rgb(157,157,156);}
.fc0_c00478{color:rgb(60,60,59);}
.fs1_c00478{font-size:42.000000px;}
.fs0_c00478{font-size:60.000000px;}
.fs4_c00478{font-size:66.000000px;}
.fs2_c00478{font-size:72.000000px;}
.fs3_c00478{font-size:108.000000px;}
.y0_c00478{bottom:0.000000px;}
.y1_c00478{bottom:41.250000px;}
.y1d_c00478{bottom:76.238700px;}
.y1c_c00478{bottom:106.244700px;}
.y1b_c00478{bottom:136.250700px;}
.y1a_c00478{bottom:166.256700px;}
.y19_c00478{bottom:196.262700px;}
.y18_c00478{bottom:226.268700px;}
.y17_c00478{bottom:286.262700px;}
.y16_c00478{bottom:316.268700px;}
.y15_c00478{bottom:346.274700px;}
.y14_c00478{bottom:376.280700px;}
.y13_c00478{bottom:406.286700px;}
.y12_c00478{bottom:436.292700px;}
.y11_c00478{bottom:496.286700px;}
.y10_c00478{bottom:526.292700px;}
.yf_c00478{bottom:556.298700px;}
.ye_c00478{bottom:586.304700px;}
.yd_c00478{bottom:616.310700px;}
.yc_c00478{bottom:646.316700px;}
.y21_c00478{bottom:646.334700px;}
.yb_c00478{bottom:676.322700px;}
.y20_c00478{bottom:676.334700px;}
.ya_c00478{bottom:706.328700px;}
.y1f_c00478{bottom:706.334700px;}
.y9_c00478{bottom:736.334700px;}
.y1e_c00478{bottom:737.439000px;}
.y8_c00478{bottom:796.334700px;}
.y7_c00478{bottom:856.316700px;}
.y6_c00478{bottom:886.322700px;}
.y5_c00478{bottom:916.328700px;}
.y4_c00478{bottom:946.334700px;}
.y3_c00478{bottom:992.828700px;}
.y2_c00478{bottom:1022.834700px;}
.h5_c00478{height:50.292000px;}
.h2_c00478{height:54.000000px;}
.h3_c00478{height:64.800000px;}
.h4_c00478{height:100.980000px;}
.h0_c00478{height:1262.835000px;}
.h1_c00478{height:1263.000000px;}
.w0_c00478{width:892.914000px;}
.w1_c00478{width:893.250000px;}
.x0_c00478{left:0.000000px;}
.x3_c00478{left:82.500000px;}
.x2_c00478{left:106.500000px;}
.x4_c00478{left:675.611100px;}
.x1_c00478{left:786.713700px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls4_c00478{letter-spacing:-0.288000pt;}
.ls3_c00478{letter-spacing:0.000000pt;}
.ls0_c00478{letter-spacing:0.640000pt;}
.ls2_c00478{letter-spacing:1.333333pt;}
.ls1_c00478{letter-spacing:1.466667pt;}
.ws1_c00478{word-spacing:-18.912000pt;}
.ws2_c00478{word-spacing:-13.200000pt;}
.ws0_c00478{word-spacing:-9.066667pt;}
.wse_c00478{word-spacing:-2.368000pt;}
.wsd_c00478{word-spacing:-2.048000pt;}
.ws9_c00478{word-spacing:-1.408000pt;}
.ws1c_c00478{word-spacing:-1.333333pt;}
.ws5_c00478{word-spacing:-1.024000pt;}
.ws8_c00478{word-spacing:-0.896000pt;}
.wsf_c00478{word-spacing:-0.704000pt;}
.ws16_c00478{word-spacing:-0.320000pt;}
.ws14_c00478{word-spacing:-0.064000pt;}
.ws3_c00478{word-spacing:0.000000pt;}
.ws10_c00478{word-spacing:0.128000pt;}
.ws15_c00478{word-spacing:0.192000pt;}
.wsa_c00478{word-spacing:1.024000pt;}
.ws13_c00478{word-spacing:2.112000pt;}
.ws4_c00478{word-spacing:2.944000pt;}
.ws1a_c00478{word-spacing:3.072000pt;}
.ws6_c00478{word-spacing:4.544000pt;}
.ws7_c00478{word-spacing:4.864000pt;}
.ws17_c00478{word-spacing:5.120000pt;}
.ws1b_c00478{word-spacing:6.336000pt;}
.ws18_c00478{word-spacing:6.592000pt;}
.wsc_c00478{word-spacing:7.104000pt;}
.ws11_c00478{word-spacing:7.296000pt;}
.wsb_c00478{word-spacing:14.720000pt;}
.ws12_c00478{word-spacing:19.584000pt;}
.ws19_c00478{word-spacing:25.984000pt;}
._0_c00478{margin-left:-426.965867pt;}
._4_c00478{margin-left:-6.432000pt;}
._5_c00478{margin-left:-5.120000pt;}
._1_c00478{margin-left:-3.733333pt;}
._6_c00478{margin-left:-2.630400pt;}
._2_c00478{margin-left:-1.273600pt;}
._3_c00478{width:0.896000pt;}
._7_c00478{width:3.091200pt;}
.fs1_c00478{font-size:37.333333pt;}
.fs0_c00478{font-size:53.333333pt;}
.fs4_c00478{font-size:58.666667pt;}
.fs2_c00478{font-size:64.000000pt;}
.fs3_c00478{font-size:96.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y1_c00478{bottom:36.666667pt;}
.y1d_c00478{bottom:67.767733pt;}
.y1c_c00478{bottom:94.439733pt;}
.y1b_c00478{bottom:121.111733pt;}
.y1a_c00478{bottom:147.783733pt;}
.y19_c00478{bottom:174.455733pt;}
.y18_c00478{bottom:201.127733pt;}
.y17_c00478{bottom:254.455733pt;}
.y16_c00478{bottom:281.127733pt;}
.y15_c00478{bottom:307.799733pt;}
.y14_c00478{bottom:334.471733pt;}
.y13_c00478{bottom:361.143733pt;}
.y12_c00478{bottom:387.815733pt;}
.y11_c00478{bottom:441.143733pt;}
.y10_c00478{bottom:467.815733pt;}
.yf_c00478{bottom:494.487733pt;}
.ye_c00478{bottom:521.159733pt;}
.yd_c00478{bottom:547.831733pt;}
.yc_c00478{bottom:574.503733pt;}
.y21_c00478{bottom:574.519733pt;}
.yb_c00478{bottom:601.175733pt;}
.y20_c00478{bottom:601.186400pt;}
.ya_c00478{bottom:627.847733pt;}
.y1f_c00478{bottom:627.853067pt;}
.y9_c00478{bottom:654.519733pt;}
.y1e_c00478{bottom:655.501333pt;}
.y8_c00478{bottom:707.853067pt;}
.y7_c00478{bottom:761.170400pt;}
.y6_c00478{bottom:787.842400pt;}
.y5_c00478{bottom:814.514400pt;}
.y4_c00478{bottom:841.186400pt;}
.y3_c00478{bottom:882.514400pt;}
.y2_c00478{bottom:909.186400pt;}
.h5_c00478{height:44.704000pt;}
.h2_c00478{height:48.000000pt;}
.h3_c00478{height:57.600000pt;}
.h4_c00478{height:89.760000pt;}
.h0_c00478{height:1122.520000pt;}
.h1_c00478{height:1122.666667pt;}
.w0_c00478{width:793.701333pt;}
.w1_c00478{width:794.000000pt;}
.x0_c00478{left:0.000000pt;}
.x3_c00478{left:73.333333pt;}
.x2_c00478{left:94.666667pt;}
.x4_c00478{left:600.543200pt;}
.x1_c00478{left:699.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa3ad3d4f4d3874c5e7070a1.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.199000;font-style: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);}
.m1_c00479{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls1_c00479{letter-spacing:0.000000px;}
.ls0_c00479{letter-spacing:0.720000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00479{word-spacing:-12.960000px;}
.ws0_c00479{word-spacing:-10.200000px;}
.ws6_c00479{word-spacing:-2.592000px;}
.ws4_c00479{word-spacing:-2.376000px;}
.ws5_c00479{word-spacing:-1.944000px;}
.ws2_c00479{word-spacing:0.000000px;}
.ws3_c00479{word-spacing:5.328000px;}
.ws7_c00479{word-spacing:7.272000px;}
.ws8_c00479{word-spacing:29.088000px;}
._0_c00479{margin-left:-480.337200px;}
._1_c00479{margin-left:-4.200000px;}
._3_c00479{margin-left:-2.894400px;}
._2_c00479{margin-left:-1.432800px;}
.fc2_c00479{color:rgb(32,32,32);}
.fc1_c00479{color:rgb(232,86,17);}
.fc0_c00479{color:rgb(60,60,59);}
.fs1_c00479{font-size:42.000000px;}
.fs0_c00479{font-size:60.000000px;}
.fs2_c00479{font-size:72.000000px;}
.y0_c00479{bottom:0.000000px;}
.y1_c00479{bottom:41.250000px;}
.y9_c00479{bottom:796.304700px;}
.y8_c00479{bottom:826.310700px;}
.y7_c00479{bottom:856.316700px;}
.y6_c00479{bottom:886.322700px;}
.y5_c00479{bottom:932.816700px;}
.y4_c00479{bottom:962.822700px;}
.y3_c00479{bottom:992.828700px;}
.y2_c00479{bottom:1022.834700px;}
.h2_c00479{height:54.000000px;}
.h3_c00479{height:64.800000px;}
.h0_c00479{height:1262.835000px;}
.h1_c00479{height:1263.000000px;}
.w0_c00479{width:892.914000px;}
.w1_c00479{width:893.250000px;}
.x0_c00479{left:0.000000px;}
.x2_c00479{left:106.500000px;}
.x1_c00479{left:784.703850px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls1_c00479{letter-spacing:0.000000pt;}
.ls0_c00479{letter-spacing:0.640000pt;}
.ws1_c00479{word-spacing:-11.520000pt;}
.ws0_c00479{word-spacing:-9.066667pt;}
.ws6_c00479{word-spacing:-2.304000pt;}
.ws4_c00479{word-spacing:-2.112000pt;}
.ws5_c00479{word-spacing:-1.728000pt;}
.ws2_c00479{word-spacing:0.000000pt;}
.ws3_c00479{word-spacing:4.736000pt;}
.ws7_c00479{word-spacing:6.464000pt;}
.ws8_c00479{word-spacing:25.856000pt;}
._0_c00479{margin-left:-426.966400pt;}
._1_c00479{margin-left:-3.733333pt;}
._3_c00479{margin-left:-2.572800pt;}
._2_c00479{margin-left:-1.273600pt;}
.fs1_c00479{font-size:37.333333pt;}
.fs0_c00479{font-size:53.333333pt;}
.fs2_c00479{font-size:64.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y1_c00479{bottom:36.666667pt;}
.y9_c00479{bottom:707.826400pt;}
.y8_c00479{bottom:734.498400pt;}
.y7_c00479{bottom:761.170400pt;}
.y6_c00479{bottom:787.842400pt;}
.y5_c00479{bottom:829.170400pt;}
.y4_c00479{bottom:855.842400pt;}
.y3_c00479{bottom:882.514400pt;}
.y2_c00479{bottom:909.186400pt;}
.h2_c00479{height:48.000000pt;}
.h3_c00479{height:57.600000pt;}
.h0_c00479{height:1122.520000pt;}
.h1_c00479{height:1122.666667pt;}
.w0_c00479{width:793.701333pt;}
.w1_c00479{width:794.000000pt;}
.x0_c00479{left:0.000000pt;}
.x2_c00479{left:94.666667pt;}
.x1_c00479{left:697.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.160000;font-style:normal;font-weight:normal;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_9469b36205b07b0d6c3e7b4f.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00480;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00480{font-family:ff5_c00480;line-height:1.155000;font-style: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);}
.m1_c00480{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls3_c00480{letter-spacing:-0.648000px;}
.ls2_c00480{letter-spacing:0.000000px;}
.ls0_c00480{letter-spacing:0.864000px;}
.ls1_c00480{letter-spacing:1.200000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00480{word-spacing:-11.592000px;}
.ws0_c00480{word-spacing:-10.200000px;}
.ws4_c00480{word-spacing:-8.712000px;}
.ws8_c00480{word-spacing:-6.912000px;}
.ws3_c00480{word-spacing:-5.904000px;}
.ws9_c00480{word-spacing:-5.400000px;}
.ws7_c00480{word-spacing:-5.328000px;}
.ws6_c00480{word-spacing:-5.184000px;}
.ws5_c00480{word-spacing:-4.752000px;}
.wsb_c00480{word-spacing:-2.400000px;}
.ws2_c00480{word-spacing:0.000000px;}
.wsa_c00480{word-spacing:0.648000px;}
._0_c00480{margin-left:-480.337200px;}
._a_c00480{margin-left:-9.816000px;}
._4_c00480{margin-left:-8.784000px;}
._8_c00480{margin-left:-6.624000px;}
._9_c00480{margin-left:-5.376000px;}
._1_c00480{margin-left:-4.200000px;}
._5_c00480{margin-left:-3.168000px;}
._3_c00480{margin-left:-1.440000px;}
._6_c00480{width:2.664000px;}
._2_c00480{width:5.904000px;}
._7_c00480{width:8.712000px;}
.fc3_c00480{color:rgb(255,255,255);}
.fc2_c00480{color:rgb(233,83,14);}
.fc1_c00480{color:rgb(232,86,17);}
.fc0_c00480{color:rgb(60,60,59);}
.fs1_c00480{font-size:42.000000px;}
.fs0_c00480{font-size:60.000000px;}
.fs3_c00480{font-size:72.000000px;}
.fs4_c00480{font-size:120.000000px;}
.fs2_c00480{font-size:360.000000px;}
.y0_c00480{bottom:0.000000px;}
.y1_c00480{bottom:41.250000px;}
.yf_c00480{bottom:394.274700px;}
.ye_c00480{bottom:415.280700px;}
.yd_c00480{bottom:436.286700px;}
.yc_c00480{bottom:484.292700px;}
.yb_c00480{bottom:505.298700px;}
.ya_c00480{bottom:526.304700px;}
.y9_c00480{bottom:574.310700px;}
.y8_c00480{bottom:595.316700px;}
.y7_c00480{bottom:616.322700px;}
.y6_c00480{bottom:664.328700px;}
.y5_c00480{bottom:685.334700px;}
.y4_c00480{bottom:706.340700px;}
.y3_c00480{bottom:752.834700px;}
.y13_c00480{bottom:916.334700px;}
.y12_c00480{bottom:946.334700px;}
.y11_c00480{bottom:976.334700px;}
.y10_c00480{bottom:1006.334700px;}
.y2_c00480{bottom:1093.526700px;}
.h2_c00480{height:54.000000px;}
.h5_c00480{height:64.800000px;}
.h4_c00480{height:66.456000px;}
.h6_c00480{height:112.200000px;}
.h3_c00480{height:324.000000px;}
.h0_c00480{height:1262.835000px;}
.h1_c00480{height:1263.000000px;}
.w0_c00480{width:892.914000px;}
.w1_c00480{width:893.250000px;}
.x0_c00480{left:0.000000px;}
.x2_c00480{left:81.290250px;}
.x3_c00480{left:82.393650px;}
.x5_c00480{left:112.287450px;}
.x4_c00480{left:127.393650px;}
.x1_c00480{left:788.363850px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls3_c00480{letter-spacing:-0.576000pt;}
.ls2_c00480{letter-spacing:0.000000pt;}
.ls0_c00480{letter-spacing:0.768000pt;}
.ls1_c00480{letter-spacing:1.066667pt;}
.ws1_c00480{word-spacing:-10.304000pt;}
.ws0_c00480{word-spacing:-9.066667pt;}
.ws4_c00480{word-spacing:-7.744000pt;}
.ws8_c00480{word-spacing:-6.144000pt;}
.ws3_c00480{word-spacing:-5.248000pt;}
.ws9_c00480{word-spacing:-4.800000pt;}
.ws7_c00480{word-spacing:-4.736000pt;}
.ws6_c00480{word-spacing:-4.608000pt;}
.ws5_c00480{word-spacing:-4.224000pt;}
.wsb_c00480{word-spacing:-2.133333pt;}
.ws2_c00480{word-spacing:0.000000pt;}
.wsa_c00480{word-spacing:0.576000pt;}
._0_c00480{margin-left:-426.966400pt;}
._a_c00480{margin-left:-8.725333pt;}
._4_c00480{margin-left:-7.808000pt;}
._8_c00480{margin-left:-5.888000pt;}
._9_c00480{margin-left:-4.778667pt;}
._1_c00480{margin-left:-3.733333pt;}
._5_c00480{margin-left:-2.816000pt;}
._3_c00480{margin-left:-1.280000pt;}
._6_c00480{width:2.368000pt;}
._2_c00480{width:5.248000pt;}
._7_c00480{width:7.744000pt;}
.fs1_c00480{font-size:37.333333pt;}
.fs0_c00480{font-size:53.333333pt;}
.fs3_c00480{font-size:64.000000pt;}
.fs4_c00480{font-size:106.666667pt;}
.fs2_c00480{font-size:320.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y1_c00480{bottom:36.666667pt;}
.yf_c00480{bottom:350.466400pt;}
.ye_c00480{bottom:369.138400pt;}
.yd_c00480{bottom:387.810400pt;}
.yc_c00480{bottom:430.482400pt;}
.yb_c00480{bottom:449.154400pt;}
.ya_c00480{bottom:467.826400pt;}
.y9_c00480{bottom:510.498400pt;}
.y8_c00480{bottom:529.170400pt;}
.y7_c00480{bottom:547.842400pt;}
.y6_c00480{bottom:590.514400pt;}
.y5_c00480{bottom:609.186400pt;}
.y4_c00480{bottom:627.858400pt;}
.y3_c00480{bottom:669.186400pt;}
.y13_c00480{bottom:814.519733pt;}
.y12_c00480{bottom:841.186400pt;}
.y11_c00480{bottom:867.853067pt;}
.y10_c00480{bottom:894.519733pt;}
.y2_c00480{bottom:972.023733pt;}
.h2_c00480{height:48.000000pt;}
.h5_c00480{height:57.600000pt;}
.h4_c00480{height:59.072000pt;}
.h6_c00480{height:99.733333pt;}
.h3_c00480{height:288.000000pt;}
.h0_c00480{height:1122.520000pt;}
.h1_c00480{height:1122.666667pt;}
.w0_c00480{width:793.701333pt;}
.w1_c00480{width:794.000000pt;}
.x0_c00480{left:0.000000pt;}
.x2_c00480{left:72.258000pt;}
.x3_c00480{left:73.238800pt;}
.x5_c00480{left:99.811067pt;}
.x4_c00480{left:113.238800pt;}
.x1_c00480{left:700.767867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00481;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00481{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls4_c00481{letter-spacing:-0.540000px;}
.ls3_c00481{letter-spacing:0.000000px;}
.ls0_c00481{letter-spacing:0.720000px;}
.ls2_c00481{letter-spacing:1.500000px;}
.ls1_c00481{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00481{word-spacing:-21.060000px;}
.ws2_c00481{word-spacing:-11.700000px;}
.ws0_c00481{word-spacing:-10.200000px;}
.ws6_c00481{word-spacing:-5.184000px;}
.ws5_c00481{word-spacing:-2.304000px;}
.ws16_c00481{word-spacing:-0.864000px;}
.ws13_c00481{word-spacing:-0.648000px;}
.wsf_c00481{word-spacing:-0.432000px;}
.wsa_c00481{word-spacing:-0.288000px;}
.ws3_c00481{word-spacing:0.000000px;}
.ws17_c00481{word-spacing:0.792000px;}
.ws7_c00481{word-spacing:0.936000px;}
.ws18_c00481{word-spacing:1.152000px;}
.ws12_c00481{word-spacing:2.232000px;}
.ws11_c00481{word-spacing:3.168000px;}
.ws10_c00481{word-spacing:3.312000px;}
.wsc_c00481{word-spacing:3.816000px;}
.ws9_c00481{word-spacing:5.760000px;}
.ws15_c00481{word-spacing:6.552000px;}
.ws8_c00481{word-spacing:9.360000px;}
.wsd_c00481{word-spacing:10.440000px;}
.ws14_c00481{word-spacing:10.800000px;}
.wse_c00481{word-spacing:13.248000px;}
.wsb_c00481{word-spacing:14.040000px;}
.ws4_c00481{word-spacing:18.144000px;}
._0_c00481{margin-left:-480.336600px;}
._5_c00481{margin-left:-5.880000px;}
._1_c00481{margin-left:-4.200000px;}
._6_c00481{margin-left:-2.803200px;}
._2_c00481{margin-left:-1.440000px;}
._3_c00481{width:1.260000px;}
._4_c00481{width:3.924000px;}
.fc3_c00481{color:rgb(32,32,32);}
.fc2_c00481{color:rgb(233,83,14);}
.fc1_c00481{color:rgb(232,86,17);}
.fc4_c00481{color:rgb(157,157,156);}
.fc0_c00481{color:rgb(60,60,59);}
.fs1_c00481{font-size:42.000000px;}
.fs0_c00481{font-size:60.000000px;}
.fs4_c00481{font-size:66.000000px;}
.fs3_c00481{font-size:72.000000px;}
.fs2_c00481{font-size:108.000000px;}
.y0_c00481{bottom:0.000000px;}
.y1_c00481{bottom:41.250000px;}
.y1a_c00481{bottom:256.196700px;}
.y19_c00481{bottom:286.202700px;}
.y18_c00481{bottom:316.208700px;}
.y17_c00481{bottom:346.214700px;}
.y16_c00481{bottom:376.220700px;}
.y15_c00481{bottom:406.226700px;}
.y14_c00481{bottom:436.232700px;}
.y13_c00481{bottom:466.238700px;}
.y12_c00481{bottom:496.244700px;}
.y11_c00481{bottom:526.250700px;}
.y10_c00481{bottom:556.256700px;}
.yf_c00481{bottom:586.262700px;}
.ye_c00481{bottom:616.268700px;}
.yd_c00481{bottom:646.274700px;}
.yc_c00481{bottom:676.280700px;}
.yb_c00481{bottom:706.286700px;}
.ya_c00481{bottom:736.292700px;}
.y9_c00481{bottom:766.298700px;}
.y8_c00481{bottom:796.304700px;}
.y20_c00481{bottom:796.334700px;}
.y7_c00481{bottom:826.310700px;}
.y1f_c00481{bottom:826.334700px;}
.y6_c00481{bottom:856.316700px;}
.y1e_c00481{bottom:856.334700px;}
.y5_c00481{bottom:886.322700px;}
.y1d_c00481{bottom:886.334700px;}
.y4_c00481{bottom:916.328700px;}
.y1c_c00481{bottom:916.334700px;}
.y3_c00481{bottom:946.334700px;}
.y1b_c00481{bottom:946.376100px;}
.y2_c00481{bottom:1006.334700px;}
.h5_c00481{height:50.292000px;}
.h2_c00481{height:54.000000px;}
.h4_c00481{height:64.800000px;}
.h3_c00481{height:100.980000px;}
.h0_c00481{height:1262.835000px;}
.h1_c00481{height:1263.000000px;}
.w0_c00481{width:892.914000px;}
.w1_c00481{width:893.250000px;}
.x0_c00481{left:0.000000px;}
.x2_c00481{left:82.500000px;}
.x3_c00481{left:106.500000px;}
.x4_c00481{left:675.611100px;}
.x1_c00481{left:785.888700px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls4_c00481{letter-spacing:-0.480000pt;}
.ls3_c00481{letter-spacing:0.000000pt;}
.ls0_c00481{letter-spacing:0.640000pt;}
.ls2_c00481{letter-spacing:1.333333pt;}
.ls1_c00481{letter-spacing:1.466667pt;}
.ws1_c00481{word-spacing:-18.720000pt;}
.ws2_c00481{word-spacing:-10.400000pt;}
.ws0_c00481{word-spacing:-9.066667pt;}
.ws6_c00481{word-spacing:-4.608000pt;}
.ws5_c00481{word-spacing:-2.048000pt;}
.ws16_c00481{word-spacing:-0.768000pt;}
.ws13_c00481{word-spacing:-0.576000pt;}
.wsf_c00481{word-spacing:-0.384000pt;}
.wsa_c00481{word-spacing:-0.256000pt;}
.ws3_c00481{word-spacing:0.000000pt;}
.ws17_c00481{word-spacing:0.704000pt;}
.ws7_c00481{word-spacing:0.832000pt;}
.ws18_c00481{word-spacing:1.024000pt;}
.ws12_c00481{word-spacing:1.984000pt;}
.ws11_c00481{word-spacing:2.816000pt;}
.ws10_c00481{word-spacing:2.944000pt;}
.wsc_c00481{word-spacing:3.392000pt;}
.ws9_c00481{word-spacing:5.120000pt;}
.ws15_c00481{word-spacing:5.824000pt;}
.ws8_c00481{word-spacing:8.320000pt;}
.wsd_c00481{word-spacing:9.280000pt;}
.ws14_c00481{word-spacing:9.600000pt;}
.wse_c00481{word-spacing:11.776000pt;}
.wsb_c00481{word-spacing:12.480000pt;}
.ws4_c00481{word-spacing:16.128000pt;}
._0_c00481{margin-left:-426.965867pt;}
._5_c00481{margin-left:-5.226667pt;}
._1_c00481{margin-left:-3.733333pt;}
._6_c00481{margin-left:-2.491733pt;}
._2_c00481{margin-left:-1.280000pt;}
._3_c00481{width:1.120000pt;}
._4_c00481{width:3.488000pt;}
.fs1_c00481{font-size:37.333333pt;}
.fs0_c00481{font-size:53.333333pt;}
.fs4_c00481{font-size:58.666667pt;}
.fs3_c00481{font-size:64.000000pt;}
.fs2_c00481{font-size:96.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.y1_c00481{bottom:36.666667pt;}
.y1a_c00481{bottom:227.730400pt;}
.y19_c00481{bottom:254.402400pt;}
.y18_c00481{bottom:281.074400pt;}
.y17_c00481{bottom:307.746400pt;}
.y16_c00481{bottom:334.418400pt;}
.y15_c00481{bottom:361.090400pt;}
.y14_c00481{bottom:387.762400pt;}
.y13_c00481{bottom:414.434400pt;}
.y12_c00481{bottom:441.106400pt;}
.y11_c00481{bottom:467.778400pt;}
.y10_c00481{bottom:494.450400pt;}
.yf_c00481{bottom:521.122400pt;}
.ye_c00481{bottom:547.794400pt;}
.yd_c00481{bottom:574.466400pt;}
.yc_c00481{bottom:601.138400pt;}
.yb_c00481{bottom:627.810400pt;}
.ya_c00481{bottom:654.482400pt;}
.y9_c00481{bottom:681.154400pt;}
.y8_c00481{bottom:707.826400pt;}
.y20_c00481{bottom:707.853067pt;}
.y7_c00481{bottom:734.498400pt;}
.y1f_c00481{bottom:734.519733pt;}
.y6_c00481{bottom:761.170400pt;}
.y1e_c00481{bottom:761.186400pt;}
.y5_c00481{bottom:787.842400pt;}
.y1d_c00481{bottom:787.853067pt;}
.y4_c00481{bottom:814.514400pt;}
.y1c_c00481{bottom:814.519733pt;}
.y3_c00481{bottom:841.186400pt;}
.y1b_c00481{bottom:841.223200pt;}
.y2_c00481{bottom:894.519733pt;}
.h5_c00481{height:44.704000pt;}
.h2_c00481{height:48.000000pt;}
.h4_c00481{height:57.600000pt;}
.h3_c00481{height:89.760000pt;}
.h0_c00481{height:1122.520000pt;}
.h1_c00481{height:1122.666667pt;}
.w0_c00481{width:793.701333pt;}
.w1_c00481{width:794.000000pt;}
.x0_c00481{left:0.000000pt;}
.x2_c00481{left:73.333333pt;}
.x3_c00481{left:94.666667pt;}
.x4_c00481{left:600.543200pt;}
.x1_c00481{left:698.567733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9956317eac99222b2d1d3801.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00482;src:url('chunks/assets/font_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:1.161000;font-style: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);}
.m1_c00482{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls4_c00482{letter-spacing:-0.324000px;}
.ls3_c00482{letter-spacing:0.000000px;}
.ls0_c00482{letter-spacing:0.720000px;}
.ls2_c00482{letter-spacing:1.500000px;}
.ls1_c00482{letter-spacing:1.650000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00482{word-spacing:-21.276000px;}
.ws2_c00482{word-spacing:-14.850000px;}
.ws3_c00482{word-spacing:-11.700000px;}
.ws0_c00482{word-spacing:-10.200000px;}
.wsd_c00482{word-spacing:-1.584000px;}
.ws1c_c00482{word-spacing:-1.500000px;}
.wse_c00482{word-spacing:-1.008000px;}
.wsf_c00482{word-spacing:-0.216000px;}
.ws4_c00482{word-spacing:0.000000px;}
.ws1b_c00482{word-spacing:0.864000px;}
.ws16_c00482{word-spacing:1.008000px;}
.wsa_c00482{word-spacing:3.888000px;}
.ws6_c00482{word-spacing:4.032000px;}
.ws11_c00482{word-spacing:4.104000px;}
.ws5_c00482{word-spacing:4.824000px;}
.wsb_c00482{word-spacing:5.256000px;}
.ws17_c00482{word-spacing:5.688000px;}
.ws10_c00482{word-spacing:6.048000px;}
.ws18_c00482{word-spacing:6.984000px;}
.ws8_c00482{word-spacing:7.560000px;}
.ws13_c00482{word-spacing:7.992000px;}
.ws1a_c00482{word-spacing:8.136000px;}
.wsc_c00482{word-spacing:8.640000px;}
.ws12_c00482{word-spacing:9.000000px;}
.ws9_c00482{word-spacing:9.720000px;}
.ws14_c00482{word-spacing:10.368000px;}
.ws19_c00482{word-spacing:12.672000px;}
.ws15_c00482{word-spacing:18.072000px;}
.ws7_c00482{word-spacing:21.456000px;}
._0_c00482{margin-left:-480.337200px;}
._4_c00482{margin-left:-11.851200px;}
._5_c00482{margin-left:-7.308000px;}
._6_c00482{margin-left:-6.120000px;}
._1_c00482{margin-left:-4.200000px;}
._3_c00482{margin-left:-2.160000px;}
._2_c00482{margin-left:-1.134000px;}
.fc3_c00482{color:rgb(32,32,32);}
.fc2_c00482{color:rgb(233,83,14);}
.fc1_c00482{color:rgb(232,86,17);}
.fc4_c00482{color:rgb(157,157,156);}
.fc0_c00482{color:rgb(60,60,59);}
.fs1_c00482{font-size:42.000000px;}
.fs0_c00482{font-size:60.000000px;}
.fs4_c00482{font-size:66.000000px;}
.fs3_c00482{font-size:72.000000px;}
.fs2_c00482{font-size:108.000000px;}
.y0_c00482{bottom:0.000000px;}
.y1_c00482{bottom:41.250000px;}
.y1a_c00482{bottom:256.196700px;}
.y19_c00482{bottom:286.202700px;}
.y18_c00482{bottom:316.208700px;}
.y17_c00482{bottom:346.214700px;}
.y16_c00482{bottom:376.220700px;}
.y15_c00482{bottom:406.226700px;}
.y14_c00482{bottom:436.232700px;}
.y13_c00482{bottom:466.238700px;}
.y12_c00482{bottom:496.244700px;}
.y11_c00482{bottom:526.250700px;}
.y10_c00482{bottom:556.256700px;}
.yf_c00482{bottom:586.262700px;}
.ye_c00482{bottom:616.268700px;}
.yd_c00482{bottom:646.274700px;}
.yc_c00482{bottom:676.280700px;}
.yb_c00482{bottom:706.286700px;}
.ya_c00482{bottom:736.292700px;}
.y9_c00482{bottom:766.298700px;}
.y21_c00482{bottom:766.334700px;}
.y8_c00482{bottom:796.304700px;}
.y20_c00482{bottom:796.334700px;}
.y7_c00482{bottom:826.310700px;}
.y1f_c00482{bottom:826.334700px;}
.y6_c00482{bottom:856.316700px;}
.y1e_c00482{bottom:856.334700px;}
.y5_c00482{bottom:886.322700px;}
.y1d_c00482{bottom:886.334700px;}
.y4_c00482{bottom:916.328700px;}
.y1c_c00482{bottom:916.334700px;}
.y3_c00482{bottom:946.334700px;}
.y1b_c00482{bottom:946.376100px;}
.y2_c00482{bottom:1006.334700px;}
.h5_c00482{height:50.292000px;}
.h2_c00482{height:54.000000px;}
.h4_c00482{height:64.800000px;}
.h3_c00482{height:100.980000px;}
.h0_c00482{height:1262.835000px;}
.h1_c00482{height:1263.000000px;}
.w0_c00482{width:892.914000px;}
.w1_c00482{width:893.250000px;}
.x0_c00482{left:0.000000px;}
.x2_c00482{left:82.500000px;}
.x3_c00482{left:106.500000px;}
.x4_c00482{left:675.611100px;}
.x1_c00482{left:785.738850px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls4_c00482{letter-spacing:-0.288000pt;}
.ls3_c00482{letter-spacing:0.000000pt;}
.ls0_c00482{letter-spacing:0.640000pt;}
.ls2_c00482{letter-spacing:1.333333pt;}
.ls1_c00482{letter-spacing:1.466667pt;}
.ws1_c00482{word-spacing:-18.912000pt;}
.ws2_c00482{word-spacing:-13.200000pt;}
.ws3_c00482{word-spacing:-10.400000pt;}
.ws0_c00482{word-spacing:-9.066667pt;}
.wsd_c00482{word-spacing:-1.408000pt;}
.ws1c_c00482{word-spacing:-1.333333pt;}
.wse_c00482{word-spacing:-0.896000pt;}
.wsf_c00482{word-spacing:-0.192000pt;}
.ws4_c00482{word-spacing:0.000000pt;}
.ws1b_c00482{word-spacing:0.768000pt;}
.ws16_c00482{word-spacing:0.896000pt;}
.wsa_c00482{word-spacing:3.456000pt;}
.ws6_c00482{word-spacing:3.584000pt;}
.ws11_c00482{word-spacing:3.648000pt;}
.ws5_c00482{word-spacing:4.288000pt;}
.wsb_c00482{word-spacing:4.672000pt;}
.ws17_c00482{word-spacing:5.056000pt;}
.ws10_c00482{word-spacing:5.376000pt;}
.ws18_c00482{word-spacing:6.208000pt;}
.ws8_c00482{word-spacing:6.720000pt;}
.ws13_c00482{word-spacing:7.104000pt;}
.ws1a_c00482{word-spacing:7.232000pt;}
.wsc_c00482{word-spacing:7.680000pt;}
.ws12_c00482{word-spacing:8.000000pt;}
.ws9_c00482{word-spacing:8.640000pt;}
.ws14_c00482{word-spacing:9.216000pt;}
.ws19_c00482{word-spacing:11.264000pt;}
.ws15_c00482{word-spacing:16.064000pt;}
.ws7_c00482{word-spacing:19.072000pt;}
._0_c00482{margin-left:-426.966400pt;}
._4_c00482{margin-left:-10.534400pt;}
._5_c00482{margin-left:-6.496000pt;}
._6_c00482{margin-left:-5.440000pt;}
._1_c00482{margin-left:-3.733333pt;}
._3_c00482{margin-left:-1.920000pt;}
._2_c00482{margin-left:-1.008000pt;}
.fs1_c00482{font-size:37.333333pt;}
.fs0_c00482{font-size:53.333333pt;}
.fs4_c00482{font-size:58.666667pt;}
.fs3_c00482{font-size:64.000000pt;}
.fs2_c00482{font-size:96.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y1_c00482{bottom:36.666667pt;}
.y1a_c00482{bottom:227.730400pt;}
.y19_c00482{bottom:254.402400pt;}
.y18_c00482{bottom:281.074400pt;}
.y17_c00482{bottom:307.746400pt;}
.y16_c00482{bottom:334.418400pt;}
.y15_c00482{bottom:361.090400pt;}
.y14_c00482{bottom:387.762400pt;}
.y13_c00482{bottom:414.434400pt;}
.y12_c00482{bottom:441.106400pt;}
.y11_c00482{bottom:467.778400pt;}
.y10_c00482{bottom:494.450400pt;}
.yf_c00482{bottom:521.122400pt;}
.ye_c00482{bottom:547.794400pt;}
.yd_c00482{bottom:574.466400pt;}
.yc_c00482{bottom:601.138400pt;}
.yb_c00482{bottom:627.810400pt;}
.ya_c00482{bottom:654.482400pt;}
.y9_c00482{bottom:681.154400pt;}
.y21_c00482{bottom:681.186400pt;}
.y8_c00482{bottom:707.826400pt;}
.y20_c00482{bottom:707.853067pt;}
.y7_c00482{bottom:734.498400pt;}
.y1f_c00482{bottom:734.519733pt;}
.y6_c00482{bottom:761.170400pt;}
.y1e_c00482{bottom:761.186400pt;}
.y5_c00482{bottom:787.842400pt;}
.y1d_c00482{bottom:787.853067pt;}
.y4_c00482{bottom:814.514400pt;}
.y1c_c00482{bottom:814.519733pt;}
.y3_c00482{bottom:841.186400pt;}
.y1b_c00482{bottom:841.223200pt;}
.y2_c00482{bottom:894.519733pt;}
.h5_c00482{height:44.704000pt;}
.h2_c00482{height:48.000000pt;}
.h4_c00482{height:57.600000pt;}
.h3_c00482{height:89.760000pt;}
.h0_c00482{height:1122.520000pt;}
.h1_c00482{height:1122.666667pt;}
.w0_c00482{width:793.701333pt;}
.w1_c00482{width:794.000000pt;}
.x0_c00482{left:0.000000pt;}
.x2_c00482{left:73.333333pt;}
.x3_c00482{left:94.666667pt;}
.x4_c00482{left:600.543200pt;}
.x1_c00482{left:698.434533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:1.185000;font-style:normal;font-weight:normal;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_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:1.155000;font-style: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);}
.m1_c00483{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls3_c00483{letter-spacing:-0.288000px;}
.ls2_c00483{letter-spacing:0.000000px;}
.ls0_c00483{letter-spacing:0.864000px;}
.ls1_c00483{letter-spacing:1.200000px;}
.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;}
}
.ws2_c00483{word-spacing:-13.104000px;}
.ws1_c00483{word-spacing:-11.952000px;}
.ws0_c00483{word-spacing:-10.200000px;}
.wsb_c00483{word-spacing:-8.136000px;}
.ws6_c00483{word-spacing:-7.704000px;}
.wsc_c00483{word-spacing:-7.200000px;}
.wsa_c00483{word-spacing:-7.128000px;}
.ws7_c00483{word-spacing:-5.328000px;}
.ws4_c00483{word-spacing:-5.184000px;}
.ws5_c00483{word-spacing:-3.456000px;}
.ws9_c00483{word-spacing:-1.440000px;}
.ws3_c00483{word-spacing:0.000000px;}
.ws8_c00483{word-spacing:0.288000px;}
._0_c00483{margin-left:-480.337200px;}
._a_c00483{margin-left:-11.664000px;}
._9_c00483{margin-left:-9.720000px;}
._8_c00483{margin-left:-8.136000px;}
._5_c00483{margin-left:-6.480000px;}
._1_c00483{margin-left:-4.200000px;}
._3_c00483{margin-left:-2.664000px;}
._2_c00483{margin-left:-1.440000px;}
._4_c00483{width:1.080000px;}
._6_c00483{width:3.456000px;}
._7_c00483{width:8.136000px;}
.fc3_c00483{color:rgb(255,255,255);}
.fc2_c00483{color:rgb(233,83,14);}
.fc1_c00483{color:rgb(232,86,17);}
.fc0_c00483{color:rgb(60,60,59);}
.fs1_c00483{font-size:42.000000px;}
.fs0_c00483{font-size:60.000000px;}
.fs3_c00483{font-size:72.000000px;}
.fs4_c00483{font-size:120.000000px;}
.fs2_c00483{font-size:360.000000px;}
.y0_c00483{bottom:0.000000px;}
.y1_c00483{bottom:41.250000px;}
.y16_c00483{bottom:184.232700px;}
.y15_c00483{bottom:205.238700px;}
.y14_c00483{bottom:226.244700px;}
.y13_c00483{bottom:274.250700px;}
.y12_c00483{bottom:295.256700px;}
.y11_c00483{bottom:316.262700px;}
.y10_c00483{bottom:364.268700px;}
.yf_c00483{bottom:385.274700px;}
.ye_c00483{bottom:406.280700px;}
.yd_c00483{bottom:454.286700px;}
.yc_c00483{bottom:475.292700px;}
.yb_c00483{bottom:496.298700px;}
.ya_c00483{bottom:544.304700px;}
.y9_c00483{bottom:565.310700px;}
.y8_c00483{bottom:586.316700px;}
.y7_c00483{bottom:643.322700px;}
.y6_c00483{bottom:664.328700px;}
.y5_c00483{bottom:685.334700px;}
.y4_c00483{bottom:706.340700px;}
.y3_c00483{bottom:752.834700px;}
.y1b_c00483{bottom:886.334700px;}
.y1a_c00483{bottom:916.334700px;}
.y19_c00483{bottom:946.334700px;}
.y18_c00483{bottom:976.334700px;}
.y17_c00483{bottom:1006.334700px;}
.y2_c00483{bottom:1093.526700px;}
.h2_c00483{height:54.000000px;}
.h5_c00483{height:64.800000px;}
.h4_c00483{height:66.456000px;}
.h6_c00483{height:112.200000px;}
.h3_c00483{height:324.000000px;}
.h0_c00483{height:1262.835000px;}
.h1_c00483{height:1263.000000px;}
.w0_c00483{width:892.914000px;}
.w1_c00483{width:893.250000px;}
.x0_c00483{left:0.000000px;}
.x2_c00483{left:81.290250px;}
.x3_c00483{left:82.393650px;}
.x5_c00483{left:112.287450px;}
.x4_c00483{left:127.393650px;}
.x1_c00483{left:784.763850px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls3_c00483{letter-spacing:-0.256000pt;}
.ls2_c00483{letter-spacing:0.000000pt;}
.ls0_c00483{letter-spacing:0.768000pt;}
.ls1_c00483{letter-spacing:1.066667pt;}
.ws2_c00483{word-spacing:-11.648000pt;}
.ws1_c00483{word-spacing:-10.624000pt;}
.ws0_c00483{word-spacing:-9.066667pt;}
.wsb_c00483{word-spacing:-7.232000pt;}
.ws6_c00483{word-spacing:-6.848000pt;}
.wsc_c00483{word-spacing:-6.400000pt;}
.wsa_c00483{word-spacing:-6.336000pt;}
.ws7_c00483{word-spacing:-4.736000pt;}
.ws4_c00483{word-spacing:-4.608000pt;}
.ws5_c00483{word-spacing:-3.072000pt;}
.ws9_c00483{word-spacing:-1.280000pt;}
.ws3_c00483{word-spacing:0.000000pt;}
.ws8_c00483{word-spacing:0.256000pt;}
._0_c00483{margin-left:-426.966400pt;}
._a_c00483{margin-left:-10.368000pt;}
._9_c00483{margin-left:-8.640000pt;}
._8_c00483{margin-left:-7.232000pt;}
._5_c00483{margin-left:-5.760000pt;}
._1_c00483{margin-left:-3.733333pt;}
._3_c00483{margin-left:-2.368000pt;}
._2_c00483{margin-left:-1.280000pt;}
._4_c00483{width:0.960000pt;}
._6_c00483{width:3.072000pt;}
._7_c00483{width:7.232000pt;}
.fs1_c00483{font-size:37.333333pt;}
.fs0_c00483{font-size:53.333333pt;}
.fs3_c00483{font-size:64.000000pt;}
.fs4_c00483{font-size:106.666667pt;}
.fs2_c00483{font-size:320.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y1_c00483{bottom:36.666667pt;}
.y16_c00483{bottom:163.762400pt;}
.y15_c00483{bottom:182.434400pt;}
.y14_c00483{bottom:201.106400pt;}
.y13_c00483{bottom:243.778400pt;}
.y12_c00483{bottom:262.450400pt;}
.y11_c00483{bottom:281.122400pt;}
.y10_c00483{bottom:323.794400pt;}
.yf_c00483{bottom:342.466400pt;}
.ye_c00483{bottom:361.138400pt;}
.yd_c00483{bottom:403.810400pt;}
.yc_c00483{bottom:422.482400pt;}
.yb_c00483{bottom:441.154400pt;}
.ya_c00483{bottom:483.826400pt;}
.y9_c00483{bottom:502.498400pt;}
.y8_c00483{bottom:521.170400pt;}
.y7_c00483{bottom:571.842400pt;}
.y6_c00483{bottom:590.514400pt;}
.y5_c00483{bottom:609.186400pt;}
.y4_c00483{bottom:627.858400pt;}
.y3_c00483{bottom:669.186400pt;}
.y1b_c00483{bottom:787.853067pt;}
.y1a_c00483{bottom:814.519733pt;}
.y19_c00483{bottom:841.186400pt;}
.y18_c00483{bottom:867.853067pt;}
.y17_c00483{bottom:894.519733pt;}
.y2_c00483{bottom:972.023733pt;}
.h2_c00483{height:48.000000pt;}
.h5_c00483{height:57.600000pt;}
.h4_c00483{height:59.072000pt;}
.h6_c00483{height:99.733333pt;}
.h3_c00483{height:288.000000pt;}
.h0_c00483{height:1122.520000pt;}
.h1_c00483{height:1122.666667pt;}
.w0_c00483{width:793.701333pt;}
.w1_c00483{width:794.000000pt;}
.x0_c00483{left:0.000000pt;}
.x2_c00483{left:72.258000pt;}
.x3_c00483{left:73.238800pt;}
.x5_c00483{left:99.811067pt;}
.x4_c00483{left:113.238800pt;}
.x1_c00483{left:697.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.160000;font-style:normal;font-weight:normal;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_9199441f23763687eab2a311.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.199000;font-style:normal;font-weight:normal;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_af4bcd7e1a95f3a996a2c5b9.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00484;src:url('chunks/assets/font_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:1.024000;font-style: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);}
.m1_c00484{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls5_c00484{letter-spacing:-0.540000px;}
.ls4_c00484{letter-spacing:0.000000px;}
.ls0_c00484{letter-spacing:0.720000px;}
.ls1_c00484{letter-spacing:0.840000px;}
.ls3_c00484{letter-spacing:1.500000px;}
.ls2_c00484{letter-spacing:1.650000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00484{word-spacing:-21.060000px;}
.ws2_c00484{word-spacing:-17.640000px;}
.ws0_c00484{word-spacing:-10.200000px;}
.wsd_c00484{word-spacing:-3.456000px;}
.ws10_c00484{word-spacing:-1.500000px;}
.wsc_c00484{word-spacing:-1.080000px;}
.ws4_c00484{word-spacing:-0.840000px;}
.wsf_c00484{word-spacing:-0.720000px;}
.wse_c00484{word-spacing:-0.360000px;}
.ws3_c00484{word-spacing:0.000000px;}
.ws7_c00484{word-spacing:0.720000px;}
.ws9_c00484{word-spacing:2.808000px;}
.wsb_c00484{word-spacing:4.464000px;}
.ws8_c00484{word-spacing:4.896000px;}
.ws6_c00484{word-spacing:8.856000px;}
.ws5_c00484{word-spacing:10.152000px;}
.wsa_c00484{word-spacing:10.296000px;}
._0_c00484{margin-left:-480.336600px;}
._4_c00484{margin-left:-7.552800px;}
._1_c00484{margin-left:-4.200000px;}
._2_c00484{margin-left:-1.440000px;}
._3_c00484{width:1.476000px;}
.fc3_c00484{color:rgb(32,32,32);}
.fc2_c00484{color:rgb(233,83,14);}
.fc1_c00484{color:rgb(232,86,17);}
.fc4_c00484{color:rgb(157,157,156);}
.fc0_c00484{color:rgb(60,60,59);}
.fs1_c00484{font-size:42.000000px;}
.fs0_c00484{font-size:60.000000px;}
.fs5_c00484{font-size:66.000000px;}
.fs4_c00484{font-size:72.000000px;}
.fs3_c00484{font-size:84.000000px;}
.fs2_c00484{font-size:108.000000px;}
.y0_c00484{bottom:0.000000px;}
.y1_c00484{bottom:41.250000px;}
.y12_c00484{bottom:256.304700px;}
.y11_c00484{bottom:286.310700px;}
.y10_c00484{bottom:316.316700px;}
.yf_c00484{bottom:346.322700px;}
.ye_c00484{bottom:376.328700px;}
.yd_c00484{bottom:406.334700px;}
.yc_c00484{bottom:466.334700px;}
.yb_c00484{bottom:556.322700px;}
.ya_c00484{bottom:586.328700px;}
.y9_c00484{bottom:616.334700px;}
.y19_c00484{bottom:646.334700px;}
.y8_c00484{bottom:676.334700px;}
.y18_c00484{bottom:706.334700px;}
.y17_c00484{bottom:736.334700px;}
.y7_c00484{bottom:766.316700px;}
.y16_c00484{bottom:766.334700px;}
.y6_c00484{bottom:796.322700px;}
.y15_c00484{bottom:796.334700px;}
.y5_c00484{bottom:826.328700px;}
.y14_c00484{bottom:826.334700px;}
.y4_c00484{bottom:856.334700px;}
.y13_c00484{bottom:856.376100px;}
.y3_c00484{bottom:916.334700px;}
.y2_c00484{bottom:1006.334700px;}
.h6_c00484{height:50.292000px;}
.h2_c00484{height:54.000000px;}
.h5_c00484{height:64.800000px;}
.h4_c00484{height:78.540000px;}
.h3_c00484{height:100.980000px;}
.h0_c00484{height:1262.835000px;}
.h1_c00484{height:1263.000000px;}
.w0_c00484{width:892.914000px;}
.w1_c00484{width:893.250000px;}
.x0_c00484{left:0.000000px;}
.x2_c00484{left:82.500000px;}
.x3_c00484{left:90.000000px;}
.x4_c00484{left:106.500000px;}
.x5_c00484{left:675.611100px;}
.x1_c00484{left:785.813700px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls5_c00484{letter-spacing:-0.480000pt;}
.ls4_c00484{letter-spacing:0.000000pt;}
.ls0_c00484{letter-spacing:0.640000pt;}
.ls1_c00484{letter-spacing:0.746667pt;}
.ls3_c00484{letter-spacing:1.333333pt;}
.ls2_c00484{letter-spacing:1.466667pt;}
.ws1_c00484{word-spacing:-18.720000pt;}
.ws2_c00484{word-spacing:-15.680000pt;}
.ws0_c00484{word-spacing:-9.066667pt;}
.wsd_c00484{word-spacing:-3.072000pt;}
.ws10_c00484{word-spacing:-1.333333pt;}
.wsc_c00484{word-spacing:-0.960000pt;}
.ws4_c00484{word-spacing:-0.746667pt;}
.wsf_c00484{word-spacing:-0.640000pt;}
.wse_c00484{word-spacing:-0.320000pt;}
.ws3_c00484{word-spacing:0.000000pt;}
.ws7_c00484{word-spacing:0.640000pt;}
.ws9_c00484{word-spacing:2.496000pt;}
.wsb_c00484{word-spacing:3.968000pt;}
.ws8_c00484{word-spacing:4.352000pt;}
.ws6_c00484{word-spacing:7.872000pt;}
.ws5_c00484{word-spacing:9.024000pt;}
.wsa_c00484{word-spacing:9.152000pt;}
._0_c00484{margin-left:-426.965867pt;}
._4_c00484{margin-left:-6.713600pt;}
._1_c00484{margin-left:-3.733333pt;}
._2_c00484{margin-left:-1.280000pt;}
._3_c00484{width:1.312000pt;}
.fs1_c00484{font-size:37.333333pt;}
.fs0_c00484{font-size:53.333333pt;}
.fs5_c00484{font-size:58.666667pt;}
.fs4_c00484{font-size:64.000000pt;}
.fs3_c00484{font-size:74.666667pt;}
.fs2_c00484{font-size:96.000000pt;}
.y0_c00484{bottom:0.000000pt;}
.y1_c00484{bottom:36.666667pt;}
.y12_c00484{bottom:227.826400pt;}
.y11_c00484{bottom:254.498400pt;}
.y10_c00484{bottom:281.170400pt;}
.yf_c00484{bottom:307.842400pt;}
.ye_c00484{bottom:334.514400pt;}
.yd_c00484{bottom:361.186400pt;}
.yc_c00484{bottom:414.519733pt;}
.yb_c00484{bottom:494.509067pt;}
.ya_c00484{bottom:521.181067pt;}
.y9_c00484{bottom:547.853067pt;}
.y19_c00484{bottom:574.519733pt;}
.y8_c00484{bottom:601.186400pt;}
.y18_c00484{bottom:627.853067pt;}
.y17_c00484{bottom:654.519733pt;}
.y7_c00484{bottom:681.170400pt;}
.y16_c00484{bottom:681.186400pt;}
.y6_c00484{bottom:707.842400pt;}
.y15_c00484{bottom:707.853067pt;}
.y5_c00484{bottom:734.514400pt;}
.y14_c00484{bottom:734.519733pt;}
.y4_c00484{bottom:761.186400pt;}
.y13_c00484{bottom:761.223200pt;}
.y3_c00484{bottom:814.519733pt;}
.y2_c00484{bottom:894.519733pt;}
.h6_c00484{height:44.704000pt;}
.h2_c00484{height:48.000000pt;}
.h5_c00484{height:57.600000pt;}
.h4_c00484{height:69.813333pt;}
.h3_c00484{height:89.760000pt;}
.h0_c00484{height:1122.520000pt;}
.h1_c00484{height:1122.666667pt;}
.w0_c00484{width:793.701333pt;}
.w1_c00484{width:794.000000pt;}
.x0_c00484{left:0.000000pt;}
.x2_c00484{left:73.333333pt;}
.x3_c00484{left:80.000000pt;}
.x4_c00484{left:94.666667pt;}
.x5_c00484{left:600.543200pt;}
.x1_c00484{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.199000;font-style:normal;font-weight:normal;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_f15dbab3bdfa480db8d319f9.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00485;src:url('chunks/assets/font_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.161000;font-style: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);}
.m1_c00485{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.v1_c00485{vertical-align:12.000000px;}
.ls7_c00485{letter-spacing:-0.720000px;}
.ls5_c00485{letter-spacing:0.000000px;}
.ls2_c00485{letter-spacing:0.419400px;}
.ls1_c00485{letter-spacing:0.548400px;}
.ls3_c00485{letter-spacing:0.712800px;}
.ls0_c00485{letter-spacing:0.720000px;}
.ls4_c00485{letter-spacing:0.777600px;}
.ls6_c00485{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws13_c00485{word-spacing:-4.104000px;}
.ws12_c00485{word-spacing:-2.088000px;}
.ws18_c00485{word-spacing:-1.656000px;}
.ws17_c00485{word-spacing:-1.080000px;}
.ws15_c00485{word-spacing:-1.008000px;}
.ws2_c00485{word-spacing:-0.840000px;}
.ws7_c00485{word-spacing:-0.720000px;}
.ws14_c00485{word-spacing:-0.288000px;}
.ws1_c00485{word-spacing:0.000000px;}
.ws11_c00485{word-spacing:1.152000px;}
.ws5_c00485{word-spacing:1.224000px;}
.ws8_c00485{word-spacing:1.368000px;}
.ws4_c00485{word-spacing:1.656000px;}
.ws6_c00485{word-spacing:2.808000px;}
.ws16_c00485{word-spacing:3.312000px;}
.wsc_c00485{word-spacing:4.608000px;}
.wsb_c00485{word-spacing:5.904000px;}
.wse_c00485{word-spacing:7.416000px;}
.ws9_c00485{word-spacing:7.560000px;}
.wsf_c00485{word-spacing:7.776000px;}
.wsd_c00485{word-spacing:8.064000px;}
.ws10_c00485{word-spacing:8.424000px;}
.ws3_c00485{word-spacing:9.144000px;}
.wsa_c00485{word-spacing:16.776000px;}
._0_c00485{margin-left:-480.337200px;}
._5_c00485{margin-left:-5.764800px;}
._1_c00485{margin-left:-4.200000px;}
._7_c00485{margin-left:-2.685600px;}
._2_c00485{margin-left:-1.440000px;}
._3_c00485{width:1.440000px;}
._8_c00485{width:3.916800px;}
._6_c00485{width:5.616000px;}
._4_c00485{width:8.136000px;}
.fc2_c00485{color:rgb(32,32,32);}
.fc1_c00485{color:rgb(232,86,17);}
.fc0_c00485{color:rgb(60,60,59);}
.fs1_c00485{font-size:42.000000px;}
.fs0_c00485{font-size:60.000000px;}
.fs3_c00485{font-size:72.000000px;}
.fs2_c00485{font-size:84.000000px;}
.y0_c00485{bottom:0.000000px;}
.y1_c00485{bottom:41.250000px;}
.y14_c00485{bottom:346.304700px;}
.y13_c00485{bottom:376.310700px;}
.y12_c00485{bottom:406.316700px;}
.y11_c00485{bottom:436.322700px;}
.y10_c00485{bottom:466.328700px;}
.yf_c00485{bottom:496.334700px;}
.ye_c00485{bottom:556.334700px;}
.yd_c00485{bottom:646.274700px;}
.yc_c00485{bottom:676.280700px;}
.yb_c00485{bottom:706.286700px;}
.ya_c00485{bottom:736.292700px;}
.y9_c00485{bottom:766.298700px;}
.y8_c00485{bottom:796.304700px;}
.y7_c00485{bottom:826.310700px;}
.y6_c00485{bottom:856.316700px;}
.y5_c00485{bottom:886.322700px;}
.y4_c00485{bottom:916.328700px;}
.y3_c00485{bottom:946.334700px;}
.y2_c00485{bottom:1006.334700px;}
.h2_c00485{height:54.000000px;}
.h4_c00485{height:64.800000px;}
.h3_c00485{height:78.540000px;}
.h0_c00485{height:1262.835000px;}
.h1_c00485{height:1263.000000px;}
.w0_c00485{width:892.914000px;}
.w1_c00485{width:893.250000px;}
.x0_c00485{left:0.000000px;}
.x2_c00485{left:90.000000px;}
.x3_c00485{left:106.500000px;}
.x1_c00485{left:784.688850px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.v1_c00485{vertical-align:10.666667pt;}
.ls7_c00485{letter-spacing:-0.640000pt;}
.ls5_c00485{letter-spacing:0.000000pt;}
.ls2_c00485{letter-spacing:0.372800pt;}
.ls1_c00485{letter-spacing:0.487467pt;}
.ls3_c00485{letter-spacing:0.633600pt;}
.ls0_c00485{letter-spacing:0.640000pt;}
.ls4_c00485{letter-spacing:0.691200pt;}
.ls6_c00485{letter-spacing:0.746667pt;}
.ws0_c00485{word-spacing:-9.066667pt;}
.ws13_c00485{word-spacing:-3.648000pt;}
.ws12_c00485{word-spacing:-1.856000pt;}
.ws18_c00485{word-spacing:-1.472000pt;}
.ws17_c00485{word-spacing:-0.960000pt;}
.ws15_c00485{word-spacing:-0.896000pt;}
.ws2_c00485{word-spacing:-0.746667pt;}
.ws7_c00485{word-spacing:-0.640000pt;}
.ws14_c00485{word-spacing:-0.256000pt;}
.ws1_c00485{word-spacing:0.000000pt;}
.ws11_c00485{word-spacing:1.024000pt;}
.ws5_c00485{word-spacing:1.088000pt;}
.ws8_c00485{word-spacing:1.216000pt;}
.ws4_c00485{word-spacing:1.472000pt;}
.ws6_c00485{word-spacing:2.496000pt;}
.ws16_c00485{word-spacing:2.944000pt;}
.wsc_c00485{word-spacing:4.096000pt;}
.wsb_c00485{word-spacing:5.248000pt;}
.wse_c00485{word-spacing:6.592000pt;}
.ws9_c00485{word-spacing:6.720000pt;}
.wsf_c00485{word-spacing:6.912000pt;}
.wsd_c00485{word-spacing:7.168000pt;}
.ws10_c00485{word-spacing:7.488000pt;}
.ws3_c00485{word-spacing:8.128000pt;}
.wsa_c00485{word-spacing:14.912000pt;}
._0_c00485{margin-left:-426.966400pt;}
._5_c00485{margin-left:-5.124267pt;}
._1_c00485{margin-left:-3.733333pt;}
._7_c00485{margin-left:-2.387200pt;}
._2_c00485{margin-left:-1.280000pt;}
._3_c00485{width:1.280000pt;}
._8_c00485{width:3.481600pt;}
._6_c00485{width:4.992000pt;}
._4_c00485{width:7.232000pt;}
.fs1_c00485{font-size:37.333333pt;}
.fs0_c00485{font-size:53.333333pt;}
.fs3_c00485{font-size:64.000000pt;}
.fs2_c00485{font-size:74.666667pt;}
.y0_c00485{bottom:0.000000pt;}
.y1_c00485{bottom:36.666667pt;}
.y14_c00485{bottom:307.826400pt;}
.y13_c00485{bottom:334.498400pt;}
.y12_c00485{bottom:361.170400pt;}
.y11_c00485{bottom:387.842400pt;}
.y10_c00485{bottom:414.514400pt;}
.yf_c00485{bottom:441.186400pt;}
.ye_c00485{bottom:494.519733pt;}
.yd_c00485{bottom:574.466400pt;}
.yc_c00485{bottom:601.138400pt;}
.yb_c00485{bottom:627.810400pt;}
.ya_c00485{bottom:654.482400pt;}
.y9_c00485{bottom:681.154400pt;}
.y8_c00485{bottom:707.826400pt;}
.y7_c00485{bottom:734.498400pt;}
.y6_c00485{bottom:761.170400pt;}
.y5_c00485{bottom:787.842400pt;}
.y4_c00485{bottom:814.514400pt;}
.y3_c00485{bottom:841.186400pt;}
.y2_c00485{bottom:894.519733pt;}
.h2_c00485{height:48.000000pt;}
.h4_c00485{height:57.600000pt;}
.h3_c00485{height:69.813333pt;}
.h0_c00485{height:1122.520000pt;}
.h1_c00485{height:1122.666667pt;}
.w0_c00485{width:793.701333pt;}
.w1_c00485{width:794.000000pt;}
.x0_c00485{left:0.000000pt;}
.x2_c00485{left:80.000000pt;}
.x3_c00485{left:94.666667pt;}
.x1_c00485{left:697.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45f0146705d46c3af5096eb9.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.199000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00486;src:url('chunks/assets/font_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:1.024000;font-style: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);}
.m1_c00486{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls5_c00486{letter-spacing:-0.324000px;}
.ls4_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:0.720000px;}
.ls1_c00486{letter-spacing:0.840000px;}
.ls3_c00486{letter-spacing:1.500000px;}
.ls2_c00486{letter-spacing:1.650000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00486{word-spacing:-21.276000px;}
.ws2_c00486{word-spacing:-17.640000px;}
.ws3_c00486{word-spacing:-14.850000px;}
.ws4_c00486{word-spacing:-11.700000px;}
.ws0_c00486{word-spacing:-10.200000px;}
.ws9_c00486{word-spacing:-3.600000px;}
.ws8_c00486{word-spacing:-3.384000px;}
.ws13_c00486{word-spacing:-1.500000px;}
.ws6_c00486{word-spacing:-0.840000px;}
.ws11_c00486{word-spacing:-0.720000px;}
.wsc_c00486{word-spacing:-0.288000px;}
.ws5_c00486{word-spacing:0.000000px;}
.wsd_c00486{word-spacing:1.224000px;}
.ws7_c00486{word-spacing:3.816000px;}
.wsb_c00486{word-spacing:5.472000px;}
.ws10_c00486{word-spacing:6.624000px;}
.ws12_c00486{word-spacing:10.584000px;}
.wsf_c00486{word-spacing:11.016000px;}
.wsa_c00486{word-spacing:12.816000px;}
.wse_c00486{word-spacing:16.560000px;}
._0_c00486{margin-left:-480.336600px;}
._4_c00486{margin-left:-6.480000px;}
._1_c00486{margin-left:-4.200000px;}
._3_c00486{margin-left:-2.354400px;}
._2_c00486{margin-left:-1.134000px;}
._5_c00486{width:1.260000px;}
.fc3_c00486{color:rgb(32,32,32);}
.fc2_c00486{color:rgb(233,83,14);}
.fc1_c00486{color:rgb(232,86,17);}
.fc4_c00486{color:rgb(157,157,156);}
.fc0_c00486{color:rgb(60,60,59);}
.fs1_c00486{font-size:42.000000px;}
.fs0_c00486{font-size:60.000000px;}
.fs5_c00486{font-size:66.000000px;}
.fs4_c00486{font-size:72.000000px;}
.fs3_c00486{font-size:84.000000px;}
.fs2_c00486{font-size:108.000000px;}
.y0_c00486{bottom:0.000000px;}
.y1_c00486{bottom:41.250000px;}
.y12_c00486{bottom:256.304700px;}
.y11_c00486{bottom:286.310700px;}
.y10_c00486{bottom:316.316700px;}
.yf_c00486{bottom:346.322700px;}
.ye_c00486{bottom:376.328700px;}
.yd_c00486{bottom:406.334700px;}
.yc_c00486{bottom:466.334700px;}
.yb_c00486{bottom:556.322700px;}
.ya_c00486{bottom:586.328700px;}
.y9_c00486{bottom:616.334700px;}
.y19_c00486{bottom:646.334700px;}
.y8_c00486{bottom:676.334700px;}
.y18_c00486{bottom:706.334700px;}
.y17_c00486{bottom:736.334700px;}
.y7_c00486{bottom:766.316700px;}
.y16_c00486{bottom:766.334700px;}
.y6_c00486{bottom:796.322700px;}
.y15_c00486{bottom:796.334700px;}
.y5_c00486{bottom:826.328700px;}
.y14_c00486{bottom:826.334700px;}
.y4_c00486{bottom:856.334700px;}
.y13_c00486{bottom:856.376100px;}
.y3_c00486{bottom:916.334700px;}
.y2_c00486{bottom:1006.334700px;}
.h6_c00486{height:50.292000px;}
.h2_c00486{height:54.000000px;}
.h5_c00486{height:64.800000px;}
.h4_c00486{height:78.540000px;}
.h3_c00486{height:100.980000px;}
.h0_c00486{height:1262.835000px;}
.h1_c00486{height:1263.000000px;}
.w0_c00486{width:892.914000px;}
.w1_c00486{width:893.250000px;}
.x0_c00486{left:0.000000px;}
.x2_c00486{left:82.500000px;}
.x3_c00486{left:90.000000px;}
.x4_c00486{left:106.500000px;}
.x5_c00486{left:675.611100px;}
.x1_c00486{left:786.788700px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls5_c00486{letter-spacing:-0.288000pt;}
.ls4_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:0.640000pt;}
.ls1_c00486{letter-spacing:0.746667pt;}
.ls3_c00486{letter-spacing:1.333333pt;}
.ls2_c00486{letter-spacing:1.466667pt;}
.ws1_c00486{word-spacing:-18.912000pt;}
.ws2_c00486{word-spacing:-15.680000pt;}
.ws3_c00486{word-spacing:-13.200000pt;}
.ws4_c00486{word-spacing:-10.400000pt;}
.ws0_c00486{word-spacing:-9.066667pt;}
.ws9_c00486{word-spacing:-3.200000pt;}
.ws8_c00486{word-spacing:-3.008000pt;}
.ws13_c00486{word-spacing:-1.333333pt;}
.ws6_c00486{word-spacing:-0.746667pt;}
.ws11_c00486{word-spacing:-0.640000pt;}
.wsc_c00486{word-spacing:-0.256000pt;}
.ws5_c00486{word-spacing:0.000000pt;}
.wsd_c00486{word-spacing:1.088000pt;}
.ws7_c00486{word-spacing:3.392000pt;}
.wsb_c00486{word-spacing:4.864000pt;}
.ws10_c00486{word-spacing:5.888000pt;}
.ws12_c00486{word-spacing:9.408000pt;}
.wsf_c00486{word-spacing:9.792000pt;}
.wsa_c00486{word-spacing:11.392000pt;}
.wse_c00486{word-spacing:14.720000pt;}
._0_c00486{margin-left:-426.965867pt;}
._4_c00486{margin-left:-5.760000pt;}
._1_c00486{margin-left:-3.733333pt;}
._3_c00486{margin-left:-2.092800pt;}
._2_c00486{margin-left:-1.008000pt;}
._5_c00486{width:1.120000pt;}
.fs1_c00486{font-size:37.333333pt;}
.fs0_c00486{font-size:53.333333pt;}
.fs5_c00486{font-size:58.666667pt;}
.fs4_c00486{font-size:64.000000pt;}
.fs3_c00486{font-size:74.666667pt;}
.fs2_c00486{font-size:96.000000pt;}
.y0_c00486{bottom:0.000000pt;}
.y1_c00486{bottom:36.666667pt;}
.y12_c00486{bottom:227.826400pt;}
.y11_c00486{bottom:254.498400pt;}
.y10_c00486{bottom:281.170400pt;}
.yf_c00486{bottom:307.842400pt;}
.ye_c00486{bottom:334.514400pt;}
.yd_c00486{bottom:361.186400pt;}
.yc_c00486{bottom:414.519733pt;}
.yb_c00486{bottom:494.509067pt;}
.ya_c00486{bottom:521.181067pt;}
.y9_c00486{bottom:547.853067pt;}
.y19_c00486{bottom:574.519733pt;}
.y8_c00486{bottom:601.186400pt;}
.y18_c00486{bottom:627.853067pt;}
.y17_c00486{bottom:654.519733pt;}
.y7_c00486{bottom:681.170400pt;}
.y16_c00486{bottom:681.186400pt;}
.y6_c00486{bottom:707.842400pt;}
.y15_c00486{bottom:707.853067pt;}
.y5_c00486{bottom:734.514400pt;}
.y14_c00486{bottom:734.519733pt;}
.y4_c00486{bottom:761.186400pt;}
.y13_c00486{bottom:761.223200pt;}
.y3_c00486{bottom:814.519733pt;}
.y2_c00486{bottom:894.519733pt;}
.h6_c00486{height:44.704000pt;}
.h2_c00486{height:48.000000pt;}
.h5_c00486{height:57.600000pt;}
.h4_c00486{height:69.813333pt;}
.h3_c00486{height:89.760000pt;}
.h0_c00486{height:1122.520000pt;}
.h1_c00486{height:1122.666667pt;}
.w0_c00486{width:793.701333pt;}
.w1_c00486{width:794.000000pt;}
.x0_c00486{left:0.000000pt;}
.x2_c00486{left:73.333333pt;}
.x3_c00486{left:80.000000pt;}
.x4_c00486{left:94.666667pt;}
.x5_c00486{left:600.543200pt;}
.x1_c00486{left:699.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1988d25fbbfa24967e52e24f.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.199000;font-style:normal;font-weight:normal;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_6e95e1fd0717bb8daeab87ba.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00487;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00487{font-family:ff4_c00487;line-height:1.161000;font-style: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);}
.m1_c00487{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.v1_c00487{vertical-align:12.000000px;}
.ls6_c00487{letter-spacing:0.000000px;}
.ls2_c00487{letter-spacing:0.419400px;}
.ls3_c00487{letter-spacing:0.590400px;}
.ls5_c00487{letter-spacing:0.648000px;}
.ls4_c00487{letter-spacing:0.712800px;}
.ls0_c00487{letter-spacing:0.720000px;}
.ls1_c00487{letter-spacing:0.733800px;}
.ls7_c00487{letter-spacing:0.840000px;}
.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:-10.200000px;}
.ws12_c00487{word-spacing:-6.624000px;}
.ws6_c00487{word-spacing:-1.440000px;}
.ws2_c00487{word-spacing:-0.840000px;}
.ws4_c00487{word-spacing:-0.720000px;}
.wsc_c00487{word-spacing:-0.576000px;}
.wse_c00487{word-spacing:-0.288000px;}
.ws1_c00487{word-spacing:0.000000px;}
.ws11_c00487{word-spacing:0.720000px;}
.ws7_c00487{word-spacing:1.080000px;}
.ws9_c00487{word-spacing:1.728000px;}
.wsd_c00487{word-spacing:1.872000px;}
.ws8_c00487{word-spacing:2.016000px;}
.ws13_c00487{word-spacing:2.160000px;}
.ws5_c00487{word-spacing:3.672000px;}
.wsf_c00487{word-spacing:3.888000px;}
.wsb_c00487{word-spacing:4.464000px;}
.ws3_c00487{word-spacing:4.536000px;}
.ws10_c00487{word-spacing:5.328000px;}
.wsa_c00487{word-spacing:6.336000px;}
._0_c00487{margin-left:-480.337200px;}
._4_c00487{margin-left:-7.574400px;}
._1_c00487{margin-left:-4.200000px;}
._7_c00487{margin-left:-2.880000px;}
._3_c00487{margin-left:-1.440000px;}
._6_c00487{width:1.080000px;}
._5_c00487{width:2.664000px;}
._2_c00487{width:4.896000px;}
.fc2_c00487{color:rgb(32,32,32);}
.fc1_c00487{color:rgb(232,86,17);}
.fc0_c00487{color:rgb(60,60,59);}
.fs1_c00487{font-size:42.000000px;}
.fs0_c00487{font-size:60.000000px;}
.fs3_c00487{font-size:72.000000px;}
.fs2_c00487{font-size:84.000000px;}
.y0_c00487{bottom:0.000000px;}
.y1_c00487{bottom:41.250000px;}
.y12_c00487{bottom:406.310700px;}
.y11_c00487{bottom:436.316700px;}
.y10_c00487{bottom:466.322700px;}
.yf_c00487{bottom:496.328700px;}
.ye_c00487{bottom:526.334700px;}
.yd_c00487{bottom:586.334700px;}
.yc_c00487{bottom:676.280700px;}
.yb_c00487{bottom:706.286700px;}
.ya_c00487{bottom:736.292700px;}
.y9_c00487{bottom:766.298700px;}
.y8_c00487{bottom:796.304700px;}
.y7_c00487{bottom:826.310700px;}
.y6_c00487{bottom:856.316700px;}
.y5_c00487{bottom:886.322700px;}
.y4_c00487{bottom:916.328700px;}
.y3_c00487{bottom:946.334700px;}
.y2_c00487{bottom:1006.334700px;}
.h2_c00487{height:54.000000px;}
.h4_c00487{height:64.800000px;}
.h3_c00487{height:78.540000px;}
.h0_c00487{height:1262.835000px;}
.h1_c00487{height:1263.000000px;}
.w0_c00487{width:892.914000px;}
.w1_c00487{width:893.250000px;}
.x0_c00487{left:0.000000px;}
.x2_c00487{left:90.000000px;}
.x3_c00487{left:106.500000px;}
.x1_c00487{left:784.763850px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.v1_c00487{vertical-align:10.666667pt;}
.ls6_c00487{letter-spacing:0.000000pt;}
.ls2_c00487{letter-spacing:0.372800pt;}
.ls3_c00487{letter-spacing:0.524800pt;}
.ls5_c00487{letter-spacing:0.576000pt;}
.ls4_c00487{letter-spacing:0.633600pt;}
.ls0_c00487{letter-spacing:0.640000pt;}
.ls1_c00487{letter-spacing:0.652267pt;}
.ls7_c00487{letter-spacing:0.746667pt;}
.ws0_c00487{word-spacing:-9.066667pt;}
.ws12_c00487{word-spacing:-5.888000pt;}
.ws6_c00487{word-spacing:-1.280000pt;}
.ws2_c00487{word-spacing:-0.746667pt;}
.ws4_c00487{word-spacing:-0.640000pt;}
.wsc_c00487{word-spacing:-0.512000pt;}
.wse_c00487{word-spacing:-0.256000pt;}
.ws1_c00487{word-spacing:0.000000pt;}
.ws11_c00487{word-spacing:0.640000pt;}
.ws7_c00487{word-spacing:0.960000pt;}
.ws9_c00487{word-spacing:1.536000pt;}
.wsd_c00487{word-spacing:1.664000pt;}
.ws8_c00487{word-spacing:1.792000pt;}
.ws13_c00487{word-spacing:1.920000pt;}
.ws5_c00487{word-spacing:3.264000pt;}
.wsf_c00487{word-spacing:3.456000pt;}
.wsb_c00487{word-spacing:3.968000pt;}
.ws3_c00487{word-spacing:4.032000pt;}
.ws10_c00487{word-spacing:4.736000pt;}
.wsa_c00487{word-spacing:5.632000pt;}
._0_c00487{margin-left:-426.966400pt;}
._4_c00487{margin-left:-6.732800pt;}
._1_c00487{margin-left:-3.733333pt;}
._7_c00487{margin-left:-2.560000pt;}
._3_c00487{margin-left:-1.280000pt;}
._6_c00487{width:0.960000pt;}
._5_c00487{width:2.368000pt;}
._2_c00487{width:4.352000pt;}
.fs1_c00487{font-size:37.333333pt;}
.fs0_c00487{font-size:53.333333pt;}
.fs3_c00487{font-size:64.000000pt;}
.fs2_c00487{font-size:74.666667pt;}
.y0_c00487{bottom:0.000000pt;}
.y1_c00487{bottom:36.666667pt;}
.y12_c00487{bottom:361.165067pt;}
.y11_c00487{bottom:387.837067pt;}
.y10_c00487{bottom:414.509067pt;}
.yf_c00487{bottom:441.181067pt;}
.ye_c00487{bottom:467.853067pt;}
.yd_c00487{bottom:521.186400pt;}
.yc_c00487{bottom:601.138400pt;}
.yb_c00487{bottom:627.810400pt;}
.ya_c00487{bottom:654.482400pt;}
.y9_c00487{bottom:681.154400pt;}
.y8_c00487{bottom:707.826400pt;}
.y7_c00487{bottom:734.498400pt;}
.y6_c00487{bottom:761.170400pt;}
.y5_c00487{bottom:787.842400pt;}
.y4_c00487{bottom:814.514400pt;}
.y3_c00487{bottom:841.186400pt;}
.y2_c00487{bottom:894.519733pt;}
.h2_c00487{height:48.000000pt;}
.h4_c00487{height:57.600000pt;}
.h3_c00487{height:69.813333pt;}
.h0_c00487{height:1122.520000pt;}
.h1_c00487{height:1122.666667pt;}
.w0_c00487{width:793.701333pt;}
.w1_c00487{width:794.000000pt;}
.x0_c00487{left:0.000000pt;}
.x2_c00487{left:80.000000pt;}
.x3_c00487{left:94.666667pt;}
.x1_c00487{left:697.567867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00488;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00488;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00488{font-family:ff5_c00488;line-height:1.155000;font-style: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);}
.m1_c00488{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls2_c00488{letter-spacing:0.000000px;}
.ls0_c00488{letter-spacing:0.864000px;}
.ls1_c00488{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00488{word-spacing:-13.104000px;}
.ws0_c00488{word-spacing:-10.200000px;}
.ws6_c00488{word-spacing:-6.720000px;}
.ws3_c00488{word-spacing:-3.528000px;}
.ws4_c00488{word-spacing:-0.864000px;}
.ws2_c00488{word-spacing:0.000000px;}
.ws5_c00488{word-spacing:0.288000px;}
._0_c00488{margin-left:-480.337200px;}
._6_c00488{margin-left:-17.400000px;}
._3_c00488{margin-left:-6.465600px;}
._1_c00488{margin-left:-4.200000px;}
._4_c00488{margin-left:-3.153600px;}
._2_c00488{margin-left:-1.447200px;}
._5_c00488{width:7.473600px;}
.fc3_c00488{color:rgb(255,255,255);}
.fc2_c00488{color:rgb(233,83,14);}
.fc1_c00488{color:rgb(232,86,17);}
.fc0_c00488{color:rgb(60,60,59);}
.fs1_c00488{font-size:42.000000px;}
.fs0_c00488{font-size:60.000000px;}
.fs3_c00488{font-size:72.000000px;}
.fs4_c00488{font-size:120.000000px;}
.fs2_c00488{font-size:360.000000px;}
.y0_c00488{bottom:0.000000px;}
.y1_c00488{bottom:41.250000px;}
.y9_c00488{bottom:574.310700px;}
.y8_c00488{bottom:595.316700px;}
.y7_c00488{bottom:616.322700px;}
.y6_c00488{bottom:664.328700px;}
.y5_c00488{bottom:685.334700px;}
.y4_c00488{bottom:706.340700px;}
.y3_c00488{bottom:752.834700px;}
.yc_c00488{bottom:946.334700px;}
.yb_c00488{bottom:976.334700px;}
.ya_c00488{bottom:1006.334700px;}
.y2_c00488{bottom:1093.526700px;}
.h2_c00488{height:54.000000px;}
.h5_c00488{height:64.800000px;}
.h4_c00488{height:66.456000px;}
.h6_c00488{height:112.200000px;}
.h3_c00488{height:324.000000px;}
.h0_c00488{height:1262.835000px;}
.h1_c00488{height:1263.000000px;}
.w0_c00488{width:892.914000px;}
.w1_c00488{width:893.250000px;}
.x0_c00488{left:0.000000px;}
.x2_c00488{left:81.290250px;}
.x3_c00488{left:82.393650px;}
.x5_c00488{left:112.287450px;}
.x4_c00488{left:127.393650px;}
.x1_c00488{left:784.688850px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls2_c00488{letter-spacing:0.000000pt;}
.ls0_c00488{letter-spacing:0.768000pt;}
.ls1_c00488{letter-spacing:1.066667pt;}
.ws1_c00488{word-spacing:-11.648000pt;}
.ws0_c00488{word-spacing:-9.066667pt;}
.ws6_c00488{word-spacing:-5.973333pt;}
.ws3_c00488{word-spacing:-3.136000pt;}
.ws4_c00488{word-spacing:-0.768000pt;}
.ws2_c00488{word-spacing:0.000000pt;}
.ws5_c00488{word-spacing:0.256000pt;}
._0_c00488{margin-left:-426.966400pt;}
._6_c00488{margin-left:-15.466667pt;}
._3_c00488{margin-left:-5.747200pt;}
._1_c00488{margin-left:-3.733333pt;}
._4_c00488{margin-left:-2.803200pt;}
._2_c00488{margin-left:-1.286400pt;}
._5_c00488{width:6.643200pt;}
.fs1_c00488{font-size:37.333333pt;}
.fs0_c00488{font-size:53.333333pt;}
.fs3_c00488{font-size:64.000000pt;}
.fs4_c00488{font-size:106.666667pt;}
.fs2_c00488{font-size:320.000000pt;}
.y0_c00488{bottom:0.000000pt;}
.y1_c00488{bottom:36.666667pt;}
.y9_c00488{bottom:510.498400pt;}
.y8_c00488{bottom:529.170400pt;}
.y7_c00488{bottom:547.842400pt;}
.y6_c00488{bottom:590.514400pt;}
.y5_c00488{bottom:609.186400pt;}
.y4_c00488{bottom:627.858400pt;}
.y3_c00488{bottom:669.186400pt;}
.yc_c00488{bottom:841.186400pt;}
.yb_c00488{bottom:867.853067pt;}
.ya_c00488{bottom:894.519733pt;}
.y2_c00488{bottom:972.023733pt;}
.h2_c00488{height:48.000000pt;}
.h5_c00488{height:57.600000pt;}
.h4_c00488{height:59.072000pt;}
.h6_c00488{height:99.733333pt;}
.h3_c00488{height:288.000000pt;}
.h0_c00488{height:1122.520000pt;}
.h1_c00488{height:1122.666667pt;}
.w0_c00488{width:793.701333pt;}
.w1_c00488{width:794.000000pt;}
.x0_c00488{left:0.000000pt;}
.x2_c00488{left:72.258000pt;}
.x3_c00488{left:73.238800pt;}
.x5_c00488{left:99.811067pt;}
.x4_c00488{left:113.238800pt;}
.x1_c00488{left:697.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7066d40b63196b4d00927794.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00489;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:1.161000;font-style: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);}
.m1_c00489{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls4_c00489{letter-spacing:-0.540000px;}
.ls3_c00489{letter-spacing:0.000000px;}
.ls0_c00489{letter-spacing:0.720000px;}
.ls2_c00489{letter-spacing:1.500000px;}
.ls1_c00489{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00489{word-spacing:-21.060000px;}
.ws0_c00489{word-spacing:-10.200000px;}
.wsd_c00489{word-spacing:-3.456000px;}
.ws11_c00489{word-spacing:-2.376000px;}
.ws1e_c00489{word-spacing:-1.500000px;}
.ws5_c00489{word-spacing:-1.224000px;}
.ws1a_c00489{word-spacing:-0.576000px;}
.ws2_c00489{word-spacing:0.000000px;}
.ws19_c00489{word-spacing:0.288000px;}
.ws18_c00489{word-spacing:0.576000px;}
.ws3_c00489{word-spacing:0.648000px;}
.ws4_c00489{word-spacing:2.016000px;}
.ws14_c00489{word-spacing:2.160000px;}
.ws12_c00489{word-spacing:2.736000px;}
.ws7_c00489{word-spacing:2.880000px;}
.ws8_c00489{word-spacing:3.312000px;}
.ws1d_c00489{word-spacing:3.600000px;}
.ws16_c00489{word-spacing:3.816000px;}
.ws1b_c00489{word-spacing:4.320000px;}
.wse_c00489{word-spacing:5.976000px;}
.wsb_c00489{word-spacing:6.984000px;}
.ws13_c00489{word-spacing:7.272000px;}
.ws6_c00489{word-spacing:7.344000px;}
.ws9_c00489{word-spacing:7.560000px;}
.wsf_c00489{word-spacing:8.064000px;}
.ws10_c00489{word-spacing:9.576000px;}
.ws17_c00489{word-spacing:10.152000px;}
.ws1c_c00489{word-spacing:10.224000px;}
.ws15_c00489{word-spacing:18.000000px;}
.wsa_c00489{word-spacing:19.728000px;}
.wsc_c00489{word-spacing:21.456000px;}
._0_c00489{margin-left:-480.336600px;}
._4_c00489{margin-left:-10.188000px;}
._1_c00489{margin-left:-4.200000px;}
._3_c00489{margin-left:-3.096000px;}
._2_c00489{margin-left:-1.440000px;}
.fc3_c00489{color:rgb(32,32,32);}
.fc2_c00489{color:rgb(233,83,14);}
.fc1_c00489{color:rgb(232,86,17);}
.fc4_c00489{color:rgb(157,157,156);}
.fc0_c00489{color:rgb(60,60,59);}
.fs1_c00489{font-size:42.000000px;}
.fs0_c00489{font-size:60.000000px;}
.fs4_c00489{font-size:66.000000px;}
.fs3_c00489{font-size:72.000000px;}
.fs2_c00489{font-size:108.000000px;}
.y0_c00489{bottom:0.000000px;}
.y1_c00489{bottom:41.250000px;}
.y1f_c00489{bottom:76.178700px;}
.y1e_c00489{bottom:106.184700px;}
.y1d_c00489{bottom:136.190700px;}
.y1c_c00489{bottom:166.196700px;}
.y1b_c00489{bottom:196.202700px;}
.y1a_c00489{bottom:226.208700px;}
.y19_c00489{bottom:256.214700px;}
.y18_c00489{bottom:286.220700px;}
.y17_c00489{bottom:316.226700px;}
.y16_c00489{bottom:346.232700px;}
.y15_c00489{bottom:376.238700px;}
.y14_c00489{bottom:406.244700px;}
.y13_c00489{bottom:436.250700px;}
.y12_c00489{bottom:466.256700px;}
.y11_c00489{bottom:496.262700px;}
.y10_c00489{bottom:526.268700px;}
.yf_c00489{bottom:556.274700px;}
.ye_c00489{bottom:586.280700px;}
.yd_c00489{bottom:616.286700px;}
.yc_c00489{bottom:676.280700px;}
.yb_c00489{bottom:706.286700px;}
.ya_c00489{bottom:736.292700px;}
.y9_c00489{bottom:766.298700px;}
.y26_c00489{bottom:766.334700px;}
.y8_c00489{bottom:796.304700px;}
.y25_c00489{bottom:796.334700px;}
.y7_c00489{bottom:826.310700px;}
.y24_c00489{bottom:826.334700px;}
.y6_c00489{bottom:856.316700px;}
.y23_c00489{bottom:856.334700px;}
.y5_c00489{bottom:886.322700px;}
.y22_c00489{bottom:886.334700px;}
.y4_c00489{bottom:916.328700px;}
.y21_c00489{bottom:916.334700px;}
.y3_c00489{bottom:946.334700px;}
.y20_c00489{bottom:946.376100px;}
.y2_c00489{bottom:1006.334700px;}
.h5_c00489{height:50.292000px;}
.h2_c00489{height:54.000000px;}
.h4_c00489{height:64.800000px;}
.h3_c00489{height:100.980000px;}
.h0_c00489{height:1262.835000px;}
.h1_c00489{height:1263.000000px;}
.w0_c00489{width:892.914000px;}
.w1_c00489{width:893.250000px;}
.x0_c00489{left:0.000000px;}
.x2_c00489{left:82.500000px;}
.x3_c00489{left:106.500000px;}
.x4_c00489{left:675.611100px;}
.x1_c00489{left:784.628700px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls4_c00489{letter-spacing:-0.480000pt;}
.ls3_c00489{letter-spacing:0.000000pt;}
.ls0_c00489{letter-spacing:0.640000pt;}
.ls2_c00489{letter-spacing:1.333333pt;}
.ls1_c00489{letter-spacing:1.466667pt;}
.ws1_c00489{word-spacing:-18.720000pt;}
.ws0_c00489{word-spacing:-9.066667pt;}
.wsd_c00489{word-spacing:-3.072000pt;}
.ws11_c00489{word-spacing:-2.112000pt;}
.ws1e_c00489{word-spacing:-1.333333pt;}
.ws5_c00489{word-spacing:-1.088000pt;}
.ws1a_c00489{word-spacing:-0.512000pt;}
.ws2_c00489{word-spacing:0.000000pt;}
.ws19_c00489{word-spacing:0.256000pt;}
.ws18_c00489{word-spacing:0.512000pt;}
.ws3_c00489{word-spacing:0.576000pt;}
.ws4_c00489{word-spacing:1.792000pt;}
.ws14_c00489{word-spacing:1.920000pt;}
.ws12_c00489{word-spacing:2.432000pt;}
.ws7_c00489{word-spacing:2.560000pt;}
.ws8_c00489{word-spacing:2.944000pt;}
.ws1d_c00489{word-spacing:3.200000pt;}
.ws16_c00489{word-spacing:3.392000pt;}
.ws1b_c00489{word-spacing:3.840000pt;}
.wse_c00489{word-spacing:5.312000pt;}
.wsb_c00489{word-spacing:6.208000pt;}
.ws13_c00489{word-spacing:6.464000pt;}
.ws6_c00489{word-spacing:6.528000pt;}
.ws9_c00489{word-spacing:6.720000pt;}
.wsf_c00489{word-spacing:7.168000pt;}
.ws10_c00489{word-spacing:8.512000pt;}
.ws17_c00489{word-spacing:9.024000pt;}
.ws1c_c00489{word-spacing:9.088000pt;}
.ws15_c00489{word-spacing:16.000000pt;}
.wsa_c00489{word-spacing:17.536000pt;}
.wsc_c00489{word-spacing:19.072000pt;}
._0_c00489{margin-left:-426.965867pt;}
._4_c00489{margin-left:-9.056000pt;}
._1_c00489{margin-left:-3.733333pt;}
._3_c00489{margin-left:-2.752000pt;}
._2_c00489{margin-left:-1.280000pt;}
.fs1_c00489{font-size:37.333333pt;}
.fs0_c00489{font-size:53.333333pt;}
.fs4_c00489{font-size:58.666667pt;}
.fs3_c00489{font-size:64.000000pt;}
.fs2_c00489{font-size:96.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y1_c00489{bottom:36.666667pt;}
.y1f_c00489{bottom:67.714400pt;}
.y1e_c00489{bottom:94.386400pt;}
.y1d_c00489{bottom:121.058400pt;}
.y1c_c00489{bottom:147.730400pt;}
.y1b_c00489{bottom:174.402400pt;}
.y1a_c00489{bottom:201.074400pt;}
.y19_c00489{bottom:227.746400pt;}
.y18_c00489{bottom:254.418400pt;}
.y17_c00489{bottom:281.090400pt;}
.y16_c00489{bottom:307.762400pt;}
.y15_c00489{bottom:334.434400pt;}
.y14_c00489{bottom:361.106400pt;}
.y13_c00489{bottom:387.778400pt;}
.y12_c00489{bottom:414.450400pt;}
.y11_c00489{bottom:441.122400pt;}
.y10_c00489{bottom:467.794400pt;}
.yf_c00489{bottom:494.466400pt;}
.ye_c00489{bottom:521.138400pt;}
.yd_c00489{bottom:547.810400pt;}
.yc_c00489{bottom:601.138400pt;}
.yb_c00489{bottom:627.810400pt;}
.ya_c00489{bottom:654.482400pt;}
.y9_c00489{bottom:681.154400pt;}
.y26_c00489{bottom:681.186400pt;}
.y8_c00489{bottom:707.826400pt;}
.y25_c00489{bottom:707.853067pt;}
.y7_c00489{bottom:734.498400pt;}
.y24_c00489{bottom:734.519733pt;}
.y6_c00489{bottom:761.170400pt;}
.y23_c00489{bottom:761.186400pt;}
.y5_c00489{bottom:787.842400pt;}
.y22_c00489{bottom:787.853067pt;}
.y4_c00489{bottom:814.514400pt;}
.y21_c00489{bottom:814.519733pt;}
.y3_c00489{bottom:841.186400pt;}
.y20_c00489{bottom:841.223200pt;}
.y2_c00489{bottom:894.519733pt;}
.h5_c00489{height:44.704000pt;}
.h2_c00489{height:48.000000pt;}
.h4_c00489{height:57.600000pt;}
.h3_c00489{height:89.760000pt;}
.h0_c00489{height:1122.520000pt;}
.h1_c00489{height:1122.666667pt;}
.w0_c00489{width:793.701333pt;}
.w1_c00489{width:794.000000pt;}
.x0_c00489{left:0.000000pt;}
.x2_c00489{left:73.333333pt;}
.x3_c00489{left:94.666667pt;}
.x4_c00489{left:600.543200pt;}
.x1_c00489{left:697.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc04a28aa7b69d9b6e0497a8.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.160000;font-style:normal;font-weight:normal;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_312937e59709c31b80c006ca.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.024000;font-style:normal;font-weight:normal;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_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls4_c00490{letter-spacing:-0.324000px;}
.ls3_c00490{letter-spacing:0.000000px;}
.ls0_c00490{letter-spacing:0.720000px;}
.ls2_c00490{letter-spacing:1.500000px;}
.ls1_c00490{letter-spacing:1.650000px;}
.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:-21.276000px;}
.ws2_c00490{word-spacing:-14.850000px;}
.ws0_c00490{word-spacing:-10.200000px;}
.ws1a_c00490{word-spacing:-1.656000px;}
.ws1c_c00490{word-spacing:-1.500000px;}
.wsa_c00490{word-spacing:-1.296000px;}
.ws12_c00490{word-spacing:-0.936000px;}
.ws18_c00490{word-spacing:-0.216000px;}
.ws3_c00490{word-spacing:0.000000px;}
.wse_c00490{word-spacing:0.792000px;}
.wsf_c00490{word-spacing:1.872000px;}
.ws10_c00490{word-spacing:1.944000px;}
.ws17_c00490{word-spacing:2.016000px;}
.ws9_c00490{word-spacing:3.528000px;}
.ws19_c00490{word-spacing:3.888000px;}
.wsb_c00490{word-spacing:4.968000px;}
.ws16_c00490{word-spacing:5.472000px;}
.ws11_c00490{word-spacing:5.544000px;}
.ws5_c00490{word-spacing:5.760000px;}
.ws7_c00490{word-spacing:6.768000px;}
.ws14_c00490{word-spacing:6.912000px;}
.ws1b_c00490{word-spacing:7.848000px;}
.wsd_c00490{word-spacing:8.352000px;}
.wsc_c00490{word-spacing:8.424000px;}
.ws8_c00490{word-spacing:9.072000px;}
.ws6_c00490{word-spacing:11.664000px;}
.ws4_c00490{word-spacing:15.480000px;}
.ws13_c00490{word-spacing:16.344000px;}
.ws15_c00490{word-spacing:21.960000px;}
._0_c00490{margin-left:-480.337200px;}
._4_c00490{margin-left:-6.667200px;}
._1_c00490{margin-left:-4.200000px;}
._3_c00490{margin-left:-2.152800px;}
._2_c00490{margin-left:-1.134000px;}
.fc3_c00490{color:rgb(32,32,32);}
.fc2_c00490{color:rgb(233,83,14);}
.fc1_c00490{color:rgb(232,86,17);}
.fc4_c00490{color:rgb(157,157,156);}
.fc0_c00490{color:rgb(60,60,59);}
.fs1_c00490{font-size:42.000000px;}
.fs0_c00490{font-size:60.000000px;}
.fs4_c00490{font-size:66.000000px;}
.fs3_c00490{font-size:72.000000px;}
.fs2_c00490{font-size:108.000000px;}
.y0_c00490{bottom:0.000000px;}
.y1_c00490{bottom:41.250000px;}
.y1d_c00490{bottom:106.202700px;}
.y1c_c00490{bottom:136.208700px;}
.y1b_c00490{bottom:166.214700px;}
.y1a_c00490{bottom:196.220700px;}
.y19_c00490{bottom:226.226700px;}
.y18_c00490{bottom:256.232700px;}
.y17_c00490{bottom:286.238700px;}
.y16_c00490{bottom:316.244700px;}
.y15_c00490{bottom:346.250700px;}
.y14_c00490{bottom:376.256700px;}
.y13_c00490{bottom:436.250700px;}
.y12_c00490{bottom:466.256700px;}
.y11_c00490{bottom:496.262700px;}
.y10_c00490{bottom:526.268700px;}
.yf_c00490{bottom:556.274700px;}
.ye_c00490{bottom:586.280700px;}
.yd_c00490{bottom:616.286700px;}
.yc_c00490{bottom:646.292700px;}
.yb_c00490{bottom:706.286700px;}
.ya_c00490{bottom:736.292700px;}
.y9_c00490{bottom:766.298700px;}
.y24_c00490{bottom:766.334700px;}
.y8_c00490{bottom:796.304700px;}
.y23_c00490{bottom:796.334700px;}
.y7_c00490{bottom:826.310700px;}
.y22_c00490{bottom:826.334700px;}
.y6_c00490{bottom:856.316700px;}
.y21_c00490{bottom:856.334700px;}
.y5_c00490{bottom:886.322700px;}
.y20_c00490{bottom:886.334700px;}
.y4_c00490{bottom:916.328700px;}
.y1f_c00490{bottom:916.334700px;}
.y3_c00490{bottom:946.334700px;}
.y1e_c00490{bottom:946.376100px;}
.y2_c00490{bottom:1006.334700px;}
.h5_c00490{height:50.292000px;}
.h2_c00490{height:54.000000px;}
.h4_c00490{height:64.800000px;}
.h3_c00490{height:100.980000px;}
.h0_c00490{height:1262.835000px;}
.h1_c00490{height:1263.000000px;}
.w0_c00490{width:892.914000px;}
.w1_c00490{width:893.250000px;}
.x0_c00490{left:0.000000px;}
.x2_c00490{left:82.500000px;}
.x3_c00490{left:106.500000px;}
.x4_c00490{left:675.611100px;}
.x1_c00490{left:788.288850px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls4_c00490{letter-spacing:-0.288000pt;}
.ls3_c00490{letter-spacing:0.000000pt;}
.ls0_c00490{letter-spacing:0.640000pt;}
.ls2_c00490{letter-spacing:1.333333pt;}
.ls1_c00490{letter-spacing:1.466667pt;}
.ws1_c00490{word-spacing:-18.912000pt;}
.ws2_c00490{word-spacing:-13.200000pt;}
.ws0_c00490{word-spacing:-9.066667pt;}
.ws1a_c00490{word-spacing:-1.472000pt;}
.ws1c_c00490{word-spacing:-1.333333pt;}
.wsa_c00490{word-spacing:-1.152000pt;}
.ws12_c00490{word-spacing:-0.832000pt;}
.ws18_c00490{word-spacing:-0.192000pt;}
.ws3_c00490{word-spacing:0.000000pt;}
.wse_c00490{word-spacing:0.704000pt;}
.wsf_c00490{word-spacing:1.664000pt;}
.ws10_c00490{word-spacing:1.728000pt;}
.ws17_c00490{word-spacing:1.792000pt;}
.ws9_c00490{word-spacing:3.136000pt;}
.ws19_c00490{word-spacing:3.456000pt;}
.wsb_c00490{word-spacing:4.416000pt;}
.ws16_c00490{word-spacing:4.864000pt;}
.ws11_c00490{word-spacing:4.928000pt;}
.ws5_c00490{word-spacing:5.120000pt;}
.ws7_c00490{word-spacing:6.016000pt;}
.ws14_c00490{word-spacing:6.144000pt;}
.ws1b_c00490{word-spacing:6.976000pt;}
.wsd_c00490{word-spacing:7.424000pt;}
.wsc_c00490{word-spacing:7.488000pt;}
.ws8_c00490{word-spacing:8.064000pt;}
.ws6_c00490{word-spacing:10.368000pt;}
.ws4_c00490{word-spacing:13.760000pt;}
.ws13_c00490{word-spacing:14.528000pt;}
.ws15_c00490{word-spacing:19.520000pt;}
._0_c00490{margin-left:-426.966400pt;}
._4_c00490{margin-left:-5.926400pt;}
._1_c00490{margin-left:-3.733333pt;}
._3_c00490{margin-left:-1.913600pt;}
._2_c00490{margin-left:-1.008000pt;}
.fs1_c00490{font-size:37.333333pt;}
.fs0_c00490{font-size:53.333333pt;}
.fs4_c00490{font-size:58.666667pt;}
.fs3_c00490{font-size:64.000000pt;}
.fs2_c00490{font-size:96.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y1_c00490{bottom:36.666667pt;}
.y1d_c00490{bottom:94.402400pt;}
.y1c_c00490{bottom:121.074400pt;}
.y1b_c00490{bottom:147.746400pt;}
.y1a_c00490{bottom:174.418400pt;}
.y19_c00490{bottom:201.090400pt;}
.y18_c00490{bottom:227.762400pt;}
.y17_c00490{bottom:254.434400pt;}
.y16_c00490{bottom:281.106400pt;}
.y15_c00490{bottom:307.778400pt;}
.y14_c00490{bottom:334.450400pt;}
.y13_c00490{bottom:387.778400pt;}
.y12_c00490{bottom:414.450400pt;}
.y11_c00490{bottom:441.122400pt;}
.y10_c00490{bottom:467.794400pt;}
.yf_c00490{bottom:494.466400pt;}
.ye_c00490{bottom:521.138400pt;}
.yd_c00490{bottom:547.810400pt;}
.yc_c00490{bottom:574.482400pt;}
.yb_c00490{bottom:627.810400pt;}
.ya_c00490{bottom:654.482400pt;}
.y9_c00490{bottom:681.154400pt;}
.y24_c00490{bottom:681.186400pt;}
.y8_c00490{bottom:707.826400pt;}
.y23_c00490{bottom:707.853067pt;}
.y7_c00490{bottom:734.498400pt;}
.y22_c00490{bottom:734.519733pt;}
.y6_c00490{bottom:761.170400pt;}
.y21_c00490{bottom:761.186400pt;}
.y5_c00490{bottom:787.842400pt;}
.y20_c00490{bottom:787.853067pt;}
.y4_c00490{bottom:814.514400pt;}
.y1f_c00490{bottom:814.519733pt;}
.y3_c00490{bottom:841.186400pt;}
.y1e_c00490{bottom:841.223200pt;}
.y2_c00490{bottom:894.519733pt;}
.h5_c00490{height:44.704000pt;}
.h2_c00490{height:48.000000pt;}
.h4_c00490{height:57.600000pt;}
.h3_c00490{height:89.760000pt;}
.h0_c00490{height:1122.520000pt;}
.h1_c00490{height:1122.666667pt;}
.w0_c00490{width:793.701333pt;}
.w1_c00490{width:794.000000pt;}
.x0_c00490{left:0.000000pt;}
.x2_c00490{left:73.333333pt;}
.x3_c00490{left:94.666667pt;}
.x4_c00490{left:600.543200pt;}
.x1_c00490{left:700.701200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.160000;font-style:normal;font-weight:normal;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_afca4237ab0c09e947aaefd5.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00491;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00491;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00491{font-family:ff5_c00491;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00491{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls4_c00491{letter-spacing:-0.864000px;}
.ls3_c00491{letter-spacing:-0.288000px;}
.ls2_c00491{letter-spacing:0.000000px;}
.ls0_c00491{letter-spacing:0.864000px;}
.ls1_c00491{letter-spacing:1.200000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00491{word-spacing:-13.104000px;}
.ws2_c00491{word-spacing:-11.952000px;}
.ws0_c00491{word-spacing:-10.200000px;}
.ws9_c00491{word-spacing:-6.720000px;}
.ws7_c00491{word-spacing:-5.544000px;}
.ws8_c00491{word-spacing:-5.040000px;}
.wsa_c00491{word-spacing:-3.720000px;}
.ws6_c00491{word-spacing:-3.600000px;}
.ws4_c00491{word-spacing:-1.440000px;}
.ws3_c00491{word-spacing:0.000000px;}
.ws5_c00491{word-spacing:0.288000px;}
._0_c00491{margin-left:-480.336600px;}
._8_c00491{margin-left:-15.408000px;}
._5_c00491{margin-left:-7.488000px;}
._4_c00491{margin-left:-6.480000px;}
._1_c00491{margin-left:-4.200000px;}
._6_c00491{margin-left:-2.592000px;}
._2_c00491{margin-left:-1.440000px;}
._3_c00491{width:1.440000px;}
._7_c00491{width:5.544000px;}
.fc3_c00491{color:rgb(255,255,255);}
.fc2_c00491{color:rgb(233,83,14);}
.fc1_c00491{color:rgb(232,86,17);}
.fc0_c00491{color:rgb(60,60,59);}
.fs1_c00491{font-size:42.000000px;}
.fs0_c00491{font-size:60.000000px;}
.fs3_c00491{font-size:72.000000px;}
.fs4_c00491{font-size:120.000000px;}
.fs2_c00491{font-size:360.000000px;}
.y0_c00491{bottom:0.000000px;}
.y1_c00491{bottom:41.250000px;}
.y12_c00491{bottom:304.256700px;}
.y11_c00491{bottom:325.262700px;}
.y10_c00491{bottom:346.268700px;}
.yf_c00491{bottom:394.274700px;}
.ye_c00491{bottom:415.280700px;}
.yd_c00491{bottom:436.286700px;}
.yc_c00491{bottom:484.292700px;}
.yb_c00491{bottom:505.298700px;}
.ya_c00491{bottom:526.304700px;}
.y9_c00491{bottom:574.310700px;}
.y8_c00491{bottom:595.316700px;}
.y7_c00491{bottom:616.322700px;}
.y6_c00491{bottom:664.328700px;}
.y5_c00491{bottom:685.334700px;}
.y4_c00491{bottom:706.340700px;}
.y3_c00491{bottom:752.834700px;}
.y17_c00491{bottom:886.334700px;}
.y16_c00491{bottom:916.334700px;}
.y15_c00491{bottom:946.334700px;}
.y14_c00491{bottom:976.334700px;}
.y13_c00491{bottom:1006.334700px;}
.y2_c00491{bottom:1093.526700px;}
.h2_c00491{height:54.000000px;}
.h5_c00491{height:64.800000px;}
.h4_c00491{height:66.456000px;}
.h6_c00491{height:112.200000px;}
.h3_c00491{height:324.000000px;}
.h0_c00491{height:1262.835000px;}
.h1_c00491{height:1263.000000px;}
.w0_c00491{width:892.914000px;}
.w1_c00491{width:893.250000px;}
.x0_c00491{left:0.000000px;}
.x2_c00491{left:81.290250px;}
.x3_c00491{left:82.393650px;}
.x5_c00491{left:112.287450px;}
.x4_c00491{left:127.393650px;}
.x1_c00491{left:785.813700px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls4_c00491{letter-spacing:-0.768000pt;}
.ls3_c00491{letter-spacing:-0.256000pt;}
.ls2_c00491{letter-spacing:0.000000pt;}
.ls0_c00491{letter-spacing:0.768000pt;}
.ls1_c00491{letter-spacing:1.066667pt;}
.ws1_c00491{word-spacing:-11.648000pt;}
.ws2_c00491{word-spacing:-10.624000pt;}
.ws0_c00491{word-spacing:-9.066667pt;}
.ws9_c00491{word-spacing:-5.973333pt;}
.ws7_c00491{word-spacing:-4.928000pt;}
.ws8_c00491{word-spacing:-4.480000pt;}
.wsa_c00491{word-spacing:-3.306667pt;}
.ws6_c00491{word-spacing:-3.200000pt;}
.ws4_c00491{word-spacing:-1.280000pt;}
.ws3_c00491{word-spacing:0.000000pt;}
.ws5_c00491{word-spacing:0.256000pt;}
._0_c00491{margin-left:-426.965867pt;}
._8_c00491{margin-left:-13.696000pt;}
._5_c00491{margin-left:-6.656000pt;}
._4_c00491{margin-left:-5.760000pt;}
._1_c00491{margin-left:-3.733333pt;}
._6_c00491{margin-left:-2.304000pt;}
._2_c00491{margin-left:-1.280000pt;}
._3_c00491{width:1.280000pt;}
._7_c00491{width:4.928000pt;}
.fs1_c00491{font-size:37.333333pt;}
.fs0_c00491{font-size:53.333333pt;}
.fs3_c00491{font-size:64.000000pt;}
.fs4_c00491{font-size:106.666667pt;}
.fs2_c00491{font-size:320.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y1_c00491{bottom:36.666667pt;}
.y12_c00491{bottom:270.450400pt;}
.y11_c00491{bottom:289.122400pt;}
.y10_c00491{bottom:307.794400pt;}
.yf_c00491{bottom:350.466400pt;}
.ye_c00491{bottom:369.138400pt;}
.yd_c00491{bottom:387.810400pt;}
.yc_c00491{bottom:430.482400pt;}
.yb_c00491{bottom:449.154400pt;}
.ya_c00491{bottom:467.826400pt;}
.y9_c00491{bottom:510.498400pt;}
.y8_c00491{bottom:529.170400pt;}
.y7_c00491{bottom:547.842400pt;}
.y6_c00491{bottom:590.514400pt;}
.y5_c00491{bottom:609.186400pt;}
.y4_c00491{bottom:627.858400pt;}
.y3_c00491{bottom:669.186400pt;}
.y17_c00491{bottom:787.853067pt;}
.y16_c00491{bottom:814.519733pt;}
.y15_c00491{bottom:841.186400pt;}
.y14_c00491{bottom:867.853067pt;}
.y13_c00491{bottom:894.519733pt;}
.y2_c00491{bottom:972.023733pt;}
.h2_c00491{height:48.000000pt;}
.h5_c00491{height:57.600000pt;}
.h4_c00491{height:59.072000pt;}
.h6_c00491{height:99.733333pt;}
.h3_c00491{height:288.000000pt;}
.h0_c00491{height:1122.520000pt;}
.h1_c00491{height:1122.666667pt;}
.w0_c00491{width:793.701333pt;}
.w1_c00491{width:794.000000pt;}
.x0_c00491{left:0.000000pt;}
.x2_c00491{left:72.258000pt;}
.x3_c00491{left:73.238800pt;}
.x5_c00491{left:99.811067pt;}
.x4_c00491{left:113.238800pt;}
.x1_c00491{left:698.501067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.160000;font-style:normal;font-weight:normal;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_9199441f23763687eab2a311.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00492;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:1.161000;font-style: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);}
.m1_c00492{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls5_c00492{letter-spacing:-0.540000px;}
.ls4_c00492{letter-spacing:0.000000px;}
.ls0_c00492{letter-spacing:0.720000px;}
.ls1_c00492{letter-spacing:0.840000px;}
.ls3_c00492{letter-spacing:1.500000px;}
.ls2_c00492{letter-spacing:1.650000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00492{word-spacing:-21.060000px;}
.ws2_c00492{word-spacing:-17.640000px;}
.ws0_c00492{word-spacing:-10.200000px;}
.wsb_c00492{word-spacing:-1.800000px;}
.ws4_c00492{word-spacing:-0.840000px;}
.wsc_c00492{word-spacing:-0.720000px;}
.wsd_c00492{word-spacing:-0.576000px;}
.ws3_c00492{word-spacing:0.000000px;}
.ws7_c00492{word-spacing:0.504000px;}
.ws6_c00492{word-spacing:0.648000px;}
.wsf_c00492{word-spacing:3.024000px;}
.wse_c00492{word-spacing:4.968000px;}
.wsa_c00492{word-spacing:6.552000px;}
.ws5_c00492{word-spacing:7.776000px;}
.ws8_c00492{word-spacing:9.216000px;}
.ws10_c00492{word-spacing:11.448000px;}
.ws9_c00492{word-spacing:11.592000px;}
._0_c00492{margin-left:-480.337200px;}
._4_c00492{margin-left:-6.580800px;}
._1_c00492{margin-left:-4.200000px;}
._3_c00492{margin-left:-2.952000px;}
._2_c00492{margin-left:-1.440000px;}
.fc3_c00492{color:rgb(32,32,32);}
.fc2_c00492{color:rgb(233,83,14);}
.fc1_c00492{color:rgb(232,86,17);}
.fc4_c00492{color:rgb(157,157,156);}
.fc0_c00492{color:rgb(60,60,59);}
.fs1_c00492{font-size:42.000000px;}
.fs0_c00492{font-size:60.000000px;}
.fs5_c00492{font-size:66.000000px;}
.fs4_c00492{font-size:72.000000px;}
.fs3_c00492{font-size:84.000000px;}
.fs2_c00492{font-size:108.000000px;}
.y0_c00492{bottom:0.000000px;}
.y1_c00492{bottom:41.250000px;}
.y13_c00492{bottom:226.310700px;}
.y12_c00492{bottom:256.316700px;}
.y11_c00492{bottom:286.322700px;}
.y10_c00492{bottom:316.328700px;}
.yf_c00492{bottom:346.334700px;}
.ye_c00492{bottom:406.334700px;}
.yd_c00492{bottom:496.310700px;}
.yc_c00492{bottom:526.316700px;}
.yb_c00492{bottom:556.322700px;}
.ya_c00492{bottom:586.328700px;}
.y9_c00492{bottom:616.334700px;}
.y8_c00492{bottom:676.334700px;}
.y7_c00492{bottom:766.316700px;}
.y6_c00492{bottom:796.322700px;}
.y16_c00492{bottom:796.334700px;}
.y5_c00492{bottom:826.328700px;}
.y15_c00492{bottom:826.334700px;}
.y4_c00492{bottom:856.334700px;}
.y14_c00492{bottom:856.376100px;}
.y3_c00492{bottom:916.334700px;}
.y2_c00492{bottom:1006.334700px;}
.h6_c00492{height:50.292000px;}
.h2_c00492{height:54.000000px;}
.h5_c00492{height:64.800000px;}
.h4_c00492{height:78.540000px;}
.h3_c00492{height:100.980000px;}
.h0_c00492{height:1262.835000px;}
.h1_c00492{height:1263.000000px;}
.w0_c00492{width:892.914000px;}
.w1_c00492{width:893.250000px;}
.x0_c00492{left:0.000000px;}
.x2_c00492{left:82.500000px;}
.x3_c00492{left:90.000000px;}
.x4_c00492{left:106.500000px;}
.x5_c00492{left:675.611100px;}
.x1_c00492{left:785.663850px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls5_c00492{letter-spacing:-0.480000pt;}
.ls4_c00492{letter-spacing:0.000000pt;}
.ls0_c00492{letter-spacing:0.640000pt;}
.ls1_c00492{letter-spacing:0.746667pt;}
.ls3_c00492{letter-spacing:1.333333pt;}
.ls2_c00492{letter-spacing:1.466667pt;}
.ws1_c00492{word-spacing:-18.720000pt;}
.ws2_c00492{word-spacing:-15.680000pt;}
.ws0_c00492{word-spacing:-9.066667pt;}
.wsb_c00492{word-spacing:-1.600000pt;}
.ws4_c00492{word-spacing:-0.746667pt;}
.wsc_c00492{word-spacing:-0.640000pt;}
.wsd_c00492{word-spacing:-0.512000pt;}
.ws3_c00492{word-spacing:0.000000pt;}
.ws7_c00492{word-spacing:0.448000pt;}
.ws6_c00492{word-spacing:0.576000pt;}
.wsf_c00492{word-spacing:2.688000pt;}
.wse_c00492{word-spacing:4.416000pt;}
.wsa_c00492{word-spacing:5.824000pt;}
.ws5_c00492{word-spacing:6.912000pt;}
.ws8_c00492{word-spacing:8.192000pt;}
.ws10_c00492{word-spacing:10.176000pt;}
.ws9_c00492{word-spacing:10.304000pt;}
._0_c00492{margin-left:-426.966400pt;}
._4_c00492{margin-left:-5.849600pt;}
._1_c00492{margin-left:-3.733333pt;}
._3_c00492{margin-left:-2.624000pt;}
._2_c00492{margin-left:-1.280000pt;}
.fs1_c00492{font-size:37.333333pt;}
.fs0_c00492{font-size:53.333333pt;}
.fs5_c00492{font-size:58.666667pt;}
.fs4_c00492{font-size:64.000000pt;}
.fs3_c00492{font-size:74.666667pt;}
.fs2_c00492{font-size:96.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y1_c00492{bottom:36.666667pt;}
.y13_c00492{bottom:201.165067pt;}
.y12_c00492{bottom:227.837067pt;}
.y11_c00492{bottom:254.509067pt;}
.y10_c00492{bottom:281.181067pt;}
.yf_c00492{bottom:307.853067pt;}
.ye_c00492{bottom:361.186400pt;}
.yd_c00492{bottom:441.165067pt;}
.yc_c00492{bottom:467.837067pt;}
.yb_c00492{bottom:494.509067pt;}
.ya_c00492{bottom:521.181067pt;}
.y9_c00492{bottom:547.853067pt;}
.y8_c00492{bottom:601.186400pt;}
.y7_c00492{bottom:681.170400pt;}
.y6_c00492{bottom:707.842400pt;}
.y16_c00492{bottom:707.853067pt;}
.y5_c00492{bottom:734.514400pt;}
.y15_c00492{bottom:734.519733pt;}
.y4_c00492{bottom:761.186400pt;}
.y14_c00492{bottom:761.223200pt;}
.y3_c00492{bottom:814.519733pt;}
.y2_c00492{bottom:894.519733pt;}
.h6_c00492{height:44.704000pt;}
.h2_c00492{height:48.000000pt;}
.h5_c00492{height:57.600000pt;}
.h4_c00492{height:69.813333pt;}
.h3_c00492{height:89.760000pt;}
.h0_c00492{height:1122.520000pt;}
.h1_c00492{height:1122.666667pt;}
.w0_c00492{width:793.701333pt;}
.w1_c00492{width:794.000000pt;}
.x0_c00492{left:0.000000pt;}
.x2_c00492{left:73.333333pt;}
.x3_c00492{left:80.000000pt;}
.x4_c00492{left:94.666667pt;}
.x5_c00492{left:600.543200pt;}
.x1_c00492{left:698.367867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00493{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls1_c00493{letter-spacing:0.000000px;}
.ls0_c00493{letter-spacing:0.720000px;}
.ls2_c00493{letter-spacing:0.840000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00493{word-spacing:-10.200000px;}
.wsf_c00493{word-spacing:-1.296000px;}
.wsa_c00493{word-spacing:-1.008000px;}
.ws2_c00493{word-spacing:-0.840000px;}
.wsd_c00493{word-spacing:-0.288000px;}
.ws6_c00493{word-spacing:-0.072000px;}
.ws1_c00493{word-spacing:0.000000px;}
.wse_c00493{word-spacing:0.576000px;}
.ws4_c00493{word-spacing:1.008000px;}
.ws5_c00493{word-spacing:1.440000px;}
.wsc_c00493{word-spacing:6.192000px;}
.ws9_c00493{word-spacing:6.840000px;}
.ws8_c00493{word-spacing:9.720000px;}
.wsb_c00493{word-spacing:10.080000px;}
.ws7_c00493{word-spacing:15.264000px;}
.ws3_c00493{word-spacing:17.784000px;}
._0_c00493{margin-left:-480.337200px;}
._1_c00493{margin-left:-4.200000px;}
._2_c00493{margin-left:-1.440000px;}
.fc2_c00493{color:rgb(32,32,32);}
.fc1_c00493{color:rgb(232,86,17);}
.fc0_c00493{color:rgb(60,60,59);}
.fs1_c00493{font-size:42.000000px;}
.fs0_c00493{font-size:60.000000px;}
.fs3_c00493{font-size:72.000000px;}
.fs2_c00493{font-size:84.000000px;}
.y0_c00493{bottom:0.000000px;}
.y1_c00493{bottom:41.250000px;}
.y13_c00493{bottom:376.286700px;}
.y12_c00493{bottom:406.292700px;}
.y11_c00493{bottom:436.298700px;}
.y10_c00493{bottom:466.304700px;}
.yf_c00493{bottom:496.310700px;}
.ye_c00493{bottom:526.316700px;}
.yd_c00493{bottom:556.322700px;}
.yc_c00493{bottom:586.328700px;}
.yb_c00493{bottom:616.334700px;}
.ya_c00493{bottom:676.334700px;}
.y9_c00493{bottom:766.298700px;}
.y8_c00493{bottom:796.304700px;}
.y7_c00493{bottom:826.310700px;}
.y6_c00493{bottom:856.316700px;}
.y5_c00493{bottom:886.322700px;}
.y4_c00493{bottom:916.328700px;}
.y3_c00493{bottom:946.334700px;}
.y2_c00493{bottom:1006.334700px;}
.h2_c00493{height:54.000000px;}
.h4_c00493{height:64.800000px;}
.h3_c00493{height:78.540000px;}
.h0_c00493{height:1262.835000px;}
.h1_c00493{height:1263.000000px;}
.w0_c00493{width:892.914000px;}
.w1_c00493{width:893.250000px;}
.x0_c00493{left:0.000000px;}
.x2_c00493{left:90.000000px;}
.x3_c00493{left:106.500000px;}
.x1_c00493{left:784.688850px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls1_c00493{letter-spacing:0.000000pt;}
.ls0_c00493{letter-spacing:0.640000pt;}
.ls2_c00493{letter-spacing:0.746667pt;}
.ws0_c00493{word-spacing:-9.066667pt;}
.wsf_c00493{word-spacing:-1.152000pt;}
.wsa_c00493{word-spacing:-0.896000pt;}
.ws2_c00493{word-spacing:-0.746667pt;}
.wsd_c00493{word-spacing:-0.256000pt;}
.ws6_c00493{word-spacing:-0.064000pt;}
.ws1_c00493{word-spacing:0.000000pt;}
.wse_c00493{word-spacing:0.512000pt;}
.ws4_c00493{word-spacing:0.896000pt;}
.ws5_c00493{word-spacing:1.280000pt;}
.wsc_c00493{word-spacing:5.504000pt;}
.ws9_c00493{word-spacing:6.080000pt;}
.ws8_c00493{word-spacing:8.640000pt;}
.wsb_c00493{word-spacing:8.960000pt;}
.ws7_c00493{word-spacing:13.568000pt;}
.ws3_c00493{word-spacing:15.808000pt;}
._0_c00493{margin-left:-426.966400pt;}
._1_c00493{margin-left:-3.733333pt;}
._2_c00493{margin-left:-1.280000pt;}
.fs1_c00493{font-size:37.333333pt;}
.fs0_c00493{font-size:53.333333pt;}
.fs3_c00493{font-size:64.000000pt;}
.fs2_c00493{font-size:74.666667pt;}
.y0_c00493{bottom:0.000000pt;}
.y1_c00493{bottom:36.666667pt;}
.y13_c00493{bottom:334.477067pt;}
.y12_c00493{bottom:361.149067pt;}
.y11_c00493{bottom:387.821067pt;}
.y10_c00493{bottom:414.493067pt;}
.yf_c00493{bottom:441.165067pt;}
.ye_c00493{bottom:467.837067pt;}
.yd_c00493{bottom:494.509067pt;}
.yc_c00493{bottom:521.181067pt;}
.yb_c00493{bottom:547.853067pt;}
.ya_c00493{bottom:601.186400pt;}
.y9_c00493{bottom:681.154400pt;}
.y8_c00493{bottom:707.826400pt;}
.y7_c00493{bottom:734.498400pt;}
.y6_c00493{bottom:761.170400pt;}
.y5_c00493{bottom:787.842400pt;}
.y4_c00493{bottom:814.514400pt;}
.y3_c00493{bottom:841.186400pt;}
.y2_c00493{bottom:894.519733pt;}
.h2_c00493{height:48.000000pt;}
.h4_c00493{height:57.600000pt;}
.h3_c00493{height:69.813333pt;}
.h0_c00493{height:1122.520000pt;}
.h1_c00493{height:1122.666667pt;}
.w0_c00493{width:793.701333pt;}
.w1_c00493{width:794.000000pt;}
.x0_c00493{left:0.000000pt;}
.x2_c00493{left:80.000000pt;}
.x3_c00493{left:94.666667pt;}
.x1_c00493{left:697.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45f0146705d46c3af5096eb9.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00494;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;line-height:1.161000;font-style: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);}
.m1_c00494{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls5_c00494{letter-spacing:-0.324000px;}
.ls4_c00494{letter-spacing:0.000000px;}
.ls0_c00494{letter-spacing:0.720000px;}
.ls1_c00494{letter-spacing:0.840000px;}
.ls3_c00494{letter-spacing:1.500000px;}
.ls2_c00494{letter-spacing:1.650000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00494{word-spacing:-21.276000px;}
.ws2_c00494{word-spacing:-17.640000px;}
.ws3_c00494{word-spacing:-14.850000px;}
.ws0_c00494{word-spacing:-10.200000px;}
.wsd_c00494{word-spacing:-2.664000px;}
.ws9_c00494{word-spacing:-1.800000px;}
.ws5_c00494{word-spacing:-0.840000px;}
.ws8_c00494{word-spacing:-0.144000px;}
.ws4_c00494{word-spacing:0.000000px;}
.ws7_c00494{word-spacing:0.288000px;}
.wse_c00494{word-spacing:0.936000px;}
.wsc_c00494{word-spacing:6.912000px;}
.wsb_c00494{word-spacing:9.864000px;}
.ws6_c00494{word-spacing:14.760000px;}
.wsa_c00494{word-spacing:17.280000px;}
._0_c00494{margin-left:-480.336000px;}
._1_c00494{margin-left:-4.200000px;}
._3_c00494{margin-left:-2.160000px;}
._2_c00494{margin-left:-1.134000px;}
.fc3_c00494{color:rgb(32,32,32);}
.fc2_c00494{color:rgb(233,83,14);}
.fc1_c00494{color:rgb(232,86,17);}
.fc4_c00494{color:rgb(157,157,156);}
.fc0_c00494{color:rgb(60,60,59);}
.fs1_c00494{font-size:42.000000px;}
.fs0_c00494{font-size:60.000000px;}
.fs5_c00494{font-size:66.000000px;}
.fs4_c00494{font-size:72.000000px;}
.fs3_c00494{font-size:84.000000px;}
.fs2_c00494{font-size:108.000000px;}
.y0_c00494{bottom:0.000000px;}
.y1_c00494{bottom:41.250000px;}
.y12_c00494{bottom:256.316700px;}
.y11_c00494{bottom:286.322700px;}
.y10_c00494{bottom:316.328700px;}
.yf_c00494{bottom:346.334700px;}
.ye_c00494{bottom:406.334700px;}
.yd_c00494{bottom:496.310700px;}
.yc_c00494{bottom:526.316700px;}
.yb_c00494{bottom:556.322700px;}
.ya_c00494{bottom:586.328700px;}
.y9_c00494{bottom:616.334700px;}
.y8_c00494{bottom:676.334700px;}
.y7_c00494{bottom:766.316700px;}
.y6_c00494{bottom:796.322700px;}
.y15_c00494{bottom:796.334700px;}
.y5_c00494{bottom:826.328700px;}
.y14_c00494{bottom:826.334700px;}
.y4_c00494{bottom:856.334700px;}
.y13_c00494{bottom:856.376100px;}
.y3_c00494{bottom:916.334700px;}
.y2_c00494{bottom:1006.334700px;}
.h6_c00494{height:50.292000px;}
.h2_c00494{height:54.000000px;}
.h5_c00494{height:64.800000px;}
.h4_c00494{height:78.540000px;}
.h3_c00494{height:100.980000px;}
.h0_c00494{height:1262.835000px;}
.h1_c00494{height:1263.000000px;}
.w0_c00494{width:892.914000px;}
.w1_c00494{width:893.250000px;}
.x0_c00494{left:0.000000px;}
.x2_c00494{left:82.500000px;}
.x3_c00494{left:90.000000px;}
.x4_c00494{left:106.500000px;}
.x5_c00494{left:675.611100px;}
.x1_c00494{left:785.738550px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls5_c00494{letter-spacing:-0.288000pt;}
.ls4_c00494{letter-spacing:0.000000pt;}
.ls0_c00494{letter-spacing:0.640000pt;}
.ls1_c00494{letter-spacing:0.746667pt;}
.ls3_c00494{letter-spacing:1.333333pt;}
.ls2_c00494{letter-spacing:1.466667pt;}
.ws1_c00494{word-spacing:-18.912000pt;}
.ws2_c00494{word-spacing:-15.680000pt;}
.ws3_c00494{word-spacing:-13.200000pt;}
.ws0_c00494{word-spacing:-9.066667pt;}
.wsd_c00494{word-spacing:-2.368000pt;}
.ws9_c00494{word-spacing:-1.600000pt;}
.ws5_c00494{word-spacing:-0.746667pt;}
.ws8_c00494{word-spacing:-0.128000pt;}
.ws4_c00494{word-spacing:0.000000pt;}
.ws7_c00494{word-spacing:0.256000pt;}
.wse_c00494{word-spacing:0.832000pt;}
.wsc_c00494{word-spacing:6.144000pt;}
.wsb_c00494{word-spacing:8.768000pt;}
.ws6_c00494{word-spacing:13.120000pt;}
.wsa_c00494{word-spacing:15.360000pt;}
._0_c00494{margin-left:-426.965333pt;}
._1_c00494{margin-left:-3.733333pt;}
._3_c00494{margin-left:-1.920000pt;}
._2_c00494{margin-left:-1.008000pt;}
.fs1_c00494{font-size:37.333333pt;}
.fs0_c00494{font-size:53.333333pt;}
.fs5_c00494{font-size:58.666667pt;}
.fs4_c00494{font-size:64.000000pt;}
.fs3_c00494{font-size:74.666667pt;}
.fs2_c00494{font-size:96.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y1_c00494{bottom:36.666667pt;}
.y12_c00494{bottom:227.837067pt;}
.y11_c00494{bottom:254.509067pt;}
.y10_c00494{bottom:281.181067pt;}
.yf_c00494{bottom:307.853067pt;}
.ye_c00494{bottom:361.186400pt;}
.yd_c00494{bottom:441.165067pt;}
.yc_c00494{bottom:467.837067pt;}
.yb_c00494{bottom:494.509067pt;}
.ya_c00494{bottom:521.181067pt;}
.y9_c00494{bottom:547.853067pt;}
.y8_c00494{bottom:601.186400pt;}
.y7_c00494{bottom:681.170400pt;}
.y6_c00494{bottom:707.842400pt;}
.y15_c00494{bottom:707.853067pt;}
.y5_c00494{bottom:734.514400pt;}
.y14_c00494{bottom:734.519733pt;}
.y4_c00494{bottom:761.186400pt;}
.y13_c00494{bottom:761.223200pt;}
.y3_c00494{bottom:814.519733pt;}
.y2_c00494{bottom:894.519733pt;}
.h6_c00494{height:44.704000pt;}
.h2_c00494{height:48.000000pt;}
.h5_c00494{height:57.600000pt;}
.h4_c00494{height:69.813333pt;}
.h3_c00494{height:89.760000pt;}
.h0_c00494{height:1122.520000pt;}
.h1_c00494{height:1122.666667pt;}
.w0_c00494{width:793.701333pt;}
.w1_c00494{width:794.000000pt;}
.x0_c00494{left:0.000000pt;}
.x2_c00494{left:73.333333pt;}
.x3_c00494{left:80.000000pt;}
.x4_c00494{left:94.666667pt;}
.x5_c00494{left:600.543200pt;}
.x1_c00494{left:698.434267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73c7dea85163a337c1490c92.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.160000;font-style:normal;font-weight:normal;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_bacd1896dbb039756c6f9859.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.199000;font-style: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);}
.m1_c00495{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls1_c00495{letter-spacing:0.000000px;}
.ls0_c00495{letter-spacing:0.720000px;}
.ls2_c00495{letter-spacing:0.840000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00495{word-spacing:-10.200000px;}
.wsc_c00495{word-spacing:-1.800000px;}
.ws2_c00495{word-spacing:-0.840000px;}
.ws1_c00495{word-spacing:0.000000px;}
.wsb_c00495{word-spacing:2.880000px;}
.wsa_c00495{word-spacing:4.464000px;}
.wse_c00495{word-spacing:5.184000px;}
.ws4_c00495{word-spacing:5.400000px;}
.ws5_c00495{word-spacing:5.976000px;}
.ws6_c00495{word-spacing:7.488000px;}
.ws3_c00495{word-spacing:7.632000px;}
.ws7_c00495{word-spacing:8.280000px;}
.ws9_c00495{word-spacing:9.936000px;}
.wsd_c00495{word-spacing:10.728000px;}
.ws8_c00495{word-spacing:20.016000px;}
._0_c00495{margin-left:-480.336600px;}
._3_c00495{margin-left:-5.752800px;}
._1_c00495{margin-left:-4.200000px;}
._2_c00495{margin-left:-1.440000px;}
.fc2_c00495{color:rgb(32,32,32);}
.fc1_c00495{color:rgb(232,86,17);}
.fc0_c00495{color:rgb(60,60,59);}
.fs1_c00495{font-size:42.000000px;}
.fs0_c00495{font-size:60.000000px;}
.fs3_c00495{font-size:72.000000px;}
.fs2_c00495{font-size:84.000000px;}
.y0_c00495{bottom:0.000000px;}
.y1_c00495{bottom:41.250000px;}
.y12_c00495{bottom:406.292700px;}
.y11_c00495{bottom:436.298700px;}
.y10_c00495{bottom:466.304700px;}
.yf_c00495{bottom:496.310700px;}
.ye_c00495{bottom:526.316700px;}
.yd_c00495{bottom:556.322700px;}
.yc_c00495{bottom:586.328700px;}
.yb_c00495{bottom:616.334700px;}
.ya_c00495{bottom:676.334700px;}
.y9_c00495{bottom:766.298700px;}
.y8_c00495{bottom:796.304700px;}
.y7_c00495{bottom:826.310700px;}
.y6_c00495{bottom:856.316700px;}
.y5_c00495{bottom:886.322700px;}
.y4_c00495{bottom:916.328700px;}
.y3_c00495{bottom:946.334700px;}
.y2_c00495{bottom:1006.334700px;}
.h2_c00495{height:54.000000px;}
.h4_c00495{height:64.800000px;}
.h3_c00495{height:78.540000px;}
.h0_c00495{height:1262.835000px;}
.h1_c00495{height:1263.000000px;}
.w0_c00495{width:892.914000px;}
.w1_c00495{width:893.250000px;}
.x0_c00495{left:0.000000px;}
.x2_c00495{left:90.000000px;}
.x3_c00495{left:106.500000px;}
.x1_c00495{left:784.613700px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls1_c00495{letter-spacing:0.000000pt;}
.ls0_c00495{letter-spacing:0.640000pt;}
.ls2_c00495{letter-spacing:0.746667pt;}
.ws0_c00495{word-spacing:-9.066667pt;}
.wsc_c00495{word-spacing:-1.600000pt;}
.ws2_c00495{word-spacing:-0.746667pt;}
.ws1_c00495{word-spacing:0.000000pt;}
.wsb_c00495{word-spacing:2.560000pt;}
.wsa_c00495{word-spacing:3.968000pt;}
.wse_c00495{word-spacing:4.608000pt;}
.ws4_c00495{word-spacing:4.800000pt;}
.ws5_c00495{word-spacing:5.312000pt;}
.ws6_c00495{word-spacing:6.656000pt;}
.ws3_c00495{word-spacing:6.784000pt;}
.ws7_c00495{word-spacing:7.360000pt;}
.ws9_c00495{word-spacing:8.832000pt;}
.wsd_c00495{word-spacing:9.536000pt;}
.ws8_c00495{word-spacing:17.792000pt;}
._0_c00495{margin-left:-426.965867pt;}
._3_c00495{margin-left:-5.113600pt;}
._1_c00495{margin-left:-3.733333pt;}
._2_c00495{margin-left:-1.280000pt;}
.fs1_c00495{font-size:37.333333pt;}
.fs0_c00495{font-size:53.333333pt;}
.fs3_c00495{font-size:64.000000pt;}
.fs2_c00495{font-size:74.666667pt;}
.y0_c00495{bottom:0.000000pt;}
.y1_c00495{bottom:36.666667pt;}
.y12_c00495{bottom:361.149067pt;}
.y11_c00495{bottom:387.821067pt;}
.y10_c00495{bottom:414.493067pt;}
.yf_c00495{bottom:441.165067pt;}
.ye_c00495{bottom:467.837067pt;}
.yd_c00495{bottom:494.509067pt;}
.yc_c00495{bottom:521.181067pt;}
.yb_c00495{bottom:547.853067pt;}
.ya_c00495{bottom:601.186400pt;}
.y9_c00495{bottom:681.154400pt;}
.y8_c00495{bottom:707.826400pt;}
.y7_c00495{bottom:734.498400pt;}
.y6_c00495{bottom:761.170400pt;}
.y5_c00495{bottom:787.842400pt;}
.y4_c00495{bottom:814.514400pt;}
.y3_c00495{bottom:841.186400pt;}
.y2_c00495{bottom:894.519733pt;}
.h2_c00495{height:48.000000pt;}
.h4_c00495{height:57.600000pt;}
.h3_c00495{height:69.813333pt;}
.h0_c00495{height:1122.520000pt;}
.h1_c00495{height:1122.666667pt;}
.w0_c00495{width:793.701333pt;}
.w1_c00495{width:794.000000pt;}
.x0_c00495{left:0.000000pt;}
.x2_c00495{left:80.000000pt;}
.x3_c00495{left:94.666667pt;}
.x1_c00495{left:697.434400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3385200201934d3496a96863.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.160000;font-style:normal;font-weight:normal;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_66b6970dbf7b040f8f7c58d9.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.199000;font-style:normal;font-weight:normal;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_fedf3a002ad306d385e45b88.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00496;src:url('chunks/assets/font_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00496;src:url('chunks/assets/font_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00496{font-family:ff5_c00496;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00496{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls3_c00496{letter-spacing:-0.288000px;}
.ls2_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:0.864000px;}
.ls1_c00496{letter-spacing:1.200000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00496{word-spacing:-11.952000px;}
.ws0_c00496{word-spacing:-10.200000px;}
.ws8_c00496{word-spacing:-6.240000px;}
.ws6_c00496{word-spacing:-5.400000px;}
.ws5_c00496{word-spacing:-5.112000px;}
.ws3_c00496{word-spacing:-2.664000px;}
.ws4_c00496{word-spacing:-1.728000px;}
.ws2_c00496{word-spacing:0.000000px;}
.ws7_c00496{word-spacing:0.288000px;}
._0_c00496{margin-left:-480.336600px;}
._8_c00496{margin-left:-12.000000px;}
._9_c00496{margin-left:-9.600000px;}
._4_c00496{margin-left:-7.200000px;}
._5_c00496{margin-left:-5.760000px;}
._1_c00496{margin-left:-4.200000px;}
._a_c00496{margin-left:-2.520000px;}
._3_c00496{margin-left:-1.440000px;}
._2_c00496{width:2.664000px;}
._6_c00496{width:5.112000px;}
._7_c00496{width:6.240000px;}
.fc3_c00496{color:rgb(255,255,255);}
.fc2_c00496{color:rgb(233,83,14);}
.fc1_c00496{color:rgb(232,86,17);}
.fc0_c00496{color:rgb(60,60,59);}
.fs1_c00496{font-size:42.000000px;}
.fs0_c00496{font-size:60.000000px;}
.fs3_c00496{font-size:72.000000px;}
.fs4_c00496{font-size:120.000000px;}
.fs2_c00496{font-size:360.000000px;}
.y0_c00496{bottom:0.000000px;}
.y1_c00496{bottom:41.250000px;}
.yb_c00496{bottom:532.298700px;}
.ya_c00496{bottom:553.304700px;}
.y9_c00496{bottom:574.310700px;}
.y8_c00496{bottom:595.316700px;}
.y7_c00496{bottom:616.322700px;}
.y6_c00496{bottom:664.328700px;}
.y5_c00496{bottom:685.334700px;}
.y4_c00496{bottom:706.340700px;}
.y3_c00496{bottom:752.834700px;}
.ye_c00496{bottom:946.334700px;}
.yd_c00496{bottom:976.334700px;}
.yc_c00496{bottom:1006.334700px;}
.y2_c00496{bottom:1093.526700px;}
.h2_c00496{height:54.000000px;}
.h5_c00496{height:64.800000px;}
.h4_c00496{height:66.456000px;}
.h6_c00496{height:112.200000px;}
.h3_c00496{height:324.000000px;}
.h0_c00496{height:1262.835000px;}
.h1_c00496{height:1263.000000px;}
.w0_c00496{width:892.914000px;}
.w1_c00496{width:893.250000px;}
.x0_c00496{left:0.000000px;}
.x2_c00496{left:81.290250px;}
.x3_c00496{left:82.393650px;}
.x5_c00496{left:112.287450px;}
.x4_c00496{left:127.393650px;}
.x1_c00496{left:786.713700px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls3_c00496{letter-spacing:-0.256000pt;}
.ls2_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:0.768000pt;}
.ls1_c00496{letter-spacing:1.066667pt;}
.ws1_c00496{word-spacing:-10.624000pt;}
.ws0_c00496{word-spacing:-9.066667pt;}
.ws8_c00496{word-spacing:-5.546667pt;}
.ws6_c00496{word-spacing:-4.800000pt;}
.ws5_c00496{word-spacing:-4.544000pt;}
.ws3_c00496{word-spacing:-2.368000pt;}
.ws4_c00496{word-spacing:-1.536000pt;}
.ws2_c00496{word-spacing:0.000000pt;}
.ws7_c00496{word-spacing:0.256000pt;}
._0_c00496{margin-left:-426.965867pt;}
._8_c00496{margin-left:-10.666667pt;}
._9_c00496{margin-left:-8.533333pt;}
._4_c00496{margin-left:-6.400000pt;}
._5_c00496{margin-left:-5.120000pt;}
._1_c00496{margin-left:-3.733333pt;}
._a_c00496{margin-left:-2.240000pt;}
._3_c00496{margin-left:-1.280000pt;}
._2_c00496{width:2.368000pt;}
._6_c00496{width:4.544000pt;}
._7_c00496{width:5.546667pt;}
.fs1_c00496{font-size:37.333333pt;}
.fs0_c00496{font-size:53.333333pt;}
.fs3_c00496{font-size:64.000000pt;}
.fs4_c00496{font-size:106.666667pt;}
.fs2_c00496{font-size:320.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y1_c00496{bottom:36.666667pt;}
.yb_c00496{bottom:473.154400pt;}
.ya_c00496{bottom:491.826400pt;}
.y9_c00496{bottom:510.498400pt;}
.y8_c00496{bottom:529.170400pt;}
.y7_c00496{bottom:547.842400pt;}
.y6_c00496{bottom:590.514400pt;}
.y5_c00496{bottom:609.186400pt;}
.y4_c00496{bottom:627.858400pt;}
.y3_c00496{bottom:669.186400pt;}
.ye_c00496{bottom:841.186400pt;}
.yd_c00496{bottom:867.853067pt;}
.yc_c00496{bottom:894.519733pt;}
.y2_c00496{bottom:972.023733pt;}
.h2_c00496{height:48.000000pt;}
.h5_c00496{height:57.600000pt;}
.h4_c00496{height:59.072000pt;}
.h6_c00496{height:99.733333pt;}
.h3_c00496{height:288.000000pt;}
.h0_c00496{height:1122.520000pt;}
.h1_c00496{height:1122.666667pt;}
.w0_c00496{width:793.701333pt;}
.w1_c00496{width:794.000000pt;}
.x0_c00496{left:0.000000pt;}
.x2_c00496{left:72.258000pt;}
.x3_c00496{left:73.238800pt;}
.x5_c00496{left:99.811067pt;}
.x4_c00496{left:113.238800pt;}
.x1_c00496{left:699.301067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.160000;font-style:normal;font-weight:normal;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_50573d6c48f56a7701979919.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.199000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00497;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00497{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls5_c00497{letter-spacing:-0.540000px;}
.ls4_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:0.720000px;}
.ls1_c00497{letter-spacing:0.840000px;}
.ls3_c00497{letter-spacing:1.500000px;}
.ls2_c00497{letter-spacing:1.650000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00497{word-spacing:-21.060000px;}
.ws2_c00497{word-spacing:-17.640000px;}
.ws3_c00497{word-spacing:-11.700000px;}
.ws0_c00497{word-spacing:-10.200000px;}
.ws12_c00497{word-spacing:-1.800000px;}
.ws11_c00497{word-spacing:-1.500000px;}
.ws5_c00497{word-spacing:-0.840000px;}
.ws10_c00497{word-spacing:-0.720000px;}
.wsf_c00497{word-spacing:-0.288000px;}
.ws4_c00497{word-spacing:0.000000px;}
.ws9_c00497{word-spacing:0.792000px;}
.wsc_c00497{word-spacing:3.888000px;}
.ws7_c00497{word-spacing:4.320000px;}
.wsb_c00497{word-spacing:5.328000px;}
.ws8_c00497{word-spacing:6.552000px;}
.wsd_c00497{word-spacing:7.488000px;}
.ws6_c00497{word-spacing:9.648000px;}
.wse_c00497{word-spacing:15.264000px;}
.wsa_c00497{word-spacing:19.008000px;}
._0_c00497{margin-left:-480.337200px;}
._3_c00497{margin-left:-6.480000px;}
._5_c00497{margin-left:-5.400000px;}
._1_c00497{margin-left:-4.200000px;}
._4_c00497{margin-left:-2.880000px;}
._2_c00497{margin-left:-1.440000px;}
.fc3_c00497{color:rgb(32,32,32);}
.fc2_c00497{color:rgb(233,83,14);}
.fc1_c00497{color:rgb(232,86,17);}
.fc4_c00497{color:rgb(157,157,156);}
.fc0_c00497{color:rgb(60,60,59);}
.fs1_c00497{font-size:42.000000px;}
.fs0_c00497{font-size:60.000000px;}
.fs5_c00497{font-size:66.000000px;}
.fs4_c00497{font-size:72.000000px;}
.fs3_c00497{font-size:84.000000px;}
.fs2_c00497{font-size:108.000000px;}
.y0_c00497{bottom:0.000000px;}
.y1_c00497{bottom:41.250000px;}
.y12_c00497{bottom:256.316700px;}
.y11_c00497{bottom:286.322700px;}
.y10_c00497{bottom:316.328700px;}
.yf_c00497{bottom:346.334700px;}
.ye_c00497{bottom:406.334700px;}
.yd_c00497{bottom:496.316700px;}
.yc_c00497{bottom:526.322700px;}
.yb_c00497{bottom:556.328700px;}
.ya_c00497{bottom:586.334700px;}
.y9_c00497{bottom:646.334700px;}
.y19_c00497{bottom:676.334700px;}
.y18_c00497{bottom:706.334700px;}
.y8_c00497{bottom:736.310700px;}
.y17_c00497{bottom:736.334700px;}
.y7_c00497{bottom:766.316700px;}
.y16_c00497{bottom:766.334700px;}
.y6_c00497{bottom:796.322700px;}
.y15_c00497{bottom:796.334700px;}
.y5_c00497{bottom:826.328700px;}
.y14_c00497{bottom:826.334700px;}
.y4_c00497{bottom:856.334700px;}
.y13_c00497{bottom:856.376100px;}
.y3_c00497{bottom:916.334700px;}
.y2_c00497{bottom:1006.334700px;}
.h6_c00497{height:50.292000px;}
.h2_c00497{height:54.000000px;}
.h5_c00497{height:64.800000px;}
.h4_c00497{height:78.540000px;}
.h3_c00497{height:100.980000px;}
.h0_c00497{height:1262.835000px;}
.h1_c00497{height:1263.000000px;}
.w0_c00497{width:892.914000px;}
.w1_c00497{width:893.250000px;}
.x0_c00497{left:0.000000px;}
.x2_c00497{left:82.500000px;}
.x3_c00497{left:90.000000px;}
.x4_c00497{left:106.500000px;}
.x5_c00497{left:675.611100px;}
.x1_c00497{left:784.688850px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls5_c00497{letter-spacing:-0.480000pt;}
.ls4_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:0.640000pt;}
.ls1_c00497{letter-spacing:0.746667pt;}
.ls3_c00497{letter-spacing:1.333333pt;}
.ls2_c00497{letter-spacing:1.466667pt;}
.ws1_c00497{word-spacing:-18.720000pt;}
.ws2_c00497{word-spacing:-15.680000pt;}
.ws3_c00497{word-spacing:-10.400000pt;}
.ws0_c00497{word-spacing:-9.066667pt;}
.ws12_c00497{word-spacing:-1.600000pt;}
.ws11_c00497{word-spacing:-1.333333pt;}
.ws5_c00497{word-spacing:-0.746667pt;}
.ws10_c00497{word-spacing:-0.640000pt;}
.wsf_c00497{word-spacing:-0.256000pt;}
.ws4_c00497{word-spacing:0.000000pt;}
.ws9_c00497{word-spacing:0.704000pt;}
.wsc_c00497{word-spacing:3.456000pt;}
.ws7_c00497{word-spacing:3.840000pt;}
.wsb_c00497{word-spacing:4.736000pt;}
.ws8_c00497{word-spacing:5.824000pt;}
.wsd_c00497{word-spacing:6.656000pt;}
.ws6_c00497{word-spacing:8.576000pt;}
.wse_c00497{word-spacing:13.568000pt;}
.wsa_c00497{word-spacing:16.896000pt;}
._0_c00497{margin-left:-426.966400pt;}
._3_c00497{margin-left:-5.760000pt;}
._5_c00497{margin-left:-4.800000pt;}
._1_c00497{margin-left:-3.733333pt;}
._4_c00497{margin-left:-2.560000pt;}
._2_c00497{margin-left:-1.280000pt;}
.fs1_c00497{font-size:37.333333pt;}
.fs0_c00497{font-size:53.333333pt;}
.fs5_c00497{font-size:58.666667pt;}
.fs4_c00497{font-size:64.000000pt;}
.fs3_c00497{font-size:74.666667pt;}
.fs2_c00497{font-size:96.000000pt;}
.y0_c00497{bottom:0.000000pt;}
.y1_c00497{bottom:36.666667pt;}
.y12_c00497{bottom:227.837067pt;}
.y11_c00497{bottom:254.509067pt;}
.y10_c00497{bottom:281.181067pt;}
.yf_c00497{bottom:307.853067pt;}
.ye_c00497{bottom:361.186400pt;}
.yd_c00497{bottom:441.170400pt;}
.yc_c00497{bottom:467.842400pt;}
.yb_c00497{bottom:494.514400pt;}
.ya_c00497{bottom:521.186400pt;}
.y9_c00497{bottom:574.519733pt;}
.y19_c00497{bottom:601.186400pt;}
.y18_c00497{bottom:627.853067pt;}
.y8_c00497{bottom:654.498400pt;}
.y17_c00497{bottom:654.519733pt;}
.y7_c00497{bottom:681.170400pt;}
.y16_c00497{bottom:681.186400pt;}
.y6_c00497{bottom:707.842400pt;}
.y15_c00497{bottom:707.853067pt;}
.y5_c00497{bottom:734.514400pt;}
.y14_c00497{bottom:734.519733pt;}
.y4_c00497{bottom:761.186400pt;}
.y13_c00497{bottom:761.223200pt;}
.y3_c00497{bottom:814.519733pt;}
.y2_c00497{bottom:894.519733pt;}
.h6_c00497{height:44.704000pt;}
.h2_c00497{height:48.000000pt;}
.h5_c00497{height:57.600000pt;}
.h4_c00497{height:69.813333pt;}
.h3_c00497{height:89.760000pt;}
.h0_c00497{height:1122.520000pt;}
.h1_c00497{height:1122.666667pt;}
.w0_c00497{width:793.701333pt;}
.w1_c00497{width:794.000000pt;}
.x0_c00497{left:0.000000pt;}
.x2_c00497{left:73.333333pt;}
.x3_c00497{left:80.000000pt;}
.x4_c00497{left:94.666667pt;}
.x5_c00497{left:600.543200pt;}
.x1_c00497{left:697.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b72174ba772da877cf230ead.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.160000;font-style:normal;font-weight:normal;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_4ed555a2560ce947c3d5133a.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.199000;font-style: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);}
.m1_c00498{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls1_c00498{letter-spacing:0.000000px;}
.ls0_c00498{letter-spacing:0.720000px;}
.ls2_c00498{letter-spacing:0.840000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00498{word-spacing:-10.200000px;}
.wsa_c00498{word-spacing:-5.544000px;}
.ws6_c00498{word-spacing:-3.024000px;}
.wse_c00498{word-spacing:-2.520000px;}
.ws8_c00498{word-spacing:-2.232000px;}
.ws9_c00498{word-spacing:-1.296000px;}
.ws10_c00498{word-spacing:-1.080000px;}
.ws5_c00498{word-spacing:-0.864000px;}
.ws2_c00498{word-spacing:-0.840000px;}
.ws1_c00498{word-spacing:0.000000px;}
.wsc_c00498{word-spacing:1.800000px;}
.ws11_c00498{word-spacing:2.592000px;}
.ws4_c00498{word-spacing:3.168000px;}
.wsd_c00498{word-spacing:4.536000px;}
.ws7_c00498{word-spacing:7.200000px;}
.wsf_c00498{word-spacing:9.216000px;}
.wsb_c00498{word-spacing:9.936000px;}
.ws3_c00498{word-spacing:15.624000px;}
._0_c00498{margin-left:-480.336600px;}
._3_c00498{margin-left:-5.760000px;}
._1_c00498{margin-left:-4.200000px;}
._2_c00498{margin-left:-1.425600px;}
.fc2_c00498{color:rgb(32,32,32);}
.fc1_c00498{color:rgb(232,86,17);}
.fc0_c00498{color:rgb(60,60,59);}
.fs1_c00498{font-size:42.000000px;}
.fs0_c00498{font-size:60.000000px;}
.fs3_c00498{font-size:72.000000px;}
.fs2_c00498{font-size:84.000000px;}
.y0_c00498{bottom:0.000000px;}
.y1_c00498{bottom:41.250000px;}
.y15_c00498{bottom:316.280700px;}
.y14_c00498{bottom:346.286700px;}
.y13_c00498{bottom:376.292700px;}
.y12_c00498{bottom:406.298700px;}
.y11_c00498{bottom:436.304700px;}
.y10_c00498{bottom:466.310700px;}
.yf_c00498{bottom:496.316700px;}
.ye_c00498{bottom:526.322700px;}
.yd_c00498{bottom:556.328700px;}
.yc_c00498{bottom:586.334700px;}
.yb_c00498{bottom:646.334700px;}
.ya_c00498{bottom:736.292700px;}
.y9_c00498{bottom:766.298700px;}
.y8_c00498{bottom:796.304700px;}
.y7_c00498{bottom:826.310700px;}
.y6_c00498{bottom:856.316700px;}
.y5_c00498{bottom:886.322700px;}
.y4_c00498{bottom:916.328700px;}
.y3_c00498{bottom:946.334700px;}
.y2_c00498{bottom:1006.334700px;}
.h2_c00498{height:54.000000px;}
.h4_c00498{height:64.800000px;}
.h5_c00498{height:67.320000px;}
.h3_c00498{height:78.540000px;}
.h0_c00498{height:1262.835000px;}
.h1_c00498{height:1263.000000px;}
.w0_c00498{width:892.914000px;}
.w1_c00498{width:893.250000px;}
.x0_c00498{left:0.000000px;}
.x2_c00498{left:90.000000px;}
.x3_c00498{left:106.500000px;}
.x1_c00498{left:784.613700px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls1_c00498{letter-spacing:0.000000pt;}
.ls0_c00498{letter-spacing:0.640000pt;}
.ls2_c00498{letter-spacing:0.746667pt;}
.ws0_c00498{word-spacing:-9.066667pt;}
.wsa_c00498{word-spacing:-4.928000pt;}
.ws6_c00498{word-spacing:-2.688000pt;}
.wse_c00498{word-spacing:-2.240000pt;}
.ws8_c00498{word-spacing:-1.984000pt;}
.ws9_c00498{word-spacing:-1.152000pt;}
.ws10_c00498{word-spacing:-0.960000pt;}
.ws5_c00498{word-spacing:-0.768000pt;}
.ws2_c00498{word-spacing:-0.746667pt;}
.ws1_c00498{word-spacing:0.000000pt;}
.wsc_c00498{word-spacing:1.600000pt;}
.ws11_c00498{word-spacing:2.304000pt;}
.ws4_c00498{word-spacing:2.816000pt;}
.wsd_c00498{word-spacing:4.032000pt;}
.ws7_c00498{word-spacing:6.400000pt;}
.wsf_c00498{word-spacing:8.192000pt;}
.wsb_c00498{word-spacing:8.832000pt;}
.ws3_c00498{word-spacing:13.888000pt;}
._0_c00498{margin-left:-426.965867pt;}
._3_c00498{margin-left:-5.120000pt;}
._1_c00498{margin-left:-3.733333pt;}
._2_c00498{margin-left:-1.267200pt;}
.fs1_c00498{font-size:37.333333pt;}
.fs0_c00498{font-size:53.333333pt;}
.fs3_c00498{font-size:64.000000pt;}
.fs2_c00498{font-size:74.666667pt;}
.y0_c00498{bottom:0.000000pt;}
.y1_c00498{bottom:36.666667pt;}
.y15_c00498{bottom:281.138400pt;}
.y14_c00498{bottom:307.810400pt;}
.y13_c00498{bottom:334.482400pt;}
.y12_c00498{bottom:361.154400pt;}
.y11_c00498{bottom:387.826400pt;}
.y10_c00498{bottom:414.498400pt;}
.yf_c00498{bottom:441.170400pt;}
.ye_c00498{bottom:467.842400pt;}
.yd_c00498{bottom:494.514400pt;}
.yc_c00498{bottom:521.186400pt;}
.yb_c00498{bottom:574.519733pt;}
.ya_c00498{bottom:654.482400pt;}
.y9_c00498{bottom:681.154400pt;}
.y8_c00498{bottom:707.826400pt;}
.y7_c00498{bottom:734.498400pt;}
.y6_c00498{bottom:761.170400pt;}
.y5_c00498{bottom:787.842400pt;}
.y4_c00498{bottom:814.514400pt;}
.y3_c00498{bottom:841.186400pt;}
.y2_c00498{bottom:894.519733pt;}
.h2_c00498{height:48.000000pt;}
.h4_c00498{height:57.600000pt;}
.h5_c00498{height:59.840000pt;}
.h3_c00498{height:69.813333pt;}
.h0_c00498{height:1122.520000pt;}
.h1_c00498{height:1122.666667pt;}
.w0_c00498{width:793.701333pt;}
.w1_c00498{width:794.000000pt;}
.x0_c00498{left:0.000000pt;}
.x2_c00498{left:80.000000pt;}
.x3_c00498{left:94.666667pt;}
.x1_c00498{left:697.434400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2ecdf2cb50c27cac506dec03.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.160000;font-style:normal;font-weight:normal;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_4c538361e46f72b88b2d9986.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.199000;font-style:normal;font-weight:normal;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_fa5fcaddb3275bcb47184b77.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00499;src:url('chunks/assets/font_5dcde9d17c59d625e7c10a04.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;line-height:1.161000;font-style: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);}
.m1_c00499{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.v1_c00499{vertical-align:12.048000px;}
.ls7_c00499{letter-spacing:-0.324000px;}
.ls6_c00499{letter-spacing:0.000000px;}
.ls3_c00499{letter-spacing:0.420000px;}
.ls2_c00499{letter-spacing:0.718800px;}
.ls0_c00499{letter-spacing:0.720000px;}
.ls1_c00499{letter-spacing:0.840000px;}
.ls5_c00499{letter-spacing:1.500000px;}
.ls4_c00499{letter-spacing:1.650000px;}
.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;}
}
.ws1_c00499{word-spacing:-21.276000px;}
.ws2_c00499{word-spacing:-17.640000px;}
.ws3_c00499{word-spacing:-14.850000px;}
.ws0_c00499{word-spacing:-10.200000px;}
.ws10_c00499{word-spacing:-1.800000px;}
.wsf_c00499{word-spacing:-1.500000px;}
.ws5_c00499{word-spacing:-0.840000px;}
.wsb_c00499{word-spacing:-0.420000px;}
.ws4_c00499{word-spacing:0.000000px;}
.ws8_c00499{word-spacing:2.520000px;}
.ws7_c00499{word-spacing:2.808000px;}
.wsa_c00499{word-spacing:5.976000px;}
.ws6_c00499{word-spacing:6.192000px;}
.wsc_c00499{word-spacing:7.848000px;}
.ws9_c00499{word-spacing:9.072000px;}
.wsd_c00499{word-spacing:22.752000px;}
.wse_c00499{word-spacing:26.640000px;}
._0_c00499{margin-left:-480.336600px;}
._7_c00499{margin-left:-9.957600px;}
._5_c00499{margin-left:-6.778800px;}
._6_c00499{margin-left:-5.752800px;}
._1_c00499{margin-left:-4.200000px;}
._3_c00499{margin-left:-2.480400px;}
._2_c00499{margin-left:-1.134000px;}
._4_c00499{width:4.998600px;}
.fc3_c00499{color:rgb(32,32,32);}
.fc2_c00499{color:rgb(233,83,14);}
.fc1_c00499{color:rgb(232,86,17);}
.fc4_c00499{color:rgb(157,157,156);}
.fc0_c00499{color:rgb(60,60,59);}
.fs1_c00499{font-size:42.000000px;}
.fs0_c00499{font-size:60.000000px;}
.fs5_c00499{font-size:66.000000px;}
.fs4_c00499{font-size:72.000000px;}
.fs3_c00499{font-size:84.000000px;}
.fs2_c00499{font-size:108.000000px;}
.y0_c00499{bottom:0.000000px;}
.y1_c00499{bottom:41.250000px;}
.y10_c00499{bottom:316.322700px;}
.yf_c00499{bottom:346.328700px;}
.ye_c00499{bottom:376.334700px;}
.yd_c00499{bottom:436.334700px;}
.yc_c00499{bottom:526.328700px;}
.yb_c00499{bottom:556.322700px;}
.ya_c00499{bottom:586.328700px;}
.y9_c00499{bottom:616.334700px;}
.y8_c00499{bottom:676.334700px;}
.y16_c00499{bottom:706.334700px;}
.y15_c00499{bottom:736.334700px;}
.y7_c00499{bottom:766.316700px;}
.y14_c00499{bottom:766.334700px;}
.y6_c00499{bottom:796.322700px;}
.y13_c00499{bottom:796.334700px;}
.y5_c00499{bottom:826.328700px;}
.y12_c00499{bottom:826.334700px;}
.y4_c00499{bottom:856.334700px;}
.y11_c00499{bottom:856.376100px;}
.y3_c00499{bottom:916.334700px;}
.y2_c00499{bottom:1006.334700px;}
.h7_c00499{height:50.292000px;}
.h2_c00499{height:54.000000px;}
.h5_c00499{height:64.800000px;}
.h6_c00499{height:64.848000px;}
.h4_c00499{height:78.540000px;}
.h3_c00499{height:100.980000px;}
.h0_c00499{height:1262.835000px;}
.h1_c00499{height:1263.000000px;}
.w0_c00499{width:892.914000px;}
.w1_c00499{width:893.250000px;}
.x0_c00499{left:0.000000px;}
.x2_c00499{left:82.500000px;}
.x3_c00499{left:90.000000px;}
.x4_c00499{left:106.500000px;}
.x5_c00499{left:675.611100px;}
.x1_c00499{left:785.693700px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.v1_c00499{vertical-align:10.709333pt;}
.ls7_c00499{letter-spacing:-0.288000pt;}
.ls6_c00499{letter-spacing:0.000000pt;}
.ls3_c00499{letter-spacing:0.373333pt;}
.ls2_c00499{letter-spacing:0.638933pt;}
.ls0_c00499{letter-spacing:0.640000pt;}
.ls1_c00499{letter-spacing:0.746667pt;}
.ls5_c00499{letter-spacing:1.333333pt;}
.ls4_c00499{letter-spacing:1.466667pt;}
.ws1_c00499{word-spacing:-18.912000pt;}
.ws2_c00499{word-spacing:-15.680000pt;}
.ws3_c00499{word-spacing:-13.200000pt;}
.ws0_c00499{word-spacing:-9.066667pt;}
.ws10_c00499{word-spacing:-1.600000pt;}
.wsf_c00499{word-spacing:-1.333333pt;}
.ws5_c00499{word-spacing:-0.746667pt;}
.wsb_c00499{word-spacing:-0.373333pt;}
.ws4_c00499{word-spacing:0.000000pt;}
.ws8_c00499{word-spacing:2.240000pt;}
.ws7_c00499{word-spacing:2.496000pt;}
.wsa_c00499{word-spacing:5.312000pt;}
.ws6_c00499{word-spacing:5.504000pt;}
.wsc_c00499{word-spacing:6.976000pt;}
.ws9_c00499{word-spacing:8.064000pt;}
.wsd_c00499{word-spacing:20.224000pt;}
.wse_c00499{word-spacing:23.680000pt;}
._0_c00499{margin-left:-426.965867pt;}
._7_c00499{margin-left:-8.851200pt;}
._5_c00499{margin-left:-6.025600pt;}
._6_c00499{margin-left:-5.113600pt;}
._1_c00499{margin-left:-3.733333pt;}
._3_c00499{margin-left:-2.204800pt;}
._2_c00499{margin-left:-1.008000pt;}
._4_c00499{width:4.443200pt;}
.fs1_c00499{font-size:37.333333pt;}
.fs0_c00499{font-size:53.333333pt;}
.fs5_c00499{font-size:58.666667pt;}
.fs4_c00499{font-size:64.000000pt;}
.fs3_c00499{font-size:74.666667pt;}
.fs2_c00499{font-size:96.000000pt;}
.y0_c00499{bottom:0.000000pt;}
.y1_c00499{bottom:36.666667pt;}
.y10_c00499{bottom:281.175733pt;}
.yf_c00499{bottom:307.847733pt;}
.ye_c00499{bottom:334.519733pt;}
.yd_c00499{bottom:387.853067pt;}
.yc_c00499{bottom:467.847733pt;}
.yb_c00499{bottom:494.509067pt;}
.ya_c00499{bottom:521.181067pt;}
.y9_c00499{bottom:547.853067pt;}
.y8_c00499{bottom:601.186400pt;}
.y16_c00499{bottom:627.853067pt;}
.y15_c00499{bottom:654.519733pt;}
.y7_c00499{bottom:681.170400pt;}
.y14_c00499{bottom:681.186400pt;}
.y6_c00499{bottom:707.842400pt;}
.y13_c00499{bottom:707.853067pt;}
.y5_c00499{bottom:734.514400pt;}
.y12_c00499{bottom:734.519733pt;}
.y4_c00499{bottom:761.186400pt;}
.y11_c00499{bottom:761.223200pt;}
.y3_c00499{bottom:814.519733pt;}
.y2_c00499{bottom:894.519733pt;}
.h7_c00499{height:44.704000pt;}
.h2_c00499{height:48.000000pt;}
.h5_c00499{height:57.600000pt;}
.h6_c00499{height:57.642667pt;}
.h4_c00499{height:69.813333pt;}
.h3_c00499{height:89.760000pt;}
.h0_c00499{height:1122.520000pt;}
.h1_c00499{height:1122.666667pt;}
.w0_c00499{width:793.701333pt;}
.w1_c00499{width:794.000000pt;}
.x0_c00499{left:0.000000pt;}
.x2_c00499{left:73.333333pt;}
.x3_c00499{left:80.000000pt;}
.x4_c00499{left:94.666667pt;}
.x5_c00499{left:600.543200pt;}
.x1_c00499{left:698.394400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ec320e512c9d2fa15a5657c.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.160000;font-style:normal;font-weight:normal;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_617f301fb3d537db5d8c9589.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.199000;font-style:normal;font-weight:normal;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_9019b0277a19aa27adae9f6d.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.161000;font-style:normal;font-weight:normal;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_35900e6db7d677bd8f73e467.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.185000;font-style:normal;font-weight:normal;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_78c038f74bcda9cbcc59e92a.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.155000;font-style:normal;font-weight:normal;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_0061eaa7e0ed4bced392cceb.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.024000;font-style:normal;font-weight:normal;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_6bf6216e7ed397cd7e394ff2.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:0.862305;font-style:normal;font-weight: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_325bf419fb5bb18fb3a23cbb.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:0.961426;font-style:normal;font-weight: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_3db8d64fb4c1082cd0bede09.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00001;src:url('chunks/assets/font_3385200201934d3496a96863.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.v2_c00001{vertical-align:12.000000px;}
.v1_c00001{vertical-align:24.048000px;}
.ls9_c00001{letter-spacing:-0.648000px;}
.ls7_c00001{letter-spacing:-0.540000px;}
.ls13_c00001{letter-spacing:-0.360000px;}
.ls8_c00001{letter-spacing:-0.324000px;}
.ls1_c00001{letter-spacing:0.000000px;}
.ls12_c00001{letter-spacing:0.377280px;}
.lsb_c00001{letter-spacing:0.390000px;}
.ls10_c00001{letter-spacing:0.419280px;}
.lse_c00001{letter-spacing:0.420000px;}
.lsd_c00001{letter-spacing:0.648000px;}
.ls11_c00001{letter-spacing:0.679800px;}
.lsc_c00001{letter-spacing:0.708600px;}
.ls0_c00001{letter-spacing:0.720000px;}
.lsf_c00001{letter-spacing:0.747600px;}
.lsa_c00001{letter-spacing:0.767400px;}
.ls2_c00001{letter-spacing:0.840000px;}
.ls3_c00001{letter-spacing:0.864000px;}
.ls4_c00001{letter-spacing:1.200000px;}
.ls6_c00001{letter-spacing:1.500000px;}
.ls5_c00001{letter-spacing:1.650000px;}
.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;}
}
.ws94_c00001{word-spacing:-25.200000px;}
.ws2f_c00001{word-spacing:-21.276000px;}
.ws1b_c00001{word-spacing:-21.060000px;}
.ws1c_c00001{word-spacing:-17.640000px;}
.ws31_c00001{word-spacing:-14.850000px;}
.ws13_c00001{word-spacing:-13.104000px;}
.ws30_c00001{word-spacing:-12.960000px;}
.ws1d_c00001{word-spacing:-11.700000px;}
.ws5c_c00001{word-spacing:-11.592000px;}
.ws0_c00001{word-spacing:-10.200000px;}
.ws3e_c00001{word-spacing:-8.880000px;}
.ws95_c00001{word-spacing:-8.712000px;}
.ws16_c00001{word-spacing:-8.064000px;}
.ws61_c00001{word-spacing:-7.200000px;}
.ws5f_c00001{word-spacing:-6.840000px;}
.ws15_c00001{word-spacing:-6.264000px;}
.wsd3_c00001{word-spacing:-5.880000px;}
.wsb6_c00001{word-spacing:-5.616000px;}
.wsab_c00001{word-spacing:-5.544000px;}
.ws1a_c00001{word-spacing:-5.400000px;}
.ws14_c00001{word-spacing:-4.752000px;}
.wsac_c00001{word-spacing:-4.680000px;}
.wsaa_c00001{word-spacing:-4.536000px;}
.wscf_c00001{word-spacing:-4.392000px;}
.ws96_c00001{word-spacing:-4.104000px;}
.wsbe_c00001{word-spacing:-3.960000px;}
.ws60_c00001{word-spacing:-3.816000px;}
.wsa7_c00001{word-spacing:-3.600000px;}
.ws77_c00001{word-spacing:-3.528000px;}
.wsb1_c00001{word-spacing:-3.456000px;}
.ws5d_c00001{word-spacing:-3.312000px;}
.wsc5_c00001{word-spacing:-3.240000px;}
.ws48_c00001{word-spacing:-3.096000px;}
.ws97_c00001{word-spacing:-3.024000px;}
.ws18_c00001{word-spacing:-2.952000px;}
.wse6_c00001{word-spacing:-2.880000px;}
.ws55_c00001{word-spacing:-2.736000px;}
.wsbb_c00001{word-spacing:-2.664000px;}
.wsde_c00001{word-spacing:-2.592000px;}
.ws2c_c00001{word-spacing:-2.520000px;}
.ws4b_c00001{word-spacing:-2.448000px;}
.wsa8_c00001{word-spacing:-2.400000px;}
.wsc3_c00001{word-spacing:-2.304000px;}
.ws5a_c00001{word-spacing:-2.232000px;}
.ws1e_c00001{word-spacing:-2.160000px;}
.ws4d_c00001{word-spacing:-2.088000px;}
.ws6e_c00001{word-spacing:-2.016000px;}
.ws99_c00001{word-spacing:-1.800000px;}
.ws5e_c00001{word-spacing:-1.728000px;}
.ws6f_c00001{word-spacing:-1.584000px;}
.wse5_c00001{word-spacing:-1.512000px;}
.ws27_c00001{word-spacing:-1.500000px;}
.ws19_c00001{word-spacing:-1.440000px;}
.ws3_c00001{word-spacing:-1.368000px;}
.wsd5_c00001{word-spacing:-1.296000px;}
.ws4c_c00001{word-spacing:-1.224000px;}
.ws46_c00001{word-spacing:-1.152000px;}
.ws75_c00001{word-spacing:-1.008000px;}
.ws29_c00001{word-spacing:-0.936000px;}
.ws17_c00001{word-spacing:-0.864000px;}
.ws2_c00001{word-spacing:-0.840000px;}
.ws45_c00001{word-spacing:-0.792000px;}
.wsa_c00001{word-spacing:-0.720000px;}
.ws1f_c00001{word-spacing:-0.648000px;}
.ws23_c00001{word-spacing:-0.576000px;}
.ws3c_c00001{word-spacing:-0.504000px;}
.wsb8_c00001{word-spacing:-0.420000px;}
.ws6c_c00001{word-spacing:-0.390000px;}
.ws3d_c00001{word-spacing:-0.360000px;}
.wsb5_c00001{word-spacing:-0.288000px;}
.ws71_c00001{word-spacing:-0.216000px;}
.ws78_c00001{word-spacing:-0.144000px;}
.ws1_c00001{word-spacing:0.000000px;}
.wsd2_c00001{word-spacing:0.072000px;}
.ws92_c00001{word-spacing:0.144000px;}
.ws91_c00001{word-spacing:0.216000px;}
.ws69_c00001{word-spacing:0.288000px;}
.ws12_c00001{word-spacing:0.360000px;}
.wsb7_c00001{word-spacing:0.432000px;}
.ws59_c00001{word-spacing:0.576000px;}
.ws6b_c00001{word-spacing:0.648000px;}
.ws7f_c00001{word-spacing:0.792000px;}
.ws86_c00001{word-spacing:0.936000px;}
.ws32_c00001{word-spacing:1.008000px;}
.ws66_c00001{word-spacing:1.080000px;}
.wsa4_c00001{word-spacing:1.152000px;}
.ws9a_c00001{word-spacing:1.224000px;}
.ws8a_c00001{word-spacing:1.296000px;}
.ws24_c00001{word-spacing:1.368000px;}
.ws36_c00001{word-spacing:1.440000px;}
.ws74_c00001{word-spacing:1.512000px;}
.wsd4_c00001{word-spacing:1.560000px;}
.ws73_c00001{word-spacing:1.584000px;}
.ws81_c00001{word-spacing:1.656000px;}
.wsae_c00001{word-spacing:1.728000px;}
.ws21_c00001{word-spacing:1.800000px;}
.wsc2_c00001{word-spacing:1.872000px;}
.ws10_c00001{word-spacing:2.088000px;}
.ws51_c00001{word-spacing:2.160000px;}
.ws7d_c00001{word-spacing:2.232000px;}
.ws47_c00001{word-spacing:2.376000px;}
.wsd9_c00001{word-spacing:2.448000px;}
.ws37_c00001{word-spacing:2.520000px;}
.wsce_c00001{word-spacing:2.664000px;}
.wsb0_c00001{word-spacing:2.736000px;}
.ws2a_c00001{word-spacing:2.808000px;}
.ws4a_c00001{word-spacing:2.880000px;}
.wsdd_c00001{word-spacing:2.952000px;}
.ws58_c00001{word-spacing:3.024000px;}
.wsc_c00001{word-spacing:3.168000px;}
.ws38_c00001{word-spacing:3.240000px;}
.ws4e_c00001{word-spacing:3.312000px;}
.ws56_c00001{word-spacing:3.384000px;}
.wsa2_c00001{word-spacing:3.456000px;}
.ws63_c00001{word-spacing:3.528000px;}
.ws6d_c00001{word-spacing:3.600000px;}
.ws54_c00001{word-spacing:3.744000px;}
.ws98_c00001{word-spacing:3.816000px;}
.ws49_c00001{word-spacing:3.888000px;}
.wsd0_c00001{word-spacing:3.960000px;}
.ws53_c00001{word-spacing:4.032000px;}
.ws34_c00001{word-spacing:4.104000px;}
.ws68_c00001{word-spacing:4.176000px;}
.ws8d_c00001{word-spacing:4.248000px;}
.ws33_c00001{word-spacing:4.392000px;}
.ws62_c00001{word-spacing:4.464000px;}
.wsd6_c00001{word-spacing:4.536000px;}
.ws11_c00001{word-spacing:4.608000px;}
.ws6a_c00001{word-spacing:4.752000px;}
.ws2b_c00001{word-spacing:4.824000px;}
.wsc6_c00001{word-spacing:4.896000px;}
.ws7e_c00001{word-spacing:4.968000px;}
.wsca_c00001{word-spacing:5.040000px;}
.ws26_c00001{word-spacing:5.112000px;}
.wsc7_c00001{word-spacing:5.184000px;}
.wsd1_c00001{word-spacing:5.256000px;}
.ws28_c00001{word-spacing:5.328000px;}
.ws67_c00001{word-spacing:5.400000px;}
.ws7b_c00001{word-spacing:5.472000px;}
.wse4_c00001{word-spacing:5.544000px;}
.ws90_c00001{word-spacing:5.616000px;}
.ws7c_c00001{word-spacing:5.688000px;}
.ws52_c00001{word-spacing:5.760000px;}
.wsa1_c00001{word-spacing:5.832000px;}
.ws9_c00001{word-spacing:5.976000px;}
.ws39_c00001{word-spacing:6.048000px;}
.wsc1_c00001{word-spacing:6.120000px;}
.wsbf_c00001{word-spacing:6.192000px;}
.ws70_c00001{word-spacing:6.336000px;}
.wsa0_c00001{word-spacing:6.480000px;}
.wsd8_c00001{word-spacing:6.552000px;}
.ws9f_c00001{word-spacing:6.696000px;}
.ws3a_c00001{word-spacing:6.768000px;}
.ws8f_c00001{word-spacing:6.912000px;}
.wsb4_c00001{word-spacing:6.984000px;}
.ws4_c00001{word-spacing:7.056000px;}
.wsb_c00001{word-spacing:7.128000px;}
.wsc9_c00001{word-spacing:7.272000px;}
.ws8b_c00001{word-spacing:7.416000px;}
.ws57_c00001{word-spacing:7.488000px;}
.wscd_c00001{word-spacing:7.560000px;}
.ws7_c00001{word-spacing:7.632000px;}
.wsb3_c00001{word-spacing:7.776000px;}
.ws3b_c00001{word-spacing:7.848000px;}
.ws9e_c00001{word-spacing:7.920000px;}
.ws4f_c00001{word-spacing:8.064000px;}
.ws35_c00001{word-spacing:8.136000px;}
.wsb9_c00001{word-spacing:8.208000px;}
.ws42_c00001{word-spacing:8.280000px;}
.ws9b_c00001{word-spacing:8.424000px;}
.wsd_c00001{word-spacing:8.496000px;}
.ws85_c00001{word-spacing:8.568000px;}
.ws6_c00001{word-spacing:8.640000px;}
.ws2d_c00001{word-spacing:8.712000px;}
.wsc4_c00001{word-spacing:8.784000px;}
.ws72_c00001{word-spacing:8.856000px;}
.ws25_c00001{word-spacing:9.000000px;}
.wsc8_c00001{word-spacing:9.216000px;}
.wsdf_c00001{word-spacing:9.288000px;}
.ws79_c00001{word-spacing:9.360000px;}
.ws9d_c00001{word-spacing:9.432000px;}
.wsb2_c00001{word-spacing:9.504000px;}
.wse3_c00001{word-spacing:9.576000px;}
.wse_c00001{word-spacing:9.864000px;}
.ws8c_c00001{word-spacing:9.936000px;}
.ws50_c00001{word-spacing:10.008000px;}
.wsa5_c00001{word-spacing:10.080000px;}
.ws44_c00001{word-spacing:10.152000px;}
.ws3f_c00001{word-spacing:10.296000px;}
.wsda_c00001{word-spacing:10.368000px;}
.ws76_c00001{word-spacing:10.440000px;}
.ws41_c00001{word-spacing:10.512000px;}
.ws22_c00001{word-spacing:10.656000px;}
.ws80_c00001{word-spacing:10.872000px;}
.ws65_c00001{word-spacing:11.016000px;}
.wsa3_c00001{word-spacing:11.160000px;}
.wsf_c00001{word-spacing:11.448000px;}
.ws89_c00001{word-spacing:11.520000px;}
.ws43_c00001{word-spacing:11.664000px;}
.wsba_c00001{word-spacing:11.808000px;}
.wsa9_c00001{word-spacing:11.880000px;}
.ws88_c00001{word-spacing:12.168000px;}
.ws87_c00001{word-spacing:12.312000px;}
.ws83_c00001{word-spacing:12.528000px;}
.ws40_c00001{word-spacing:12.672000px;}
.ws2e_c00001{word-spacing:12.744000px;}
.ws5b_c00001{word-spacing:12.960000px;}
.wsdb_c00001{word-spacing:13.176000px;}
.wse1_c00001{word-spacing:13.608000px;}
.ws93_c00001{word-spacing:13.824000px;}
.wsbc_c00001{word-spacing:13.896000px;}
.ws84_c00001{word-spacing:13.968000px;}
.ws20_c00001{word-spacing:14.328000px;}
.wsa6_c00001{word-spacing:14.688000px;}
.ws7a_c00001{word-spacing:14.760000px;}
.ws8e_c00001{word-spacing:15.048000px;}
.wse2_c00001{word-spacing:15.192000px;}
.wscc_c00001{word-spacing:15.408000px;}
.wsc0_c00001{word-spacing:15.552000px;}
.wsbd_c00001{word-spacing:15.912000px;}
.wsaf_c00001{word-spacing:16.344000px;}
.wscb_c00001{word-spacing:17.568000px;}
.ws64_c00001{word-spacing:18.144000px;}
.wse0_c00001{word-spacing:18.360000px;}
.ws82_c00001{word-spacing:18.792000px;}
.ws9c_c00001{word-spacing:19.152000px;}
.ws5_c00001{word-spacing:19.224000px;}
.wsdc_c00001{word-spacing:19.656000px;}
.wsad_c00001{word-spacing:20.520000px;}
.wsd7_c00001{word-spacing:21.384000px;}
.ws8_c00001{word-spacing:28.440000px;}
._0_c00001{margin-left:-480.336600px;}
._e_c00001{margin-left:-17.460000px;}
._d_c00001{margin-left:-15.600000px;}
._b_c00001{margin-left:-11.580000px;}
._c_c00001{margin-left:-9.660000px;}
._a_c00001{margin-left:-8.640000px;}
._5_c00001{margin-left:-7.020000px;}
._6_c00001{margin-left:-5.760000px;}
._1_c00001{margin-left:-4.200000px;}
._2_c00001{margin-left:-2.340000px;}
._3_c00001{margin-left:-1.238400px;}
._8_c00001{width:1.548000px;}
._f_c00001{width:2.570400px;}
._9_c00001{width:3.621600px;}
._4_c00001{width:4.752000px;}
._7_c00001{width:6.264000px;}
._10_c00001{width:8.880000px;}
._12_c00001{width:10.118400px;}
._11_c00001{width:12.758400px;}
.fc6_c00001{color:rgb(204,0,0);}
.fc3_c00001{color:rgb(233,83,14);}
.fc4_c00001{color:rgb(255,255,255);}
.fc2_c00001{color:rgb(32,32,32);}
.fc1_c00001{color:rgb(232,86,17);}
.fc5_c00001{color:rgb(157,157,156);}
.fc0_c00001{color:rgb(60,60,59);}
.fs8_c00001{font-size:39.000000px;}
.fs9_c00001{font-size:41.976000px;}
.fs1_c00001{font-size:42.000000px;}
.fs0_c00001{font-size:60.000000px;}
.fs7_c00001{font-size:66.000000px;}
.fs3_c00001{font-size:72.000000px;}
.fs2_c00001{font-size:84.000000px;}
.fs6_c00001{font-size:108.000000px;}
.fs5_c00001{font-size:120.000000px;}
.fs4_c00001{font-size:360.000000px;}
.y0_c00001{bottom:0.000000px;}
.y1_c00001{bottom:41.250000px;}
.y60_c00001{bottom:76.160700px;}
.ycf_c00001{bottom:76.268700px;}
.y7a_c00001{bottom:94.223850px;}
.y5f_c00001{bottom:106.166700px;}
.yce_c00001{bottom:106.274700px;}
.yc3_c00001{bottom:106.310700px;}
.y79_c00001{bottom:115.229850px;}
.y5e_c00001{bottom:136.172700px;}
.ya6_c00001{bottom:136.226700px;}
.y78_c00001{bottom:136.235850px;}
.ycd_c00001{bottom:136.280700px;}
.y87_c00001{bottom:136.292700px;}
.yc2_c00001{bottom:136.316700px;}
.y5d_c00001{bottom:166.178700px;}
.ya5_c00001{bottom:166.232700px;}
.ycc_c00001{bottom:166.286700px;}
.y86_c00001{bottom:166.298700px;}
.yc1_c00001{bottom:166.322700px;}
.y77_c00001{bottom:184.241850px;}
.y5c_c00001{bottom:196.184700px;}
.ya4_c00001{bottom:196.238700px;}
.ydb_c00001{bottom:196.286700px;}
.ycb_c00001{bottom:196.292700px;}
.y99_c00001{bottom:196.298700px;}
.y85_c00001{bottom:196.304700px;}
.yc0_c00001{bottom:196.328700px;}
.y76_c00001{bottom:205.247850px;}
.yb5_c00001{bottom:214.238700px;}
.y5b_c00001{bottom:226.190700px;}
.y75_c00001{bottom:226.253850px;}
.yda_c00001{bottom:226.292700px;}
.yca_c00001{bottom:226.298700px;}
.y98_c00001{bottom:226.304700px;}
.y84_c00001{bottom:226.310700px;}
.ybf_c00001{bottom:226.334700px;}
.yb4_c00001{bottom:235.244700px;}
.y5a_c00001{bottom:256.196700px;}
.ya3_c00001{bottom:256.232700px;}
.yb3_c00001{bottom:256.250700px;}
.y33_c00001{bottom:256.298700px;}
.yc9_c00001{bottom:256.304700px;}
.y97_c00001{bottom:256.310700px;}
.y83_c00001{bottom:256.316700px;}
.y74_c00001{bottom:274.259850px;}
.y59_c00001{bottom:286.202700px;}
.ya2_c00001{bottom:286.238700px;}
.y46_c00001{bottom:286.298700px;}
.y32_c00001{bottom:286.304700px;}
.yc8_c00001{bottom:286.310700px;}
.y96_c00001{bottom:286.316700px;}
.y82_c00001{bottom:286.322700px;}
.ybe_c00001{bottom:286.334700px;}
.y73_c00001{bottom:295.265850px;}
.yb2_c00001{bottom:304.256700px;}
.y58_c00001{bottom:316.208700px;}
.ya1_c00001{bottom:316.244700px;}
.y72_c00001{bottom:316.271850px;}
.y45_c00001{bottom:316.304700px;}
.y31_c00001{bottom:316.310700px;}
.yc7_c00001{bottom:316.316700px;}
.y95_c00001{bottom:316.322700px;}
.y81_c00001{bottom:316.328700px;}
.yb1_c00001{bottom:325.262700px;}
.y57_c00001{bottom:346.214700px;}
.yb0_c00001{bottom:346.268700px;}
.y14_c00001{bottom:346.286700px;}
.y44_c00001{bottom:346.310700px;}
.y30_c00001{bottom:346.316700px;}
.yc6_c00001{bottom:346.322700px;}
.y94_c00001{bottom:346.328700px;}
.y80_c00001{bottom:346.334700px;}
.y71_c00001{bottom:364.277850px;}
.y56_c00001{bottom:376.220700px;}
.ya0_c00001{bottom:376.238700px;}
.y13_c00001{bottom:376.292700px;}
.ybd_c00001{bottom:376.310700px;}
.y43_c00001{bottom:376.316700px;}
.y2f_c00001{bottom:376.322700px;}
.yc5_c00001{bottom:376.328700px;}
.y93_c00001{bottom:376.334700px;}
.y70_c00001{bottom:385.283850px;}
.y22_c00001{bottom:394.274700px;}
.y55_c00001{bottom:406.226700px;}
.y9f_c00001{bottom:406.244700px;}
.y6f_c00001{bottom:406.289850px;}
.y12_c00001{bottom:406.298700px;}
.ybc_c00001{bottom:406.316700px;}
.y42_c00001{bottom:406.322700px;}
.y2e_c00001{bottom:406.328700px;}
.y7f_c00001{bottom:406.334700px;}
.y21_c00001{bottom:415.280700px;}
.y54_c00001{bottom:436.232700px;}
.y9e_c00001{bottom:436.250700px;}
.y20_c00001{bottom:436.286700px;}
.yd8_c00001{bottom:436.298700px;}
.y11_c00001{bottom:436.304700px;}
.ybb_c00001{bottom:436.322700px;}
.y41_c00001{bottom:436.328700px;}
.y2d_c00001{bottom:436.334700px;}
.y6e_c00001{bottom:454.295850px;}
.y53_c00001{bottom:466.238700px;}
.y9d_c00001{bottom:466.256700px;}
.yd7_c00001{bottom:466.304700px;}
.y10_c00001{bottom:466.310700px;}
.y92_c00001{bottom:466.316700px;}
.yba_c00001{bottom:466.328700px;}
.y40_c00001{bottom:466.334700px;}
.y6d_c00001{bottom:475.301850px;}
.y1f_c00001{bottom:484.292700px;}
.y52_c00001{bottom:496.244700px;}
.y9c_c00001{bottom:496.262700px;}
.y6c_c00001{bottom:496.307850px;}
.yd6_c00001{bottom:496.310700px;}
.yf_c00001{bottom:496.316700px;}
.y91_c00001{bottom:496.322700px;}
.y7e_c00001{bottom:496.328700px;}
.y2c_c00001{bottom:496.334700px;}
.y1e_c00001{bottom:505.298700px;}
.yae_c00001{bottom:510.734700px;}
.y51_c00001{bottom:526.250700px;}
.y9b_c00001{bottom:526.268700px;}
.y1d_c00001{bottom:526.304700px;}
.yd5_c00001{bottom:526.316700px;}
.ye_c00001{bottom:526.322700px;}
.y90_c00001{bottom:526.328700px;}
.y3f_c00001{bottom:526.334700px;}
.yad_c00001{bottom:531.740700px;}
.y6b_c00001{bottom:544.313850px;}
.yac_c00001{bottom:552.746700px;}
.y50_c00001{bottom:556.256700px;}
.y9a_c00001{bottom:556.274700px;}
.yc4_c00001{bottom:556.322700px;}
.yd_c00001{bottom:556.328700px;}
.y8f_c00001{bottom:556.334700px;}
.y6a_c00001{bottom:565.319850px;}
.y1c_c00001{bottom:574.310700px;}
.y4f_c00001{bottom:586.262700px;}
.y3d_c00001{bottom:586.310700px;}
.yd9_c00001{bottom:586.322700px;}
.y69_c00001{bottom:586.325850px;}
.y2b_c00001{bottom:586.328700px;}
.yc_c00001{bottom:586.334700px;}
.yab_c00001{bottom:594.740700px;}
.y1b_c00001{bottom:595.316700px;}
.y4e_c00001{bottom:616.268700px;}
.y3c_c00001{bottom:616.316700px;}
.y1a_c00001{bottom:616.322700px;}
.y3e_c00001{bottom:616.328700px;}
.y2a_c00001{bottom:616.334700px;}
.yaa_c00001{bottom:616.340700px;}
.y4d_c00001{bottom:646.274700px;}
.y4a_c00001{bottom:646.316700px;}
.y3b_c00001{bottom:646.322700px;}
.yb_c00001{bottom:646.334700px;}
.y68_c00001{bottom:647.111850px;}
.ya9_c00001{bottom:663.734700px;}
.y19_c00001{bottom:664.328700px;}
.y4c_c00001{bottom:676.280700px;}
.y7d_c00001{bottom:676.298700px;}
.y49_c00001{bottom:676.322700px;}
.y3a_c00001{bottom:676.328700px;}
.y29_c00001{bottom:676.334700px;}
.y18_c00001{bottom:685.334700px;}
.y4b_c00001{bottom:706.286700px;}
.y8e_c00001{bottom:706.298700px;}
.y7c_c00001{bottom:706.304700px;}
.y48_c00001{bottom:706.328700px;}
.y39_c00001{bottom:706.334700px;}
.y17_c00001{bottom:706.340700px;}
.ya_c00001{bottom:736.292700px;}
.y8d_c00001{bottom:736.304700px;}
.y7b_c00001{bottom:736.310700px;}
.y38_c00001{bottom:736.334700px;}
.y16_c00001{bottom:752.834700px;}
.y9_c00001{bottom:766.298700px;}
.y8c_c00001{bottom:766.310700px;}
.y28_c00001{bottom:766.316700px;}
.yd4_c00001{bottom:766.322700px;}
.y67_c00001{bottom:766.334550px;}
.y37_c00001{bottom:766.334700px;}
.yb9_c00001{bottom:767.731350px;}
.y8_c00001{bottom:796.304700px;}
.y8b_c00001{bottom:796.316700px;}
.y27_c00001{bottom:796.322700px;}
.yd3_c00001{bottom:796.328700px;}
.y66_c00001{bottom:796.334550px;}
.y36_c00001{bottom:796.334700px;}
.yb8_c00001{bottom:797.731350px;}
.yd2_c00001{bottom:800.459700px;}
.y7_c00001{bottom:826.310700px;}
.y8a_c00001{bottom:826.322700px;}
.y26_c00001{bottom:826.328700px;}
.y65_c00001{bottom:826.334550px;}
.y35_c00001{bottom:826.334700px;}
.yb7_c00001{bottom:827.731350px;}
.yd1_c00001{bottom:830.459700px;}
.y6_c00001{bottom:856.316700px;}
.y89_c00001{bottom:856.328700px;}
.y64_c00001{bottom:856.334550px;}
.y25_c00001{bottom:856.334700px;}
.y34_c00001{bottom:856.376100px;}
.y47_c00001{bottom:857.353350px;}
.yb6_c00001{bottom:857.731350px;}
.y88_c00001{bottom:859.550100px;}
.yd0_c00001{bottom:860.459700px;}
.y5_c00001{bottom:886.322700px;}
.y63_c00001{bottom:886.334550px;}
.ya8_c00001{bottom:886.334700px;}
.y4_c00001{bottom:916.328700px;}
.y62_c00001{bottom:916.334550px;}
.y24_c00001{bottom:916.334700px;}
.y3_c00001{bottom:946.334700px;}
.y61_c00001{bottom:946.458600px;}
.ydc_c00001{bottom:946.951650px;}
.ya7_c00001{bottom:948.723450px;}
.yaf_c00001{bottom:950.459700px;}
.y23_c00001{bottom:976.334700px;}
.y2_c00001{bottom:1006.334700px;}
.y15_c00001{bottom:1093.526700px;}
.h9_c00001{height:50.292000px;}
.h2_c00001{height:54.000000px;}
.h4_c00001{height:64.800000px;}
.hb_c00001{height:64.848000px;}
.hd_c00001{height:64.872000px;}
.h6_c00001{height:66.456000px;}
.hc_c00001{height:67.320000px;}
.h3_c00001{height:78.540000px;}
.h8_c00001{height:100.980000px;}
.ha_c00001{height:108.000000px;}
.h7_c00001{height:112.200000px;}
.h5_c00001{height:324.000000px;}
.h0_c00001{height:1262.835000px;}
.h1_c00001{height:1263.000000px;}
.w0_c00001{width:892.914000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x5_c00001{left:81.290250px;}
.x6_c00001{left:82.393650px;}
.x2_c00001{left:90.000000px;}
.x3_c00001{left:106.500000px;}
.x8_c00001{left:112.287450px;}
.x7_c00001{left:127.393650px;}
.x9_c00001{left:675.611100px;}
.xa_c00001{left:785.753700px;}
.x4_c00001{left:786.878700px;}
.xd_c00001{left:788.063550px;}
.x1_c00001{left:789.353700px;}
.xc_c00001{left:790.538700px;}
.xb_c00001{left:793.013850px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.v2_c00001{vertical-align:10.666667pt;}
.v1_c00001{vertical-align:21.376000pt;}
.ls9_c00001{letter-spacing:-0.576000pt;}
.ls7_c00001{letter-spacing:-0.480000pt;}
.ls13_c00001{letter-spacing:-0.320000pt;}
.ls8_c00001{letter-spacing:-0.288000pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.ls12_c00001{letter-spacing:0.335360pt;}
.lsb_c00001{letter-spacing:0.346667pt;}
.ls10_c00001{letter-spacing:0.372693pt;}
.lse_c00001{letter-spacing:0.373333pt;}
.lsd_c00001{letter-spacing:0.576000pt;}
.ls11_c00001{letter-spacing:0.604267pt;}
.lsc_c00001{letter-spacing:0.629867pt;}
.ls0_c00001{letter-spacing:0.640000pt;}
.lsf_c00001{letter-spacing:0.664533pt;}
.lsa_c00001{letter-spacing:0.682133pt;}
.ls2_c00001{letter-spacing:0.746667pt;}
.ls3_c00001{letter-spacing:0.768000pt;}
.ls4_c00001{letter-spacing:1.066667pt;}
.ls6_c00001{letter-spacing:1.333333pt;}
.ls5_c00001{letter-spacing:1.466667pt;}
.ws94_c00001{word-spacing:-22.400000pt;}
.ws2f_c00001{word-spacing:-18.912000pt;}
.ws1b_c00001{word-spacing:-18.720000pt;}
.ws1c_c00001{word-spacing:-15.680000pt;}
.ws31_c00001{word-spacing:-13.200000pt;}
.ws13_c00001{word-spacing:-11.648000pt;}
.ws30_c00001{word-spacing:-11.520000pt;}
.ws1d_c00001{word-spacing:-10.400000pt;}
.ws5c_c00001{word-spacing:-10.304000pt;}
.ws0_c00001{word-spacing:-9.066667pt;}
.ws3e_c00001{word-spacing:-7.893333pt;}
.ws95_c00001{word-spacing:-7.744000pt;}
.ws16_c00001{word-spacing:-7.168000pt;}
.ws61_c00001{word-spacing:-6.400000pt;}
.ws5f_c00001{word-spacing:-6.080000pt;}
.ws15_c00001{word-spacing:-5.568000pt;}
.wsd3_c00001{word-spacing:-5.226667pt;}
.wsb6_c00001{word-spacing:-4.992000pt;}
.wsab_c00001{word-spacing:-4.928000pt;}
.ws1a_c00001{word-spacing:-4.800000pt;}
.ws14_c00001{word-spacing:-4.224000pt;}
.wsac_c00001{word-spacing:-4.160000pt;}
.wsaa_c00001{word-spacing:-4.032000pt;}
.wscf_c00001{word-spacing:-3.904000pt;}
.ws96_c00001{word-spacing:-3.648000pt;}
.wsbe_c00001{word-spacing:-3.520000pt;}
.ws60_c00001{word-spacing:-3.392000pt;}
.wsa7_c00001{word-spacing:-3.200000pt;}
.ws77_c00001{word-spacing:-3.136000pt;}
.wsb1_c00001{word-spacing:-3.072000pt;}
.ws5d_c00001{word-spacing:-2.944000pt;}
.wsc5_c00001{word-spacing:-2.880000pt;}
.ws48_c00001{word-spacing:-2.752000pt;}
.ws97_c00001{word-spacing:-2.688000pt;}
.ws18_c00001{word-spacing:-2.624000pt;}
.wse6_c00001{word-spacing:-2.560000pt;}
.ws55_c00001{word-spacing:-2.432000pt;}
.wsbb_c00001{word-spacing:-2.368000pt;}
.wsde_c00001{word-spacing:-2.304000pt;}
.ws2c_c00001{word-spacing:-2.240000pt;}
.ws4b_c00001{word-spacing:-2.176000pt;}
.wsa8_c00001{word-spacing:-2.133333pt;}
.wsc3_c00001{word-spacing:-2.048000pt;}
.ws5a_c00001{word-spacing:-1.984000pt;}
.ws1e_c00001{word-spacing:-1.920000pt;}
.ws4d_c00001{word-spacing:-1.856000pt;}
.ws6e_c00001{word-spacing:-1.792000pt;}
.ws99_c00001{word-spacing:-1.600000pt;}
.ws5e_c00001{word-spacing:-1.536000pt;}
.ws6f_c00001{word-spacing:-1.408000pt;}
.wse5_c00001{word-spacing:-1.344000pt;}
.ws27_c00001{word-spacing:-1.333333pt;}
.ws19_c00001{word-spacing:-1.280000pt;}
.ws3_c00001{word-spacing:-1.216000pt;}
.wsd5_c00001{word-spacing:-1.152000pt;}
.ws4c_c00001{word-spacing:-1.088000pt;}
.ws46_c00001{word-spacing:-1.024000pt;}
.ws75_c00001{word-spacing:-0.896000pt;}
.ws29_c00001{word-spacing:-0.832000pt;}
.ws17_c00001{word-spacing:-0.768000pt;}
.ws2_c00001{word-spacing:-0.746667pt;}
.ws45_c00001{word-spacing:-0.704000pt;}
.wsa_c00001{word-spacing:-0.640000pt;}
.ws1f_c00001{word-spacing:-0.576000pt;}
.ws23_c00001{word-spacing:-0.512000pt;}
.ws3c_c00001{word-spacing:-0.448000pt;}
.wsb8_c00001{word-spacing:-0.373333pt;}
.ws6c_c00001{word-spacing:-0.346667pt;}
.ws3d_c00001{word-spacing:-0.320000pt;}
.wsb5_c00001{word-spacing:-0.256000pt;}
.ws71_c00001{word-spacing:-0.192000pt;}
.ws78_c00001{word-spacing:-0.128000pt;}
.ws1_c00001{word-spacing:0.000000pt;}
.wsd2_c00001{word-spacing:0.064000pt;}
.ws92_c00001{word-spacing:0.128000pt;}
.ws91_c00001{word-spacing:0.192000pt;}
.ws69_c00001{word-spacing:0.256000pt;}
.ws12_c00001{word-spacing:0.320000pt;}
.wsb7_c00001{word-spacing:0.384000pt;}
.ws59_c00001{word-spacing:0.512000pt;}
.ws6b_c00001{word-spacing:0.576000pt;}
.ws7f_c00001{word-spacing:0.704000pt;}
.ws86_c00001{word-spacing:0.832000pt;}
.ws32_c00001{word-spacing:0.896000pt;}
.ws66_c00001{word-spacing:0.960000pt;}
.wsa4_c00001{word-spacing:1.024000pt;}
.ws9a_c00001{word-spacing:1.088000pt;}
.ws8a_c00001{word-spacing:1.152000pt;}
.ws24_c00001{word-spacing:1.216000pt;}
.ws36_c00001{word-spacing:1.280000pt;}
.ws74_c00001{word-spacing:1.344000pt;}
.wsd4_c00001{word-spacing:1.386667pt;}
.ws73_c00001{word-spacing:1.408000pt;}
.ws81_c00001{word-spacing:1.472000pt;}
.wsae_c00001{word-spacing:1.536000pt;}
.ws21_c00001{word-spacing:1.600000pt;}
.wsc2_c00001{word-spacing:1.664000pt;}
.ws10_c00001{word-spacing:1.856000pt;}
.ws51_c00001{word-spacing:1.920000pt;}
.ws7d_c00001{word-spacing:1.984000pt;}
.ws47_c00001{word-spacing:2.112000pt;}
.wsd9_c00001{word-spacing:2.176000pt;}
.ws37_c00001{word-spacing:2.240000pt;}
.wsce_c00001{word-spacing:2.368000pt;}
.wsb0_c00001{word-spacing:2.432000pt;}
.ws2a_c00001{word-spacing:2.496000pt;}
.ws4a_c00001{word-spacing:2.560000pt;}
.wsdd_c00001{word-spacing:2.624000pt;}
.ws58_c00001{word-spacing:2.688000pt;}
.wsc_c00001{word-spacing:2.816000pt;}
.ws38_c00001{word-spacing:2.880000pt;}
.ws4e_c00001{word-spacing:2.944000pt;}
.ws56_c00001{word-spacing:3.008000pt;}
.wsa2_c00001{word-spacing:3.072000pt;}
.ws63_c00001{word-spacing:3.136000pt;}
.ws6d_c00001{word-spacing:3.200000pt;}
.ws54_c00001{word-spacing:3.328000pt;}
.ws98_c00001{word-spacing:3.392000pt;}
.ws49_c00001{word-spacing:3.456000pt;}
.wsd0_c00001{word-spacing:3.520000pt;}
.ws53_c00001{word-spacing:3.584000pt;}
.ws34_c00001{word-spacing:3.648000pt;}
.ws68_c00001{word-spacing:3.712000pt;}
.ws8d_c00001{word-spacing:3.776000pt;}
.ws33_c00001{word-spacing:3.904000pt;}
.ws62_c00001{word-spacing:3.968000pt;}
.wsd6_c00001{word-spacing:4.032000pt;}
.ws11_c00001{word-spacing:4.096000pt;}
.ws6a_c00001{word-spacing:4.224000pt;}
.ws2b_c00001{word-spacing:4.288000pt;}
.wsc6_c00001{word-spacing:4.352000pt;}
.ws7e_c00001{word-spacing:4.416000pt;}
.wsca_c00001{word-spacing:4.480000pt;}
.ws26_c00001{word-spacing:4.544000pt;}
.wsc7_c00001{word-spacing:4.608000pt;}
.wsd1_c00001{word-spacing:4.672000pt;}
.ws28_c00001{word-spacing:4.736000pt;}
.ws67_c00001{word-spacing:4.800000pt;}
.ws7b_c00001{word-spacing:4.864000pt;}
.wse4_c00001{word-spacing:4.928000pt;}
.ws90_c00001{word-spacing:4.992000pt;}
.ws7c_c00001{word-spacing:5.056000pt;}
.ws52_c00001{word-spacing:5.120000pt;}
.wsa1_c00001{word-spacing:5.184000pt;}
.ws9_c00001{word-spacing:5.312000pt;}
.ws39_c00001{word-spacing:5.376000pt;}
.wsc1_c00001{word-spacing:5.440000pt;}
.wsbf_c00001{word-spacing:5.504000pt;}
.ws70_c00001{word-spacing:5.632000pt;}
.wsa0_c00001{word-spacing:5.760000pt;}
.wsd8_c00001{word-spacing:5.824000pt;}
.ws9f_c00001{word-spacing:5.952000pt;}
.ws3a_c00001{word-spacing:6.016000pt;}
.ws8f_c00001{word-spacing:6.144000pt;}
.wsb4_c00001{word-spacing:6.208000pt;}
.ws4_c00001{word-spacing:6.272000pt;}
.wsb_c00001{word-spacing:6.336000pt;}
.wsc9_c00001{word-spacing:6.464000pt;}
.ws8b_c00001{word-spacing:6.592000pt;}
.ws57_c00001{word-spacing:6.656000pt;}
.wscd_c00001{word-spacing:6.720000pt;}
.ws7_c00001{word-spacing:6.784000pt;}
.wsb3_c00001{word-spacing:6.912000pt;}
.ws3b_c00001{word-spacing:6.976000pt;}
.ws9e_c00001{word-spacing:7.040000pt;}
.ws4f_c00001{word-spacing:7.168000pt;}
.ws35_c00001{word-spacing:7.232000pt;}
.wsb9_c00001{word-spacing:7.296000pt;}
.ws42_c00001{word-spacing:7.360000pt;}
.ws9b_c00001{word-spacing:7.488000pt;}
.wsd_c00001{word-spacing:7.552000pt;}
.ws85_c00001{word-spacing:7.616000pt;}
.ws6_c00001{word-spacing:7.680000pt;}
.ws2d_c00001{word-spacing:7.744000pt;}
.wsc4_c00001{word-spacing:7.808000pt;}
.ws72_c00001{word-spacing:7.872000pt;}
.ws25_c00001{word-spacing:8.000000pt;}
.wsc8_c00001{word-spacing:8.192000pt;}
.wsdf_c00001{word-spacing:8.256000pt;}
.ws79_c00001{word-spacing:8.320000pt;}
.ws9d_c00001{word-spacing:8.384000pt;}
.wsb2_c00001{word-spacing:8.448000pt;}
.wse3_c00001{word-spacing:8.512000pt;}
.wse_c00001{word-spacing:8.768000pt;}
.ws8c_c00001{word-spacing:8.832000pt;}
.ws50_c00001{word-spacing:8.896000pt;}
.wsa5_c00001{word-spacing:8.960000pt;}
.ws44_c00001{word-spacing:9.024000pt;}
.ws3f_c00001{word-spacing:9.152000pt;}
.wsda_c00001{word-spacing:9.216000pt;}
.ws76_c00001{word-spacing:9.280000pt;}
.ws41_c00001{word-spacing:9.344000pt;}
.ws22_c00001{word-spacing:9.472000pt;}
.ws80_c00001{word-spacing:9.664000pt;}
.ws65_c00001{word-spacing:9.792000pt;}
.wsa3_c00001{word-spacing:9.920000pt;}
.wsf_c00001{word-spacing:10.176000pt;}
.ws89_c00001{word-spacing:10.240000pt;}
.ws43_c00001{word-spacing:10.368000pt;}
.wsba_c00001{word-spacing:10.496000pt;}
.wsa9_c00001{word-spacing:10.560000pt;}
.ws88_c00001{word-spacing:10.816000pt;}
.ws87_c00001{word-spacing:10.944000pt;}
.ws83_c00001{word-spacing:11.136000pt;}
.ws40_c00001{word-spacing:11.264000pt;}
.ws2e_c00001{word-spacing:11.328000pt;}
.ws5b_c00001{word-spacing:11.520000pt;}
.wsdb_c00001{word-spacing:11.712000pt;}
.wse1_c00001{word-spacing:12.096000pt;}
.ws93_c00001{word-spacing:12.288000pt;}
.wsbc_c00001{word-spacing:12.352000pt;}
.ws84_c00001{word-spacing:12.416000pt;}
.ws20_c00001{word-spacing:12.736000pt;}
.wsa6_c00001{word-spacing:13.056000pt;}
.ws7a_c00001{word-spacing:13.120000pt;}
.ws8e_c00001{word-spacing:13.376000pt;}
.wse2_c00001{word-spacing:13.504000pt;}
.wscc_c00001{word-spacing:13.696000pt;}
.wsc0_c00001{word-spacing:13.824000pt;}
.wsbd_c00001{word-spacing:14.144000pt;}
.wsaf_c00001{word-spacing:14.528000pt;}
.wscb_c00001{word-spacing:15.616000pt;}
.ws64_c00001{word-spacing:16.128000pt;}
.wse0_c00001{word-spacing:16.320000pt;}
.ws82_c00001{word-spacing:16.704000pt;}
.ws9c_c00001{word-spacing:17.024000pt;}
.ws5_c00001{word-spacing:17.088000pt;}
.wsdc_c00001{word-spacing:17.472000pt;}
.wsad_c00001{word-spacing:18.240000pt;}
.wsd7_c00001{word-spacing:19.008000pt;}
.ws8_c00001{word-spacing:25.280000pt;}
._0_c00001{margin-left:-426.965867pt;}
._e_c00001{margin-left:-15.520000pt;}
._d_c00001{margin-left:-13.866667pt;}
._b_c00001{margin-left:-10.293333pt;}
._c_c00001{margin-left:-8.586667pt;}
._a_c00001{margin-left:-7.680000pt;}
._5_c00001{margin-left:-6.240000pt;}
._6_c00001{margin-left:-5.120000pt;}
._1_c00001{margin-left:-3.733333pt;}
._2_c00001{margin-left:-2.080000pt;}
._3_c00001{margin-left:-1.100800pt;}
._8_c00001{width:1.376000pt;}
._f_c00001{width:2.284800pt;}
._9_c00001{width:3.219200pt;}
._4_c00001{width:4.224000pt;}
._7_c00001{width:5.568000pt;}
._10_c00001{width:7.893333pt;}
._12_c00001{width:8.994133pt;}
._11_c00001{width:11.340800pt;}
.fs8_c00001{font-size:34.666667pt;}
.fs9_c00001{font-size:37.312000pt;}
.fs1_c00001{font-size:37.333333pt;}
.fs0_c00001{font-size:53.333333pt;}
.fs7_c00001{font-size:58.666667pt;}
.fs3_c00001{font-size:64.000000pt;}
.fs2_c00001{font-size:74.666667pt;}
.fs6_c00001{font-size:96.000000pt;}
.fs5_c00001{font-size:106.666667pt;}
.fs4_c00001{font-size:320.000000pt;}
.y0_c00001{bottom:0.000000pt;}
.y1_c00001{bottom:36.666667pt;}
.y60_c00001{bottom:67.698400pt;}
.ycf_c00001{bottom:67.794400pt;}
.y7a_c00001{bottom:83.754533pt;}
.y5f_c00001{bottom:94.370400pt;}
.yce_c00001{bottom:94.466400pt;}
.yc3_c00001{bottom:94.498400pt;}
.y79_c00001{bottom:102.426533pt;}
.y5e_c00001{bottom:121.042400pt;}
.ya6_c00001{bottom:121.090400pt;}
.y78_c00001{bottom:121.098533pt;}
.ycd_c00001{bottom:121.138400pt;}
.y87_c00001{bottom:121.149067pt;}
.yc2_c00001{bottom:121.170400pt;}
.y5d_c00001{bottom:147.714400pt;}
.ya5_c00001{bottom:147.762400pt;}
.ycc_c00001{bottom:147.810400pt;}
.y86_c00001{bottom:147.821067pt;}
.yc1_c00001{bottom:147.842400pt;}
.y77_c00001{bottom:163.770533pt;}
.y5c_c00001{bottom:174.386400pt;}
.ya4_c00001{bottom:174.434400pt;}
.ydb_c00001{bottom:174.477067pt;}
.ycb_c00001{bottom:174.482400pt;}
.y99_c00001{bottom:174.487733pt;}
.y85_c00001{bottom:174.493067pt;}
.yc0_c00001{bottom:174.514400pt;}
.y76_c00001{bottom:182.442533pt;}
.yb5_c00001{bottom:190.434400pt;}
.y5b_c00001{bottom:201.058400pt;}
.y75_c00001{bottom:201.114533pt;}
.yda_c00001{bottom:201.149067pt;}
.yca_c00001{bottom:201.154400pt;}
.y98_c00001{bottom:201.159733pt;}
.y84_c00001{bottom:201.165067pt;}
.ybf_c00001{bottom:201.186400pt;}
.yb4_c00001{bottom:209.106400pt;}
.y5a_c00001{bottom:227.730400pt;}
.ya3_c00001{bottom:227.762400pt;}
.yb3_c00001{bottom:227.778400pt;}
.y33_c00001{bottom:227.821067pt;}
.yc9_c00001{bottom:227.826400pt;}
.y97_c00001{bottom:227.831733pt;}
.y83_c00001{bottom:227.837067pt;}
.y74_c00001{bottom:243.786533pt;}
.y59_c00001{bottom:254.402400pt;}
.ya2_c00001{bottom:254.434400pt;}
.y46_c00001{bottom:254.487733pt;}
.y32_c00001{bottom:254.493067pt;}
.yc8_c00001{bottom:254.498400pt;}
.y96_c00001{bottom:254.503733pt;}
.y82_c00001{bottom:254.509067pt;}
.ybe_c00001{bottom:254.519733pt;}
.y73_c00001{bottom:262.458533pt;}
.yb2_c00001{bottom:270.450400pt;}
.y58_c00001{bottom:281.074400pt;}
.ya1_c00001{bottom:281.106400pt;}
.y72_c00001{bottom:281.130533pt;}
.y45_c00001{bottom:281.159733pt;}
.y31_c00001{bottom:281.165067pt;}
.yc7_c00001{bottom:281.170400pt;}
.y95_c00001{bottom:281.175733pt;}
.y81_c00001{bottom:281.181067pt;}
.yb1_c00001{bottom:289.122400pt;}
.y57_c00001{bottom:307.746400pt;}
.yb0_c00001{bottom:307.794400pt;}
.y14_c00001{bottom:307.810400pt;}
.y44_c00001{bottom:307.831733pt;}
.y30_c00001{bottom:307.837067pt;}
.yc6_c00001{bottom:307.842400pt;}
.y94_c00001{bottom:307.847733pt;}
.y80_c00001{bottom:307.853067pt;}
.y71_c00001{bottom:323.802533pt;}
.y56_c00001{bottom:334.418400pt;}
.ya0_c00001{bottom:334.434400pt;}
.y13_c00001{bottom:334.482400pt;}
.ybd_c00001{bottom:334.498400pt;}
.y43_c00001{bottom:334.503733pt;}
.y2f_c00001{bottom:334.509067pt;}
.yc5_c00001{bottom:334.514400pt;}
.y93_c00001{bottom:334.519733pt;}
.y70_c00001{bottom:342.474533pt;}
.y22_c00001{bottom:350.466400pt;}
.y55_c00001{bottom:361.090400pt;}
.y9f_c00001{bottom:361.106400pt;}
.y6f_c00001{bottom:361.146533pt;}
.y12_c00001{bottom:361.154400pt;}
.ybc_c00001{bottom:361.170400pt;}
.y42_c00001{bottom:361.175733pt;}
.y2e_c00001{bottom:361.181067pt;}
.y7f_c00001{bottom:361.186400pt;}
.y21_c00001{bottom:369.138400pt;}
.y54_c00001{bottom:387.762400pt;}
.y9e_c00001{bottom:387.778400pt;}
.y20_c00001{bottom:387.810400pt;}
.yd8_c00001{bottom:387.821067pt;}
.y11_c00001{bottom:387.826400pt;}
.ybb_c00001{bottom:387.842400pt;}
.y41_c00001{bottom:387.847733pt;}
.y2d_c00001{bottom:387.853067pt;}
.y6e_c00001{bottom:403.818533pt;}
.y53_c00001{bottom:414.434400pt;}
.y9d_c00001{bottom:414.450400pt;}
.yd7_c00001{bottom:414.493067pt;}
.y10_c00001{bottom:414.498400pt;}
.y92_c00001{bottom:414.503733pt;}
.yba_c00001{bottom:414.514400pt;}
.y40_c00001{bottom:414.519733pt;}
.y6d_c00001{bottom:422.490533pt;}
.y1f_c00001{bottom:430.482400pt;}
.y52_c00001{bottom:441.106400pt;}
.y9c_c00001{bottom:441.122400pt;}
.y6c_c00001{bottom:441.162533pt;}
.yd6_c00001{bottom:441.165067pt;}
.yf_c00001{bottom:441.170400pt;}
.y91_c00001{bottom:441.175733pt;}
.y7e_c00001{bottom:441.181067pt;}
.y2c_c00001{bottom:441.186400pt;}
.y1e_c00001{bottom:449.154400pt;}
.yae_c00001{bottom:453.986400pt;}
.y51_c00001{bottom:467.778400pt;}
.y9b_c00001{bottom:467.794400pt;}
.y1d_c00001{bottom:467.826400pt;}
.yd5_c00001{bottom:467.837067pt;}
.ye_c00001{bottom:467.842400pt;}
.y90_c00001{bottom:467.847733pt;}
.y3f_c00001{bottom:467.853067pt;}
.yad_c00001{bottom:472.658400pt;}
.y6b_c00001{bottom:483.834533pt;}
.yac_c00001{bottom:491.330400pt;}
.y50_c00001{bottom:494.450400pt;}
.y9a_c00001{bottom:494.466400pt;}
.yc4_c00001{bottom:494.509067pt;}
.yd_c00001{bottom:494.514400pt;}
.y8f_c00001{bottom:494.519733pt;}
.y6a_c00001{bottom:502.506533pt;}
.y1c_c00001{bottom:510.498400pt;}
.y4f_c00001{bottom:521.122400pt;}
.y3d_c00001{bottom:521.165067pt;}
.yd9_c00001{bottom:521.175733pt;}
.y69_c00001{bottom:521.178533pt;}
.y2b_c00001{bottom:521.181067pt;}
.yc_c00001{bottom:521.186400pt;}
.yab_c00001{bottom:528.658400pt;}
.y1b_c00001{bottom:529.170400pt;}
.y4e_c00001{bottom:547.794400pt;}
.y3c_c00001{bottom:547.837067pt;}
.y1a_c00001{bottom:547.842400pt;}
.y3e_c00001{bottom:547.847733pt;}
.y2a_c00001{bottom:547.853067pt;}
.yaa_c00001{bottom:547.858400pt;}
.y4d_c00001{bottom:574.466400pt;}
.y4a_c00001{bottom:574.503733pt;}
.y3b_c00001{bottom:574.509067pt;}
.yb_c00001{bottom:574.519733pt;}
.y68_c00001{bottom:575.210533pt;}
.ya9_c00001{bottom:589.986400pt;}
.y19_c00001{bottom:590.514400pt;}
.y4c_c00001{bottom:601.138400pt;}
.y7d_c00001{bottom:601.154400pt;}
.y49_c00001{bottom:601.175733pt;}
.y3a_c00001{bottom:601.181067pt;}
.y29_c00001{bottom:601.186400pt;}
.y18_c00001{bottom:609.186400pt;}
.y4b_c00001{bottom:627.810400pt;}
.y8e_c00001{bottom:627.821067pt;}
.y7c_c00001{bottom:627.826400pt;}
.y48_c00001{bottom:627.847733pt;}
.y39_c00001{bottom:627.853067pt;}
.y17_c00001{bottom:627.858400pt;}
.ya_c00001{bottom:654.482400pt;}
.y8d_c00001{bottom:654.493067pt;}
.y7b_c00001{bottom:654.498400pt;}
.y38_c00001{bottom:654.519733pt;}
.y16_c00001{bottom:669.186400pt;}
.y9_c00001{bottom:681.154400pt;}
.y8c_c00001{bottom:681.165067pt;}
.y28_c00001{bottom:681.170400pt;}
.yd4_c00001{bottom:681.175733pt;}
.y67_c00001{bottom:681.186267pt;}
.y37_c00001{bottom:681.186400pt;}
.yb9_c00001{bottom:682.427867pt;}
.y8_c00001{bottom:707.826400pt;}
.y8b_c00001{bottom:707.837067pt;}
.y27_c00001{bottom:707.842400pt;}
.yd3_c00001{bottom:707.847733pt;}
.y66_c00001{bottom:707.852933pt;}
.y36_c00001{bottom:707.853067pt;}
.yb8_c00001{bottom:709.094533pt;}
.yd2_c00001{bottom:711.519733pt;}
.y7_c00001{bottom:734.498400pt;}
.y8a_c00001{bottom:734.509067pt;}
.y26_c00001{bottom:734.514400pt;}
.y65_c00001{bottom:734.519600pt;}
.y35_c00001{bottom:734.519733pt;}
.yb7_c00001{bottom:735.761200pt;}
.yd1_c00001{bottom:738.186400pt;}
.y6_c00001{bottom:761.170400pt;}
.y89_c00001{bottom:761.181067pt;}
.y64_c00001{bottom:761.186267pt;}
.y25_c00001{bottom:761.186400pt;}
.y34_c00001{bottom:761.223200pt;}
.y47_c00001{bottom:762.091867pt;}
.yb6_c00001{bottom:762.427867pt;}
.y88_c00001{bottom:764.044533pt;}
.yd0_c00001{bottom:764.853067pt;}
.y5_c00001{bottom:787.842400pt;}
.y63_c00001{bottom:787.852933pt;}
.ya8_c00001{bottom:787.853067pt;}
.y4_c00001{bottom:814.514400pt;}
.y62_c00001{bottom:814.519600pt;}
.y24_c00001{bottom:814.519733pt;}
.y3_c00001{bottom:841.186400pt;}
.y61_c00001{bottom:841.296533pt;}
.ydc_c00001{bottom:841.734800pt;}
.ya7_c00001{bottom:843.309733pt;}
.yaf_c00001{bottom:844.853067pt;}
.y23_c00001{bottom:867.853067pt;}
.y2_c00001{bottom:894.519733pt;}
.y15_c00001{bottom:972.023733pt;}
.h9_c00001{height:44.704000pt;}
.h2_c00001{height:48.000000pt;}
.h4_c00001{height:57.600000pt;}
.hb_c00001{height:57.642667pt;}
.hd_c00001{height:57.664000pt;}
.h6_c00001{height:59.072000pt;}
.hc_c00001{height:59.840000pt;}
.h3_c00001{height:69.813333pt;}
.h8_c00001{height:89.760000pt;}
.ha_c00001{height:96.000000pt;}
.h7_c00001{height:99.733333pt;}
.h5_c00001{height:288.000000pt;}
.h0_c00001{height:1122.520000pt;}
.h1_c00001{height:1122.666667pt;}
.w0_c00001{width:793.701333pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x5_c00001{left:72.258000pt;}
.x6_c00001{left:73.238800pt;}
.x2_c00001{left:80.000000pt;}
.x3_c00001{left:94.666667pt;}
.x8_c00001{left:99.811067pt;}
.x7_c00001{left:113.238800pt;}
.x9_c00001{left:600.543200pt;}
.xa_c00001{left:698.447733pt;}
.x4_c00001{left:699.447733pt;}
.xd_c00001{left:700.500933pt;}
.x1_c00001{left:701.647733pt;}
.xc_c00001{left:702.701067pt;}
.xb_c00001{left:704.901200pt;}
}




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